#!/usr/bin/env swipl % :- module(t123,[]). % Load with ?- consult(pack(logicmoo_base/t/examples/fol/'sanity_at_least_most_exactly_02.pfc')). :- include(test_header). %:- module(t123). %:- '$set_source_module'(t123). :- set_prolog_flag(logicmoo_modality,full). :- process_this_script. :- statistics. subtest([subtest_assert(tHuman(joe)), mpred_test(isa(_,tHeart))]). subtest([subtest_assert(tHuman(joe)), mpred_test(hasOrgan(joe,_))]). subtest([subtest_assert(tHeart(_)), mpred_test(~hasOrgan(jack,_))]). :- ain(tHuman(iBob)). testable_quants(X,Fml,Q,Name):-member(QF,[exactly,atmost,atleast]),member(QN,[0,1,2,3,5,10]),Q=..[QF,QN,X,Fml],atom_concat(QF,QN,Name). testable_quants(X,Fml,Q,Name):-member(QF,[all,exists]),Q=..[QF,X,Fml],atom_concat(QF,'1',Name). testable_quants(X,Fml,~Q,Name):-member(QF,[all,exists]),Q=..[QF,X,Fml],atom_concat(QF,'0',Name). :- add_test(most3, (all([[Human,tHuman]],atmost(3,[[M3Meal,tMeal]],hasMeal(Human,M3Meal))))). :- add_test(least3, (all([[Human,tHuman]],atleast(3,[[L3Dream,tDream]],hasDream(Human,L3Dream))))). :- add_test(exactly3, (all([[Human,tHuman]],exactly(3,[[E3ye,tEye]],hasEye(Human,E3ye))))). :- add_test(most1, (all([[Human,tHuman]],atmost(1,[[M1Spouse,tSpouse]],hasSpouse(Human,M1Spouse))))). :- add_test(least1, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea))))). :- add_test(exactly1, (all([[Human,tHuman]],exactly(1,[[Heart,tHeart]],hasHeart(Human,Heart))))). :- add_test(exists1, (all([[Human,tHuman]],exists([[SomeClue,tClue]],hasClue(Human,SomeClue))))). /* % single lit :- add_test(most2, (all([[Human,tHuman]],atmost(2,[[M2Kidney,tKidney]],hasKidney(Human,M2Kidney))))). :- add_test(least2, (all([[Human,tHuman]],atleast(2,[[L2Dream,tDream]],hasDream(Human,L2Dream))))). :- add_test(exactly2, (all([[Human,tHuman]],exactly(2,[[E2ye,tEye]],hasEye(Human,E2ye))))). :- add_test(exists2, (all([[Human,tHuman]],exists([[Lung1,tLung],[Lung2,tLung]],hasLung(Human,Lung1)&hasLung(Human,Lung2)&leftOf(Lung1,Lung2))))). :- add_test(most0, (all([[Human,tHuman]],atmost(0,[[M0Wing,tWing]],hasWing(Human,M0Wing))))). :- add_test(least0, (all([[Human,tHuman]],atleast(0,[[L0Dollar,tDollar]],hasDollar(Human,L0Dollar))))). :- add_test(exactly0, (all([[Human,tHuman]],exactly(0,[[E0Coin,tCoin]],hasCoin(Human,E0Coin))))). :- add_test(exists0, (all([[Human,tHuman]],~exists([[CommonSense,tCommonSense]],hasCommonSense(Human,CommonSense))))). :- add_test(most3, (all([[Human,tHuman]],atmost(3,[[M3Meal,tMeal]],hasMeal(Human,M3Meal))))). :- add_test(least3, (all([[Human,tHuman]],atleast(3,[[L3Dream,tDream]],hasDream(Human,L3Dream))))). :- add_test(exactly3, (all([[Human,tHuman]],exactly(3,[[E3ye,tEye]],hasEye(Human,E3ye))))). % or :- add_test(most1b, (all([[Human,tHuman]],atmost(1,[[M1Spouse,tSpouse]],hasSpouse(Human,M1Spouse) v controls(Human,M1Spouse))))). :- add_test(least1b, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea) v controls(Human,LeastIdea))))). :- add_test(exactly1b, (all([[Human,tHuman]],exactly(1,[[Heart,tHeart]],hasHeart(Human,Heart) v controls(Human,Heart))))). :- add_test(exists1b, (all([[Human,tHuman]],exists([[SomeClue,tClue]],hasClue(Human,SomeClue) v controls(Human,SomeClue))))). :- add_test(most2b, (all([[Human,tHuman]],atmost(2,[[M2Kidney,tKidney]],hasKidney(Human,M2Kidney) v controls(Human,M2Kidney))))). :- add_test(least2b, (all([[Human,tHuman]],atleast(2,[[L2Dream,tDream]],hasDream(Human,L2Dream) v controls(Human,L2Dream))))). :- add_test(exactly2b, (all([[Human,tHuman]],exactly(2,[[E2ye,tEye]],hasEye(Human,E2ye) v controls(Human,E2ye))))). :- add_test(exists2b, (all([[Human,tHuman]],exists([[Lung1,tLung],[Lung2,tLung]],hasLung(Human,Lung1) v hasLung(Human,Lung2) v leftOf(Lung1,Lung2) v controls(Human,Lung1) v controls(Human,Lung2))))). :- add_test(most0b, (all([[Human,tHuman]],atmost(0,[[M0Wing,tWing]],hasWing(Human,M0Wing) v controls(Human,M0Wing))))). :- add_test(least0b, (all([[Human,tHuman]],atleast(0,[[L0Dollar,tDollar]],hasDollar(Human,L0Dollar) v controls(Human,L0Dollar))))). :- add_test(exactly0b, (all([[Human,tHuman]],exactly(0,[[E0Coin,tCoin]],hasCoin(Human,E0Coin) v controls(Human,E0Coin))))). :- add_test(exists0b, (all([[Human,tHuman]],~exists([[CommonSense,tCommonSense]],hasCommonSense(Human,CommonSense) v controls(Human,CommonSense))))). % implies :- add_test(most1c, (all([[Human,tHuman]],atmost(1,[[M1Spouse,tSpouse]],hasSpouse(Human,M1Spouse) => controls(Human,M1Spouse))))). :- add_test(least1c, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea) => controls(Human,LeastIdea))))). :- add_test(exactly1c, (all([[Human,tHuman]],exactly(1,[[Heart,tHeart]],hasHeart(Human,Heart) => controls(Human,Heart))))). :- add_test(exists1c, (all([[Human,tHuman]],exists([[SomeClue,tClue]],hasClue(Human,SomeClue) => controls(Human,SomeClue))))). :- add_test(most2c, (all([[Human,tHuman]],atmost(2,[[M2Kidney,tKidney]],hasKidney(Human,M2Kidney) => controls(Human,M2Kidney))))). :- add_test(least2c, (all([[Human,tHuman]],atleast(2,[[L2Dream,tDream]],hasDream(Human,L2Dream) => controls(Human,L2Dream))))). :- add_test(exactly2c, (all([[Human,tHuman]],exactly(2,[[E2ye,tEye]],hasEye(Human,E2ye) => controls(Human,E2ye))))). :- add_test(exists2c, (all([[Human,tHuman]],exists([[Lung1,tLung],[Lung2,tLung]], (hasLung(Human,Lung1) & hasLung(Human,Lung2) & leftOf(Lung1,Lung2)) => (controls(Human,Lung1) & controls(Human,Lung2)))))). :- add_test(most0c, (all([[Human,tHuman]],atmost(0,[[M0Wing,tWing]],hasWing(Human,M0Wing) => controls(Human,M0Wing))))). :- add_test(least0c, (all([[Human,tHuman]],atleast(0,[[L0Dollar,tDollar]],hasDollar(Human,L0Dollar) => controls(Human,L0Dollar))))). :- add_test(exactly0c, (all([[Human,tHuman]],exactly(0,[[E0Coin,tCoin]],hasCoin(Human,E0Coin) => controls(Human,E0Coin))))). :- add_test(exists0c, (all([[Human,tHuman]],~exists([[CommonSense,tCommonSense]],hasCommonSense(Human,CommonSense) => controls(Human,CommonSense))))). % and :- add_test(most0a, (all([[Human,tHuman]],atmost(0,[[M0Wing,tWing]],hasWing(Human,M0Wing)&controls(Human,M0Wing))))). :- add_test(least0a, (all([[Human,tHuman]],atleast(0,[[L0Dollar,tDollar]],hasDollar(Human,L0Dollar)&controls(Human,L0Dollar))))). :- add_test(exactly0a, (all([[Human,tHuman]],exactly(0,[[E0Coin,tCoin]],hasCoin(Human,E0Coin)&controls(Human,E0Coin))))). :- add_test(exists0a, (all([[Human,tHuman]],~exists([[CommonSense,tCommonSense]],hasCommonSense(Human,CommonSense)&controls(Human,CommonSense))))). :- add_test(most2a, (all([[Human,tHuman]],atmost(2,[[M2Kidney,tKidney]],hasKidney(Human,M2Kidney)&controls(Human,M2Kidney))))). :- add_test(least2a, (all([[Human,tHuman]],atleast(2,[[L2Dream,tDream]],hasDream(Human,L2Dream)&controls(Human,L2Dream))))). :- add_test(exactly2a, (all([[Human,tHuman]],exactly(2,[[E2ye,tEye]],hasEye(Human,E2ye)&controls(Human,E2ye))))). :- add_test(exists2a, (all([[Human,tHuman]],exists([[Lung1,tLung],[Lung2,tLung]],hasLung(Human,Lung1)&hasLung(Human,Lung2)&leftOf(Lung1,Lung2)&controls(Human,Lung1)&controls(Human,Lung2))))). :- add_test(most1a, (all([[Human,tHuman]],atmost(1,[[M1Spouse,tSpouse]],hasSpouse(Human,M1Spouse)&controls(Human,M1Spouse))))). :- add_test(least1a, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea)&controls(Human,LeastIdea))))). :- add_test(exactly1a, (all([[Human,tHuman]],exactly(1,[[Heart,tHeart]],hasHeart(Human,Heart)&controls(Human,Heart))))). :- add_test(exists1a, (all([[Human,tHuman]],exists([[SomeClue,tClue]],hasClue(Human,SomeClue)&controls(Human,SomeClue))))). */ :- cls. rats:- forall(is_test(Test),call(Test)). end_of_file. :- mpred_test(\+ tHeart(_)). :- mpred_test(\+ hasOrgan(iBob,_)). :- ain(hasOrgan(iBob,iBobsHeart)). :- ain(tHeart(iBobsHeart)). % You''ve proved Animal does not exist when: % 1) you dont need skolems and % 1a) no hearts exists or % 1b) Human has no organs % 2) when you need skolems and % 2a) no skolem hearts exist or % 2b) no skolem organs for Human prove_not_isa(Human, tHuman) :- ( prove_not_need(skIsHeartInArg2ofHasorgan_1FnSk(Human)), ( prove_not_isa(Heart, tHeart) ; prove_not_holds_t(hasOrgan, Human, Heart) ) ; prove_need(skIsHeartInArg2ofHasorgan_1FnSk(Human)), ( prove_not_isa(skIsHeartInArg2ofHasorgan_1FnSk(Human), tHeart) ; prove_not_holds_t(hasOrgan, Human, skIsHeartInArg2ofHasorgan_1FnSk(Human)) ) ). % Good: % You need skolems for Human when no hearte exist for anyone % or that human has no organs % plus confirm this is indeed a human prove_need(skIsHeartInArg2ofHasorgan_1FnSk(Human)) :- ( prove_not_isa(Heart, tHeart) ; prove_not_holds_t(hasOrgan, Human, Heart) ), prove_isa(Human, tHuman). % This is broken: Everything is a heart of you dont need skolems and you have and what you dont need a skolems for was human prove_isa(Heart, tHeart) :- prove_not_need(skIsHeartInArg2ofHasorgan_1FnSk(Human)), prove_isa(Human, tHuman). % This is broken: Everything is an orgam of you dont need skolems and you have and what you dont need a skolems for was human prove_holds_t(hasOrgan, Human, Heart) :- prove_not_need(skIsHeartInArg2ofHasorgan_1FnSk(Human)), prove_isa(Human, tHuman). % This is broken: prove_not_need(skIsHeartInArg2ofHasorgan_1FnSk(Human)) :- ( prove_not_isa(skIsHeartInArg2ofHasorgan_1FnSk(Human), tHeart) ; prove_not_holds_t(hasOrgan, Human, skIsHeartInArg2ofHasorgan_1FnSk(Human)) ), prove_isa(Human, tHuman). % Good: prove_isa(skIsHeartInArg2ofHasorgan_1FnSk(Human), tHeart) :- prove_need(skIsHeartInArg2ofHasorgan_1FnSk(Human)), prove_isa(Human, tHuman). prove_holds_t(hasOrgan, Human, skIsHeartInArg2ofHasorgan_1FnSk(Human)) :- prove_need(skIsHeartInArg2ofHasorgan_1FnSk(Human)), prove_isa(Human, tHuman). end_of_file. the other year.. i was creating a helpsystem for a commandline util for playing as a robot in secondlife.. so human controlled commands had crazy help system .. i had written this in C# what i was going to say about why cyc ended up the way it did was jus tthe concxept that you know there can be many cfg for english out there and temproary onces Find all "atleast", Subfolders, "", "*.*" File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\common_logic\common_logic_compiler.pl 150 4: atleast(X,N,A) 718 17: Fml = (atleast(N,X,F)) -> Fml1 = atmost(N,X,F); 719 42: Fml = (atmost(N,X,F)) -> Fml1 = atleast(N,X,F); 720 23: Fml = (quant(atleast(N),X,F)) -> Fml1 = quant(atmost(N),X,F); 721 55: Fml = (quant(atmost(N),X,F)) -> Fml1 = quant(atleast(N),X,F); File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\common_logic\common_logic_exists.pl 571 17:expandQuants(KB,atleast(N,X,NNF),FmlO):- expandQuants(KB,quant(atleast(N),X,NNF),FmlO). 571 64:expandQuants(KB,atleast(N,X,NNF),FmlO):- expandQuants(KB,quant(atleast(N),X,NNF),FmlO). 635 25:% Typed (Exactly/AtMost/AtLeast 2 ((?x Man)(?y Woman)(?z Child)) ... ) 646 11:nnf_ex(KB,atleast(N,XL,NNF),FreeV,FmlO,Paths):- is_list(XL), 648 14: nnf(KB,atleast(N,X,isa(X,Col) & NNF),FreeV,FmlO,Paths); 651 20: nnf(KB,atleast(N,X,NNF),FreeV,FmlO,Paths); 652 20: nnf(KB,atleast(N,X,atleast(N,MORE,NNF)),FreeV,FmlO,Paths)))). 652 32: nnf(KB,atleast(N,X,atleast(N,MORE,NNF)),FreeV,FmlO,Paths)))). 900 8:% ==== AtLeast N ======== 904 3:% AtLeast 1: We simply create the existence of 1 905 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- N==1, !, 908 22:nnf_ex(KB,thereExistsAtLeast(N,X,Fml),FreeV,NNF,Paths):-!, nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths). 908 70:nnf_ex(KB,thereExistsAtLeast(N,X,Fml),FreeV,NNF,Paths):-!, nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths). 910 3:% AtLeast 2: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule) 910 78:% AtLeast 2: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule) 911 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- N==2, !, 920 3:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 920 18:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 920 50:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 921 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- is_using_feature(list_macros),!, 927 3:% AtLeast 3: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule) 927 78:% AtLeast 3: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule) 928 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- N==3, !, 933 3:% AtLeast 4: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule) 933 78:% AtLeast 4: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule) 934 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- N =4, fail, is_using_feature(list_macros),!, 941 3:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 941 18:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 941 50:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 942 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- % is_using_feature(list_macros),!, 944 17: nnf_ex(KB,atleastInSet(N,X,Fml,N,SET),FreeV,NNF,Paths). 946 12:nnf_ex(_KB,atleastInSet(0,_X,_Fml,_S,_Set),_FreeV,true,1):- !. 948 11:nnf_ex(KB,atleastInSet(N,X,Fml,S,SET),FreeV,NNF,Paths):- % is_using_feature(list_macros),!, 952 27: nnf_ex(KB, ( NEWFORM & atleastInSet(N2,X2,Fml2,S,SET)),[X|FreeV],NNF,Paths). 955 3:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 955 18:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 955 50:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 956 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- % is_using_feature(list_macros),!, 963 3:% AtLeast N: This constructs N separate Skolems.. but did i name them the same? 964 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- NewN is N - 1, !, 966 81: NEWFORM = ~ (~ (different(X,Y) v ( ~ skId(Y,N) v ((exists(Y, FmlY )))))) v atleast(NewN,X,Fml), 970 3:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 970 18:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 970 50:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 971 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- %% is_using_feature(list_macros),!, 976 3:% AtLeast N: Non list macro PFCLog version (Might prefer this?) 977 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- is_using_feature(inline_prolog),!, 986 3:% AtLeast N: This constructs N separate Skolems.. but did i name them the same? 987 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- fail, NewN is N - 1, !, 989 82: NEWFORM = ( ~(different(X,Y) & exists(Y, ~skolem(Y,skIDFn(Y,N)) v FmlY)) v atleast(NewN,X,Fml)), 990 55: % NEWFORM = ( ~different(X,Y) v exists(Y, FmlY & atleast(NewN,X,Fml))), 993 3:% AtLeast N: "Non list macro version (Might prefer this?)" 994 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- NewN is N - 1, !, 996 50: NEWFORM = exists(Y, (FmlY & different(X,Y) & atleast(NewN,X,Fml))), 1018 27:% AtMost N: "If there are AtLeast N then There Exists No More" 1019 74:nnf_ex(KB,atmost(N,X,Fml),FreeV,NNF,Paths):- fail, % wont work due to ~(atleast) = atmost (creating a loop (when in NNF)) 1021 15: NEWFORM = (atleast(N,X,Fml) => ~(exists(Y, FmlY & different(X,Y)))), 1043 42:% Exactly 1: states "There is AtMost and AtLeast 1" 1049 43:% Exactly N: states "There is AtMost N /\ AtLeast N" 1051 15: NEWFORM = (atleast(N,X,Fml) & atmost(N,X,Fml)), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\common_logic\common_logic_snark.pl 292 15:kif_hook_skel(atleast(_,_,_)). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\common_logic\common_logic_unused.txt 31 7:%= atleast(X,N,A) File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\motel\examples.pl 37 57: defconcept(parent_with_two_children,and([parent,atleast(2,child)])), 91 23: defconcept(c1,atleast(3,r)), 92 69: defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])). 92 91: defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])). 117 57: defconcept(parent_with_two_children,and([parent,atleast(2,child)])), 140 28: defconcept(c1,and([atleast(2,child),atmost(1,child)])), 150 35: defconcept(c1,and([person,atleast(2,child)])), 151 35: defconcept(c2,and([person,atleast(3,restr(child,lawyer))])). 168 45: defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))), 168 59: defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))), 169 35: defconcept(c2,all(restr(r,atleast(2,s1)),atmost(2,s2))). 176 79: defconcept(c1,and([person,all(friend,doctor),all(restr(friend,doctor),atleast(1,speciality))])), 177 46: defconcept(c2,and([person,all(friend,atleast(1,speciality))])). 184 28: defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])), 184 59: defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])), 185 27: defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])). 185 44: defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])). 202 44: defconcept(c3,and([atmost(4,child),atleast(2,restr(child,female))])), 569 36: defconcept(fourWheels,and([atleast(4,wheels),atmost(4,wheels)])), 570 36: defconcept(fiveWheels,and([atleast(5,wheels),atmost(5,wheels)])), 629 35: defconcept(oneSpouse,and([atleast(1,spouse),atmost(1,spouse)])), 638 32: defconcept(zeroSH,and([atleast(0,sh),atmost(0,sh)])), 639 31: defconcept(oneSH,and([atleast(1,sh),atmost(1,sh)])), 640 31: defconcept(twoSH,and([atleast(2,sh),atmost(2,sh)])), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\motel\mpred_motel.pl 3427 13: * not(atleast(N,R)) -> atmost(N-1,R) 3428 30: * not(atmost(N,R)) -> atleast(N+1,R) 3457 18:normalizeNot(not(atleast(N,R)),atmost(M,R)) :- 3459 31:normalizeNot(not(atmost(N,R)),atleast(M,R)) :- 3523 15:motel_flatten(atleast(N,R1),atleast(N,R2)) :- 3523 29:motel_flatten(atleast(N,R1),atleast(N,R2)) :- 5162 41: % Assert X in some(r,c) => X in atleast(1,r) 5165 23: % Assert X in atleast(1,r) => X in some(r,'top') 5369 45: % Assert x in some(R,'top') => x in atleast(1,R) 5377 30: atleast(1,R),X,HYPS,AB,CALLS,PT1,InHead1), 5382 23: % Assert x in atleast(1,R) => x in some(R,'top') 5391 29: atleast(1,R),X,HYPS,AB,CALLS,PT1,Body), 8024 13:namesInTerm(atleast(_N,R),L,_) :- 8166 23:malcToFOL(Trans,U,[X],atleast(N,R),F) :- 8167 23: nrToFOL(U,[X],atleast(N,R),F). 8235 17:nrToFOL(_U,[_X],atleast(0,_R),true) :- 8237 15:nrToFOL(U,[X],atleast(1,R),exists(Y,F1)) :- 8240 15:nrToFOL(U,[X],atleast(N,R),F) :- 9570 46: defconcept(EnvName,MS,CNameDom, and([atleast(MinNr,RName1),atmost(MaxNr,RName1)])), 9574 46:% defconcept(EnvName,MS,CNameDef, and([atleast(DefNr,RName1),atmost(DefNr,RName1)])), 9726 46: defconcept(EnvName,MS,CNameDom, and([atleast(MinNr,RName1),atmost(MaxNr,RName1)])), 9729 46:% defconcept(EnvName,MS,CNameDef, and([atleast(DefNr,RName1),atmost(DefNr,RName1)])), 9741 40: defconcept(EnvName,MS,CNameDom,atleast(1,RName1)), 9981 50:% and([atleast(MinNr,RName), 10008 23: [atleast(MinNr,'top'), atmost(MaxNr,'top') | L2]) :- 10482 30: and([atleast(MinNr,R1),atmost(MaxNr,R1)]),AX), 10483 47: undefconcept(EnvName,MS,CNameDom,and([atleast(MinNr,R1), 10580 52: conceptEqualSets(Env,_usr,MS,CNameDom,and([atleast(MinNr,R1), 10582 47: undefconcept(EnvName,MS,CNameDom,and([atleast(MinNr,R1), 10597 47: conceptEqualSets(Env,_usr,MS,CNameDom,atleast(1,R1),AX), 10598 42: undefconcept(EnvName,MS,CNameDom,atleast(1,R1)), 10799 58: roleSubsets(Env,_user,MS,IRName,restr(RName,and([atleast(MinNr,RName), 10804 52: and([atleast(MinNr,RName), 11089 58:assertConceptLInR(Env,rn(AxiomName,_S,Orientation),MS,CN,atleast(N,R)) :- 11096 50: convertInConsequence(Env,pr(3),RN1,MS,W1,atleast(N,R),X, 11360 21: atleast(N,R),X,HYPS,AB,CALLS,PT1,Body) :- 11463 42:convertInConsequence(Env,_Pr,Name,_MS,W1,atleast(N,R),X, 12096 31:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :- 12096 72:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :- 12096 85:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :- File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\motel\test_motel_env.txt 1398 52:conceptEqualSets(env(t5570),user,[],concept12,and([atleast(1,truth_mod),atmost(1,truth_mod)]),axiom109):-true. 1400 49:conceptEqualSets(env(t5570),system,[],concept13,atleast(1,truth_mod),axiom111):-true. 1403 39:conceptEqualSets(env(t5570),system,[],atleast(2,truth_mod),not(concept14),axiom114):-true. 1406 52:conceptEqualSets(env(t5570),user,[],concept20,and([atleast(1,det),atmost(1,det)]),axiom124):-true. 1408 49:conceptEqualSets(env(t5570),system,[],concept21,atleast(1,det),axiom126):-true. 1411 39:conceptEqualSets(env(t5570),system,[],atleast(2,det),not(concept22),axiom129):-true. 1412 52:conceptEqualSets(env(t5570),user,[],concept27,and([atleast(1,deictic_mod),atmost(1,deictic_mod)]),axiom135):-true. 1414 49:conceptEqualSets(env(t5570),system,[],concept28,atleast(1,deictic_mod),axiom137):-true. 1417 39:conceptEqualSets(env(t5570),system,[],atleast(2,deictic_mod),not(concept29),axiom140):-true. 1418 52:conceptEqualSets(env(t5570),user,[],concept34,and([atleast(1,named),atmost(1,named)]),axiom146):-true. 1420 49:conceptEqualSets(env(t5570),system,[],concept35,atleast(1,named),axiom148):-true. 1423 39:conceptEqualSets(env(t5570),system,[],atleast(2,named),not(concept36),axiom151):-true. 1426 52:conceptEqualSets(env(t5570),user,[],concept42,and([atleast(1,subject),atmost(1,subject)]),axiom159):-true. 1428 49:conceptEqualSets(env(t5570),system,[],concept43,atleast(1,subject),axiom161):-true. 1431 39:conceptEqualSets(env(t5570),system,[],atleast(2,subject),not(concept44),axiom164):-true. 1432 52:conceptEqualSets(env(t5570),user,[],concept49,and([atleast(1,purpose),atmost(1,purpose)]),axiom170):-true. 1434 49:conceptEqualSets(env(t5570),system,[],concept50,atleast(1,purpose),axiom172):-true. 1437 39:conceptEqualSets(env(t5570),system,[],atleast(2,purpose),not(concept51),axiom175):-true. 1438 52:conceptEqualSets(env(t5570),user,[],concept56,and([atleast(1,time),atmost(1,time)]),axiom181):-true. 1440 49:conceptEqualSets(env(t5570),system,[],concept57,atleast(1,time),axiom183):-true. 1443 39:conceptEqualSets(env(t5570),system,[],atleast(2,time),not(concept58),axiom186):-true. 1444 52:conceptEqualSets(env(t5570),user,[],concept63,and([atleast(1,illoc),atmost(1,illoc)]),axiom192):-true. 1446 49:conceptEqualSets(env(t5570),system,[],concept64,atleast(1,illoc),axiom194):-true. 1449 39:conceptEqualSets(env(t5570),system,[],atleast(2,illoc),not(concept65),axiom197):-true. 1450 52:conceptEqualSets(env(t5570),user,[],concept70,and([atleast(1,cause),atmost(1,cause)]),axiom203):-true. 1452 49:conceptEqualSets(env(t5570),system,[],concept71,atleast(1,cause),axiom205):-true. 1455 39:conceptEqualSets(env(t5570),system,[],atleast(2,cause),not(concept72),axiom208):-true. 1456 52:conceptEqualSets(env(t5570),user,[],concept77,and([atleast(1,result),atmost(1,result)]),axiom214):-true. 1458 49:conceptEqualSets(env(t5570),system,[],concept78,atleast(1,result),axiom216):-true. 1461 39:conceptEqualSets(env(t5570),system,[],atleast(2,result),not(concept79),axiom219):-true. 1462 52:conceptEqualSets(env(t5570),user,[],concept84,and([atleast(1,location),atmost(1,location)]),axiom225):-true. 1464 49:conceptEqualSets(env(t5570),system,[],concept85,atleast(1,location),axiom227):-true. 1467 39:conceptEqualSets(env(t5570),system,[],atleast(2,location),not(concept86),axiom230):-true. 1468 47:conceptEqualSets(env(t5570),user,[],concept90,atleast(1,subject),axiom231):-true. 1474 52:conceptEqualSets(env(t5570),user,[],concept96,and([atleast(1,volition),atmost(1,volition)]),axiom248):-true. 1476 49:conceptEqualSets(env(t5570),system,[],concept97,atleast(1,volition),axiom250):-true. 1479 39:conceptEqualSets(env(t5570),system,[],atleast(2,volition),not(concept98),axiom253):-true. 1482 53:conceptEqualSets(env(t5570),user,[],concept104,and([atleast(1,origin_mod),atmost(1,origin_mod)]),axiom261):-true. 1484 50:conceptEqualSets(env(t5570),system,[],concept105,atleast(1,origin_mod),axiom263):-true. 1487 39:conceptEqualSets(env(t5570),system,[],atleast(2,origin_mod),not(concept106),axiom266):-true. 1494 53:conceptEqualSets(env(t5570),user,[],concept116,and([atleast(1,colour_mod),atmost(1,colour_mod)]),axiom296):-true. 1496 50:conceptEqualSets(env(t5570),system,[],concept117,atleast(1,colour_mod),axiom298):-true. 1499 39:conceptEqualSets(env(t5570),system,[],atleast(2,colour_mod),not(concept118),axiom301):-true. 1502 53:conceptEqualSets(env(t5570),user,[],concept124,and([atleast(1,relative_mod),atmost(1,relative_mod)]),axiom311):-true. 1504 50:conceptEqualSets(env(t5570),system,[],concept125,atleast(1,relative_mod),axiom313):-true. 1507 39:conceptEqualSets(env(t5570),system,[],atleast(2,relative_mod),not(concept126),axiom316):-true. 1512 53:conceptEqualSets(env(t5570),user,[],concept132,and([atleast(1,material_mod),atmost(1,material_mod)]),axiom328):-true. 1514 50:conceptEqualSets(env(t5570),system,[],concept133,atleast(1,material_mod),axiom330):-true. 1517 39:conceptEqualSets(env(t5570),system,[],atleast(2,material_mod),not(concept134),axiom333):-true. 1520 53:conceptEqualSets(env(t5570),user,[],concept140,and([atleast(1,weight_mod),atmost(1,weight_mod)]),axiom343):-true. 1522 50:conceptEqualSets(env(t5570),system,[],concept141,atleast(1,weight_mod),axiom345):-true. 1525 39:conceptEqualSets(env(t5570),system,[],atleast(2,weight_mod),not(concept142),axiom348):-true. 1530 53:conceptEqualSets(env(t5570),user,[],concept150,and([atleast(1,instrument),atmost(1,instrument)]),axiom359):-true. 1532 50:conceptEqualSets(env(t5570),system,[],concept151,atleast(1,instrument),axiom361):-true. 1535 39:conceptEqualSets(env(t5570),system,[],atleast(2,instrument),not(concept152),axiom364):-true. 1536 53:conceptEqualSets(env(t5570),user,[],concept157,and([atleast(1,concerned),atmost(1,concerned)]),axiom370):-true. 1538 50:conceptEqualSets(env(t5570),system,[],concept158,atleast(1,concerned),axiom372):-true. 1541 39:conceptEqualSets(env(t5570),system,[],atleast(2,concerned),not(concept159),axiom375):-true. 1544 53:conceptEqualSets(env(t5570),user,[],concept165,and([atleast(1,destination),atmost(1,destination)]),axiom393):-true. 1546 50:conceptEqualSets(env(t5570),system,[],concept166,atleast(1,destination),axiom395):-true. 1549 39:conceptEqualSets(env(t5570),system,[],atleast(2,destination),not(concept167),axiom398):-true. 1550 53:conceptEqualSets(env(t5570),user,[],concept172,and([atleast(1,source),atmost(1,source)]),axiom404):-true. 1552 50:conceptEqualSets(env(t5570),system,[],concept173,atleast(1,source),axiom406):-true. 1555 39:conceptEqualSets(env(t5570),system,[],atleast(2,source),not(concept174),axiom409):-true. 1558 48:conceptEqualSets(env(t5570),user,[],concept180,atleast(1,means),axiom417):-true. 1568 48:conceptEqualSets(env(t5570),user,[],concept186,atleast(1,concerned),axiom427):-true. 1574 48:conceptEqualSets(env(t5570),user,[],concept190,atleast(1,result),axiom438):-true. 1578 48:conceptEqualSets(env(t5570),user,[],concept194,atleast(1,concerned),axiom447):-true. 1588 53:conceptEqualSets(env(t5570),user,[],concept202,and([atleast(1,beneficative),atmost(1,beneficative)]),axiom472):-true. 1590 50:conceptEqualSets(env(t5570),system,[],concept203,atleast(1,beneficative),axiom474):-true. 1593 39:conceptEqualSets(env(t5570),system,[],atleast(2,beneficative),not(concept204),axiom477):-true. 1596 48:conceptEqualSets(env(t5570),user,[],concept209,atleast(1,concerned),axiom480):-true. 1600 48:conceptEqualSets(env(t5570),user,[],concept212,atleast(1,concerned),axiom488):-true. 1606 53:conceptEqualSets(env(t5570),user,[],concept218,and([atleast(1,measure),atmost(1,measure)]),axiom512):-true. 1608 50:conceptEqualSets(env(t5570),system,[],concept219,atleast(1,measure),axiom514):-true. 1611 39:conceptEqualSets(env(t5570),system,[],atleast(2,measure),not(concept220),axiom517):-true. 1614 48:conceptEqualSets(env(t5570),user,[],concept226,atleast(1,measure),axiom525):-true. 1624 48:conceptEqualSets(env(t5570),user,[],concept234,atleast(1,quantity),axiom587):-true. 1634 53:conceptEqualSets(env(t5570),user,[],concept241,and([atleast(1,physis_mod),atmost(1,physis_mod)]),axiom648):-true. 1636 50:conceptEqualSets(env(t5570),system,[],concept242,atleast(1,physis_mod),axiom650):-true. 1639 39:conceptEqualSets(env(t5570),system,[],atleast(2,physis_mod),not(concept243),axiom653):-true. 1652 53:conceptEqualSets(env(t5570),user,[],concept254,and([atleast(1,volition),atmost(1,volition)]),axiom689):-true. 1670 53:conceptEqualSets(env(t5570),user,[],concept265,and([atleast(1,worth_mod),atmost(1,worth_mod)]),axiom726):-true. 1672 50:conceptEqualSets(env(t5570),system,[],concept266,atleast(1,worth_mod),axiom728):-true. 1675 39:conceptEqualSets(env(t5570),system,[],atleast(2,worth_mod),not(concept267),axiom731):-true. File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\motel\test_motel_examples_63.pl 39 57: defconcept(parent_with_two_children,and([parent,atleast(2,child)])), 93 23: defconcept(c1,atleast(3,r)), 94 69: defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])). 94 91: defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])). 119 57: defconcept(parent_with_two_children,and([parent,atleast(2,child)])), 142 28: defconcept(c1,and([atleast(2,child),atmost(1,child)])), 152 35: defconcept(c1,and([person,atleast(2,child)])), 153 35: defconcept(c2,and([person,atleast(3,restr(child,lawyer))])). 170 45: defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))), 170 59: defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))), 171 35: defconcept(c2,all(restr(r,atleast(2,s1)),atmost(2,s2))). 178 79: defconcept(c1,and([person,all(friend,doctor),all(restr(friend,doctor),atleast(1,speciality))])), 179 46: defconcept(c2,and([person,all(friend,atleast(1,speciality))])). 186 28: defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])), 186 59: defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])), 187 27: defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])). 187 44: defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])). 204 44: defconcept(c3,and([atmost(4,child),atleast(2,restr(child,female))])), 571 36: defconcept(fourWheels,and([atleast(4,wheels),atmost(4,wheels)])), 572 36: defconcept(fiveWheels,and([atleast(5,wheels),atmost(5,wheels)])), 631 35: defconcept(oneSpouse,and([atleast(1,spouse),atmost(1,spouse)])), 640 32: defconcept(zeroSH,and([atleast(0,sh),atmost(0,sh)])), 641 31: defconcept(oneSH,and([atleast(1,sh),atmost(1,sh)])), 642 31: defconcept(twoSH,and([atleast(2,sh),atmost(2,sh)])), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\motel\test_motel_examples_76.pl 37 57: defconcept(parent_with_two_children,and([parent,atleast(2,child)])), 91 23: defconcept(c1,atleast(3,r)), 92 69: defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])). 92 91: defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])). 117 57: defconcept(parent_with_two_children,and([parent,atleast(2,child)])), 140 28: defconcept(c1,and([atleast(2,child),atmost(1,child)])), 150 35: defconcept(c1,and([person,atleast(2,child)])), 151 35: defconcept(c2,and([person,atleast(3,restr(child,lawyer))])). 168 45: defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))), 168 59: defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))), 169 35: defconcept(c2,all(restr(r,atleast(2,s1)),atmost(2,s2))). 176 79: defconcept(c1,and([person,all(friend,doctor),all(restr(friend,doctor),atleast(1,speciality))])), 177 46: defconcept(c2,and([person,all(friend,atleast(1,speciality))])). 184 28: defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])), 184 59: defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])), 185 27: defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])). 185 44: defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])). 202 44: defconcept(c3,and([atmost(4,child),atleast(2,restr(child,female))])), 569 36: defconcept(fourWheels,and([atleast(4,wheels),atmost(4,wheels)])), 570 36: defconcept(fiveWheels,and([atleast(5,wheels),atmost(5,wheels)])), 629 35: defconcept(oneSpouse,and([atleast(1,spouse),atmost(1,spouse)])), 638 32: defconcept(zeroSH,and([atleast(0,sh),atmost(0,sh)])), 639 31: defconcept(oneSH,and([atleast(1,sh),atmost(1,sh)])), 640 31: defconcept(twoSH,and([atleast(2,sh),atmost(2,sh)])), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\motel\test_motel_fssKb.txt 21 36:defconcept(fssKB,[],concept12,and([atleast(1,truth_mod),atmost(1,truth_mod)])). 23 36:defconcept(fssKB,[],concept20,and([atleast(1,det),atmost(1,det)])). 24 36:defconcept(fssKB,[],concept27,and([atleast(1,deictic_mod),atmost(1,deictic_mod)])). 25 36:defconcept(fssKB,[],concept34,and([atleast(1,named),atmost(1,named)])). 27 36:defconcept(fssKB,[],concept42,and([atleast(1,subject),atmost(1,subject)])). 28 36:defconcept(fssKB,[],concept49,and([atleast(1,purpose),atmost(1,purpose)])). 29 36:defconcept(fssKB,[],concept56,and([atleast(1,time),atmost(1,time)])). 30 36:defconcept(fssKB,[],concept63,and([atleast(1,illoc),atmost(1,illoc)])). 31 36:defconcept(fssKB,[],concept70,and([atleast(1,cause),atmost(1,cause)])). 32 36:defconcept(fssKB,[],concept77,and([atleast(1,result),atmost(1,result)])). 33 36:defconcept(fssKB,[],concept84,and([atleast(1,location),atmost(1,location)])). 34 31:defconcept(fssKB,[],concept90,atleast(1,subject)). 37 36:defconcept(fssKB,[],concept96,and([atleast(1,volition),atmost(1,volition)])). 39 37:defconcept(fssKB,[],concept104,and([atleast(1,origin_mod),atmost(1,origin_mod)])). 43 37:defconcept(fssKB,[],concept116,and([atleast(1,colour_mod),atmost(1,colour_mod)])). 45 37:defconcept(fssKB,[],concept124,and([atleast(1,relative_mod),atmost(1,relative_mod)])). 48 37:defconcept(fssKB,[],concept132,and([atleast(1,material_mod),atmost(1,material_mod)])). 50 37:defconcept(fssKB,[],concept140,and([atleast(1,weight_mod),atmost(1,weight_mod)])). 53 37:defconcept(fssKB,[],concept150,and([atleast(1,instrument),atmost(1,instrument)])). 54 37:defconcept(fssKB,[],concept157,and([atleast(1,concerned),atmost(1,concerned)])). 56 37:defconcept(fssKB,[],concept165,and([atleast(1,destination),atmost(1,destination)])). 57 37:defconcept(fssKB,[],concept172,and([atleast(1,source),atmost(1,source)])). 59 32:defconcept(fssKB,[],concept180,atleast(1,means)). 64 32:defconcept(fssKB,[],concept186,atleast(1,concerned)). 67 32:defconcept(fssKB,[],concept190,atleast(1,result)). 69 32:defconcept(fssKB,[],concept194,atleast(1,concerned)). 74 37:defconcept(fssKB,[],concept202,and([atleast(1,beneficative),atmost(1,beneficative)])). 76 32:defconcept(fssKB,[],concept209,atleast(1,concerned)). 78 32:defconcept(fssKB,[],concept212,atleast(1,concerned)). 81 37:defconcept(fssKB,[],concept218,and([atleast(1,measure),atmost(1,measure)])). 83 32:defconcept(fssKB,[],concept226,atleast(1,measure)). 88 32:defconcept(fssKB,[],concept234,atleast(1,quantity)). 93 37:defconcept(fssKB,[],concept241,and([atleast(1,physis_mod),atmost(1,physis_mod)])). 100 37:defconcept(fssKB,[],concept254,and([atleast(1,volition),atmost(1,volition)])). 109 37:defconcept(fssKB,[],concept265,and([atleast(1,worth_mod),atmost(1,worth_mod)])). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\plarkc\logicmoo_i_cyc_rewriting.pl 225 24:builtin_rn('thereExistsAtLeast', 'atleast'). 225 35:builtin_rn('thereExistsAtLeast', 'atleast'). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\plarkc\logicmoo_u_cyc_api.txt 5356 12:'thereExistAtLeast'/5, File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\plarkc\logicmoo_u_cyc_kb_tinykb.pl 391 40:exactlyAssertedEL_first(isa, thereExistAtLeast, 'ExistentialQuantifier-Bounded', 'UniversalVocabularyMt', vStrDef). 2485 42:exactlyAssertedEL_first(arity, thereExistAtLeast, 3, 'UniversalVocabularyMt', vStrDef). 3232 50:exactlyAssertedEL_next(quotedArgument, thereExistAtLeast, 3, 'UniversalVocabularyMt', vStrDef). 3233 50:exactlyAssertedEL_next(quotedArgument, thereExistAtLeast, 2, 'UniversalVocabularyMt', vStrDef). 3419 49:exactlyAssertedEL_first(argQuotedIsa, thereExistAtLeast, 3, 'CycLSentence-Assertible', 'UniversalVocabularyMt', vStrDef). 3420 49:exactlyAssertedEL_first(argQuotedIsa, thereExistAtLeast, 2, ftVar, 'UniversalVocabularyMt', vStrDef). 3615 43:exactlyAssertedEL_first(argIsa, thereExistAtLeast, 1, 'PositiveInteger', 'UniversalVocabularyMt', vStrDef). 4502 50:exactlyAssertedEL_first(arg3QuotedIsa, thereExistAtLeast, 'CycLSentence-Assertible', 'UniversalVocabularyMt', vStrDef). 4711 50:exactlyAssertedEL_first(arg2QuotedIsa, thereExistAtLeast, ftVar, 'UniversalVocabularyMt', vStrDef). 5457 44:exactlyAssertedEL_first(arg1Isa, thereExistAtLeast, 'PositiveInteger', 'UniversalVocabularyMt', vStrDef). 6087 46:exactlyAssertedEL_next(scopingArg, thereExistAtLeast, 2, 'BaseKB', vStrDef). 6653 51:exactlyAssertedEL_next(oldConstantName, thereExistAtLeast, "ThereExistAtLeast", 'BookkeepingMt', vStrDef). 6653 71:exactlyAssertedEL_next(oldConstantName, thereExistAtLeast, "ThereExistAtLeast", 'BookkeepingMt', vStrDef). 6976 46:exactlyAssertedEL_next(genKeyword, thereExistAtLeast, ((':THERE_EXIST_AT_LEAST')), 'EnglishParaphraseMt', vStrDef). 7033 45:exactlyAssertedEL_next(genFormat, thereExistAtLeast, "there ~a at least ~a ~a such that ~a", 'TheList'('TheList'("is", "are"), 1, 2, 3), 'EnglishParaphraseMt', vStrDef). 7564 124:exactlyAssertedEL_next(comment, thereExistExactly, "An ExistentialQuantifier (q.v.) and a specialization of both thereExistAtLeast and thereExistAtMost (qq.v.). Compared to the standard existential quantifier thereExists, thereExistExactly has an extra argument-place for specifying exactly how many things satisfy a given condition (specified by an CycLSentence-Assertible, in which the also-specified CycLVariable will typically occur free). A closed sentence of the form (thereExistExactly NUM VAR SENT) means that there are exactly NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR. For example, the sentence\n

\n

\n  (thereExistExactly 7 ?X (isa ?X Sea))\n
\n

\nmeans that there are exactly seven seas.\n

\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistExactly NUM VAR SENT) is equivalent to SENT.", 'UniversalVocabularyMt', vStrDef). 7565 223:exactlyAssertedEL_next(comment, thereExistAtMost, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.). Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the most) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free). A closed sentence of the form (thereExistAtMost NUM VAR SENT) means that there are at most NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR. For example, the sentence\n

\n

\n  (thereExistAtMost 7 ?X (isa ?X Sea))\n
\n

\nmeans that there are at most seven seas.\n

\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtMost NUM VAR SENT) is equivalent to SENT.\n

\nSee also thereExistAtLeast, thereExistExactly.", 'UniversalVocabularyMt', vStrDef). 7565 915:exactlyAssertedEL_next(comment, thereExistAtMost, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.). Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the most) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free). A closed sentence of the form (thereExistAtMost NUM VAR SENT) means that there are at most NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR. For example, the sentence\n

\n

\n  (thereExistAtMost 7 ?X (isa ?X Sea))\n
\n

\nmeans that there are at most seven seas.\n

\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtMost NUM VAR SENT) is equivalent to SENT.\n

\nSee also thereExistAtLeast, thereExistExactly.", 'UniversalVocabularyMt', vStrDef). 7566 43:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.). Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free). A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR. For example, the sentence\n

\n

\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n
\n

\nmeans that there are at least seven seas.\n

\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n

\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef). 7566 224:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.). Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free). A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR. For example, the sentence\n

\n

\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n
\n

\nmeans that there are at least seven seas.\n

\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n

\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef). 7566 481:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.). Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free). A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR. For example, the sentence\n

\n

\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n
\n

\nmeans that there are at least seven seas.\n

\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n

\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef). 7566 684:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.). Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free). A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR. For example, the sentence\n

\n

\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n
\n

\nmeans that there are at least seven seas.\n

\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n

\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef). 7566 852:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.). Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free). A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR. For example, the sentence\n

\n

\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n
\n

\nmeans that there are at least seven seas.\n

\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n

\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef). 7603 573:exactlyAssertedEL_next(comment, relationExistsMinAll, "A quaternary RuleMacroPredicate (q.v.) that can be used to state that a given binary predicate stands in a certain numerical relation with respect to two collections. (relationExistsMinAll BINPRED COL1 COL2 N) means that for any instance INST of COL2, there are at least N instances of (INST(1), ..., INST(N)) of COL1 such that (BINPRED INST(i) INST) holds (for 1 <= i <= N). This is equivalent to (and can thus be used in effect as shorthand for) the more complex form:\n

\n(implies\n(isa INST COL2)\n(thereExistAtLeast N ?INST-I\n(and\n(isa ?INST-I COL1)\n(BINPRED ?INST-I INST)))) .\n

\nFor example, `(relationExistsMinAll physicalParts Hand Finger 1)' means that every finger is part of at least one hand. Cf. relationAllExistsMin, and see the shared NoteAboutUseOfRuleMacroPredicates.", 'UniversalVocabularyMt', vStrDef). 7609 567:exactlyAssertedEL_next(comment, relationAllExistsMin, "A quaternary RuleMacroPredicate that can be used to state that a given binary predicate stands in a certain numerical relationship with respect to two collections. (relationAllExistsMin BINPRED COL1 COL2 N) means that for any instance INST of COL1 there are at least N instances (INST(1), ..., INST(N)) of COL2 such that (BINPRED INST INST(i)) holds (for 1 <= i <= N). This is equivalent to (and can thus be used in effect as shorthand for) the more complex form:\n

\n(implies\n(isa ?INST COL1)\n(thereExistAtLeast N ?INST-I\n(and\n(isa ?INST-I COL2)\n(BINPRED ?INST ?INST-I)))) .\n

\nFor example, `(relationAllExistsMin subEvents EatingEvent Swallowing 1)' means that every act of eating includes at least one swallowing. Cf. relationExistsMinAll, and see NoteAboutUseOfRuleMacroPredicates.", 'UniversalVocabularyMt', vStrDef). 7780 1529:exactlyAssertedEL_next(comment, commutativeInArgs, "A variable-arity MetaRelation used for stating that a given PartiallyCommutativeRelation (q.v.) is \"commutative\" with respect to two or more specified argument-places.\n

\n(commutativeInArgs RELN ARGNUM-1 ... ARGNUM-N) means that RELN is commutative in its ARGNUM-1th, ..., and ARGNUM-Nth arguments. Thus RELN admits unrestricted permutation among these arguments. More precisely: (i) if RELN is a Predicate that holds of a given argument-sequence SEQ, then RELN also holds of any other sequence SEQ-PERMUTE obtainable from SEQ by permuting some or all of SEQ's ARGNUM-1th, ..., and ARGNUM-Nth items (while leaving all of SEQ's other items unchanged). (ii) if RELN is a Function-Denotational that associates a given argument-sequence SEQ with the value VALUE, then RELN also associates any sequence SEQ-PERMUTE (as described above) with VALUE.\n

\nFor example, (commutativeInArgs formsBorderBetween 2 3) has as a consequence that whenever a sentence of the form (formsBorderBetween BORDER REG1 REG2) holds, so does the corresponding sentence (formsBorderBetween BORDER REG2 REG1).\n

\nIf RELN is commutative in at least two argument-places it is an AtLeastPartiallyCommutativeRelation. If RELN is commutative in all argument-places it is, more specifically, a CommutativeRelation. If RELN is commutative in at least two, but not all,\nargument-places it is, instead, a PartiallyCommutativeRelation.\n

\nNote that the fact that each argument-place of a given relation commutes with some other argument-place is not sufficient for its being fully commutative. For example, a partially-commutative quaternary relation might be such that its first and third places commute with each other and its second and fourth places commute with each other.", 'UniversalVocabularyMt', vStrDef). 7919 377:exactlyAssertedEL_next(comment, 'SkolemFuncNFn', "SkolemFuncNFn is used by the CycCanonicalizer and should rarely\n(if ever) need to be seen by users or referenced in assertions entered\nat the EL level. It is used by the canonicalizer to denote a skolem\nfunction before it is reified, when the skolem is derived from a formula\nasserted at the EL level that uses thereExistAtLeast,\nthereExistAtMost, or thereExistExactly. Its arity is 4: the first\nargument is a list of the term variable arguments of the denoted skolem function,\n(term variables which are in the scope of the bounded existential).\nThe second argument is a variable which uniquely identifies the\nexistentially quantified variable by which the denoted skolem will\nbe represented in the canonical version of the formula.\nThe third is a sequence variable if there is a sequence variable\nargument of the denoted skolem function (which there will be iff there\nis a sequence variable in the scope of the bounded existential), and NIL otherwise.\nThe fourth is an interval specifying the number of things which may satisfy the formula.", 'UniversalVocabularyMt', vStrDef). 7920 246:exactlyAssertedEL_next(comment, 'SkolemFuncN', "SkolemFuncN is a collection of Cyc system-generated functions that partially implement existential quantifications in Cyc. Whenever someone asserts to Cyc an expression that contains a 'thereExistAtLeast', a 'thereExistAtMost', or a 'thereExistExactly' quantifier, Cyc automatically creates a new instance of SkolemFuncN and rewrites the assertion using this skolem function instead of that existential quantifier. See also termOfUnit. At this time (3/98), skolem functions are automatically named by the Cyc system using the prefix 'SKF-' followed by a number.", 'UniversalVocabularyMt', vStrDef). 7968 943:exactlyAssertedEL_next(comment, 'Quantifier', "A specialization of SententialRelation and ScopingRelation (qq.v.). Each instance of Quantifier takes as its arguments (at least) a variable (see CycLVariable) and a sentence (see CycLSentence-Assertible), and is used to make a certain kind of generic quantitative statement regarding the things that satisfy the sentence. Typically, the variable VAR will occur free in the sentence SENT, and in the quantified sentence (QUANT VAR SENT ...) these occurrences of VAR are bound by that occurrence of QUANT. (If VAR does not occur free in SENT, then the quantified sentence is a \"vacuous quantification\" that is equivalent to SENT by itself. For the definitions of 'free' and 'bound' occurrences of variables, see ScopingRelation.) For example, '(thereExists ?X (isa ?X Dog))' means that there exists at least one dog. Other instances of Quantifier are forAll, thereExistExactly, thereExistAtLeast, and thereExistAtMost.", 'UniversalVocabularyMt', vStrDef). 7978 141:exactlyAssertedEL_next(comment, 'PartiallyCommutativeRelation', "An instance of RelationTypeByLogicalFeature (q.v.) and a specialization of AtLeastPartiallyCommutativeRelation. Each instance of PartiallyCommutativeRelation PARTCOMRELN is a predicate or function that is commutative in some, but not all, of its argument-places (see commutativeInArgs). More precisely, suppose for example that PARTCOMRELN is a predicate (function) that is commutative only in its odd-numbered argument-places, and that PARTCOMRELN holds among (has the value VAL for) a given sequence of arguments SEQ. It follows that PARTCOMRELN also holds among (has the same value VAL for) any other sequence SEQ-PRIME obtainable from SEQ by permuting some or all of the odd-numbered members of SEQ while keeping all of its even-numbered members fixed.\n

\nNote that PARTCOMRELN must have an arity (see arity) of at least three and cannot be an instance of CommutativeRelation (as any instance of the latter is commutative in all of its argument-places).\n

\nInstances of PartiallyCommutativeRelation include pathsJoinAt, formsBorderBetween, and BlockOfStreetBetweenFn.", 'UniversalVocabularyMt', vStrDef). 8081 351:exactlyAssertedEL_next(comment, 'ExistentialQuantifier-Bounded', "A specialization of ExistentialQuantifier (q.v.). Each instance of ExistentialQuantifier-Bounded is a ternary relation that can be used to make a certain kind of statement about the existence of a given bounded quantity of things meeting a given criterion. For example, '(thereExistAtLeast 9 ?X (isa ?X Cat))' means that there exist at least nine cats. What distinguishes _bounded_ existential quantifiers from existential quantifiers generally is that the former require one to specify explicitly (at least a boundary for) how many things exist that meet the specified criterion.", 'UniversalVocabularyMt', vStrDef). 8082 284:exactlyAssertedEL_next(comment, 'ExistentialQuantifier', "A specialization of Quantifier (q.v.). Each instance of ExistentialQuantifier can be used to make a certain kind of assertion regarding the existence of some thing(s) meeting a specified criterion. For example, `(thereExistAtLeast 9 ?X (isa ?X Cat))' means that there exist at least nine cats. Other instances of this collection are thereExists and thereExistExactly. Cf. forAll.", 'UniversalVocabularyMt', vStrDef). 8172 132:exactlyAssertedEL_next(comment, 'CommutativeRelation', "An instance of RelationTypeByLogicalFeature (q.v.) and a specialization of AtLeastPartiallyCommutativeRelation (q.v.). Each instance of CommutativeRelation COMRELN is a predicate or function that is commutative in all of its argument-places. That is, if COMRELN is a predicate (function) that holds among (has a value VAL for) a given sequence of arguments, then COMRELN also holds among (has the same value VAL for) any permutation of that sequence. \n

\nExamples of commutative relations include PlusFn, or, bordersOn, temporallyIntersects, and teammates. Specialization include SymmetricBinaryPredicate. \n

\nNote that most relations are not commutative. Cf. the disjoint collection PartiallyCommutativeRelation.", 'UniversalVocabularyMt', vStrDef). 8777 46:assertedTinyKB_not_first(quotedIsa(thereExistAtLeast, 'InferenceSupportedTerm'), 'UniversalVocabularyMt', vStrDef). 9144 188:assertedTinyKB_implies( and(isa('$VAR'('ARG2'), '$VAR'('UNIV_COL')), relationExistsMinAll('$VAR'('SLOT'), '$VAR'('EXIST_COL'), '$VAR'('UNIV_COL'), '$VAR'('NUM'))), trueSentence(thereExistAtLeast('$VAR'('NUM'), '$VAR'('ARG'), and(isa('$VAR'('ARG'), '$VAR'('EXIST_COL')), holds('$VAR'('SLOT'), '$VAR'('ARG'), '$VAR'('ARG2'))))), 'BaseKB', vStrDef). 9147 188:assertedTinyKB_implies( and(isa('$VAR'('ARG1'), '$VAR'('UNIV_COL')), relationAllExistsMin('$VAR'('SLOT'), '$VAR'('UNIV_COL'), '$VAR'('EXIST_COL'), '$VAR'('NUM'))), trueSentence(thereExistAtLeast('$VAR'('NUM'), '$VAR'('ARG'), and(isa('$VAR'('ARG'), '$VAR'('EXIST_COL')), holds('$VAR'('SLOT'), '$VAR'('ARG1'), '$VAR'('ARG'))))), 'BaseKB', vStrDef). 9376 112:exactlyAssertedEL_with_vars(expansion, relationExistsMinAll, implies(isa('$VAR'('ARG2'), (':ARG3')), thereExistAtLeast((':ARG4'), '$VAR'('ARG'), and(isa('$VAR'('ARG'), (':ARG2')), holds((':ARG1'), '$VAR'('ARG'), '$VAR'('ARG2'))))), 'BaseKB', vStrDef). 9382 112:exactlyAssertedEL_with_vars(expansion, relationAllExistsMin, implies(isa('$VAR'('ARG1'), (':ARG2')), thereExistAtLeast((':ARG4'), '$VAR'('ARG'), and(isa('$VAR'('ARG'), (':ARG3')), holds((':ARG1'), '$VAR'('ARG1'), '$VAR'('ARG'))))), 'BaseKB', vStrDef). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\typesystem\mpred_type_wff.pl 531 25: member(OtherExists,[atleast,atmost,exactly]), 534 25:is_quant_f(Q):- arg(_,v(atleast,atmost,exactly,all,exists),Q). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo_clif.pl 173 7:%= atleast(X,N,A) File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\common_logic\common_logic_compiler.pl 154 4: atleast(X,N,A) 419 25:% Typed (Exactly/AtMost/AtLeast 2 ((?x Man)(?y Woman)(?z Child)) ... ) 434 17:expandQuants(KB,atleast(N,X,NNF),FmlO):- expandQuants(KB,quant(atleast(N),X,NNF),FmlO). 434 64:expandQuants(KB,atleast(N,X,NNF),FmlO):- expandQuants(KB,quant(atleast(N),X,NNF),FmlO). 645 25:% Typed (Exactly/AtMost/AtLeast 2 ((?x Man)(?y Woman)(?z Child)) ... ) 656 9:nnf1(KB,atleast(N,XL,NNF),FreeV,FmlO,Paths):- is_list(XL), 658 14: nnf(KB,atleast(N,X,isa(X,Col) & NNF),FreeV,FmlO,Paths); 661 20: nnf(KB,atleast(N,X,NNF),FreeV,FmlO,Paths); 662 20: nnf(KB,atleast(N,X,atleast(N,MORE,NNF)),FreeV,FmlO,Paths)))). 662 32: nnf(KB,atleast(N,X,atleast(N,MORE,NNF)),FreeV,FmlO,Paths)))). 921 8:% ==== AtLeast N ======== 925 3:% AtLeast 1: We simply create the existence of 1 926 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- N==1, !, 929 20:nnf1(KB,thereExistsAtLeast(N,X,Fml),FreeV,NNF,Paths):-!, nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths). 929 66:nnf1(KB,thereExistsAtLeast(N,X,Fml),FreeV,NNF,Paths):-!, nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths). 931 3:% AtLeast 2: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule) 931 78:% AtLeast 2: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule) 932 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- N==2, !, 941 3:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 941 18:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 941 50:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 942 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- is_using_feature(list_macros),!, 948 3:% AtLeast 3: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule) 948 78:% AtLeast 3: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule) 949 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- N==3, !, 954 3:% AtLeast 4: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule) 954 78:% AtLeast 4: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule) 955 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- N =4, fail, is_using_feature(list_macros),!, 962 3:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 962 18:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 962 50:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 963 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- % is_using_feature(list_macros),!, 965 15: nnf1(KB,atleastInSet(N,X,Fml,N,SET),FreeV,NNF,Paths). 967 10:nnf1(_KB,atleastInSet(0,_X,_Fml,_S,_Set),_FreeV,true,1):- !. 969 9:nnf1(KB,atleastInSet(N,X,Fml,S,SET),FreeV,NNF,Paths):- % is_using_feature(list_macros),!, 973 25: nnf1(KB, ( NEWFORM & atleastInSet(N2,X2,Fml2,S,SET)),[X|FreeV],NNF,Paths). 976 3:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 976 18:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 976 50:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 977 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- % is_using_feature(list_macros),!, 984 3:% AtLeast N: This constructs N separate Skolems.. but did i name them the same? 985 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- NewN is N - 1, !, 987 81: NEWFORM = ~ (~ (different(X,Y) v ( ~ skId(Y,N) v ((exists(Y, FmlY )))))) v atleast(NewN,X,Fml), 991 3:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 991 18:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 991 50:% AtLeast N: If AtLeast 4 above is correct than AtLeast N is correcT? 992 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- %% is_using_feature(list_macros),!, 997 3:% AtLeast N: Non list macro PFCLog version (Might prefer this?) 998 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- is_using_feature(inline_prolog),!, 1007 3:% AtLeast N: This constructs N separate Skolems.. but did i name them the same? 1008 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- fail, NewN is N - 1, !, 1010 82: NEWFORM = ( ~(different(X,Y) & exists(Y, ~skolem(Y,skIDFn(Y,N)) v FmlY)) v atleast(NewN,X,Fml)), 1011 55: % NEWFORM = ( ~different(X,Y) v exists(Y, FmlY & atleast(NewN,X,Fml))), 1014 3:% AtLeast N: "Non list macro version (Might prefer this?)" 1015 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- NewN is N - 1, !, 1017 50: NEWFORM = exists(Y, (FmlY & different(X,Y) & atleast(NewN,X,Fml))), 1039 27:% AtMost N: "If there are AtLeast N then There Exists No More" 1040 72:nnf1(KB,atmost(N,X,Fml),FreeV,NNF,Paths):- fail, % wont work due to ~(atleast) = atmost (creating a loop (when in NNF)) 1042 15: NEWFORM = (atleast(N,X,Fml) => ~(exists(Y, FmlY & different(X,Y)))), 1064 42:% Exactly 1: states "There is AtMost and AtLeast 1" 1070 43:% Exactly N: states "There is AtMost N /\ AtLeast N" 1072 15: NEWFORM = (atleast(N,X,Fml) & atmost(N,X,Fml)), 1228 17: Fml = (atleast(N,X,F)) -> Fml1 = atmost(N,X,F); 1229 42: Fml = (atmost(N,X,F)) -> Fml1 = atleast(N,X,F); 1230 23: Fml = (quant(atleast(N),X,F)) -> Fml1 = quant(atmost(N),X,F); 1231 55: Fml = (quant(atmost(N),X,F)) -> Fml1 = quant(atleast(N),X,F); File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\common_logic\common_logic_snark.pl 265 15:kif_hook_skel(atleast(_,_,_)). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\common_logic\common_logic_unused.txt 31 7:%= atleast(X,N,A) File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\motel\examples.pl 37 57: defconcept(parent_with_two_children,and([parent,atleast(2,child)])), 91 23: defconcept(c1,atleast(3,r)), 92 69: defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])). 92 91: defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])). 117 57: defconcept(parent_with_two_children,and([parent,atleast(2,child)])), 140 28: defconcept(c1,and([atleast(2,child),atmost(1,child)])), 150 35: defconcept(c1,and([person,atleast(2,child)])), 151 35: defconcept(c2,and([person,atleast(3,restr(child,lawyer))])). 168 45: defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))), 168 59: defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))), 169 35: defconcept(c2,all(restr(r,atleast(2,s1)),atmost(2,s2))). 176 79: defconcept(c1,and([person,all(friend,doctor),all(restr(friend,doctor),atleast(1,speciality))])), 177 46: defconcept(c2,and([person,all(friend,atleast(1,speciality))])). 184 28: defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])), 184 59: defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])), 185 27: defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])). 185 44: defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])). 202 44: defconcept(c3,and([atmost(4,child),atleast(2,restr(child,female))])), 569 36: defconcept(fourWheels,and([atleast(4,wheels),atmost(4,wheels)])), 570 36: defconcept(fiveWheels,and([atleast(5,wheels),atmost(5,wheels)])), 629 35: defconcept(oneSpouse,and([atleast(1,spouse),atmost(1,spouse)])), 638 32: defconcept(zeroSH,and([atleast(0,sh),atmost(0,sh)])), 639 31: defconcept(oneSH,and([atleast(1,sh),atmost(1,sh)])), 640 31: defconcept(twoSH,and([atleast(2,sh),atmost(2,sh)])), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\motel\mpred_motel.pl 3427 13: * not(atleast(N,R)) -> atmost(N-1,R) 3428 30: * not(atmost(N,R)) -> atleast(N+1,R) 3457 18:normalizeNot(not(atleast(N,R)),atmost(M,R)) :- 3459 31:normalizeNot(not(atmost(N,R)),atleast(M,R)) :- 3523 15:motel_flatten(atleast(N,R1),atleast(N,R2)) :- 3523 29:motel_flatten(atleast(N,R1),atleast(N,R2)) :- 5162 41: % Assert X in some(r,c) => X in atleast(1,r) 5165 23: % Assert X in atleast(1,r) => X in some(r,'top') 5369 45: % Assert x in some(R,'top') => x in atleast(1,R) 5377 30: atleast(1,R),X,HYPS,AB,CALLS,PT1,InHead1), 5382 23: % Assert x in atleast(1,R) => x in some(R,'top') 5391 29: atleast(1,R),X,HYPS,AB,CALLS,PT1,Body), 8024 13:namesInTerm(atleast(_N,R),L,_) :- 8166 23:malcToFOL(Trans,U,[X],atleast(N,R),F) :- 8167 23: nrToFOL(U,[X],atleast(N,R),F). 8235 17:nrToFOL(_U,[_X],atleast(0,_R),true) :- 8237 15:nrToFOL(U,[X],atleast(1,R),exists(Y,F1)) :- 8240 15:nrToFOL(U,[X],atleast(N,R),F) :- 9570 46: defconcept(EnvName,MS,CNameDom, and([atleast(MinNr,RName1),atmost(MaxNr,RName1)])), 9574 46:% defconcept(EnvName,MS,CNameDef, and([atleast(DefNr,RName1),atmost(DefNr,RName1)])), 9726 46: defconcept(EnvName,MS,CNameDom, and([atleast(MinNr,RName1),atmost(MaxNr,RName1)])), 9729 46:% defconcept(EnvName,MS,CNameDef, and([atleast(DefNr,RName1),atmost(DefNr,RName1)])), 9741 40: defconcept(EnvName,MS,CNameDom,atleast(1,RName1)), 9981 50:% and([atleast(MinNr,RName), 10008 23: [atleast(MinNr,'top'), atmost(MaxNr,'top') | L2]) :- 10482 30: and([atleast(MinNr,R1),atmost(MaxNr,R1)]),AX), 10483 47: undefconcept(EnvName,MS,CNameDom,and([atleast(MinNr,R1), 10580 52: conceptEqualSets(Env,_usr,MS,CNameDom,and([atleast(MinNr,R1), 10582 47: undefconcept(EnvName,MS,CNameDom,and([atleast(MinNr,R1), 10597 47: conceptEqualSets(Env,_usr,MS,CNameDom,atleast(1,R1),AX), 10598 42: undefconcept(EnvName,MS,CNameDom,atleast(1,R1)), 10799 58: roleSubsets(Env,_user,MS,IRName,restr(RName,and([atleast(MinNr,RName), 10804 52: and([atleast(MinNr,RName), 11089 58:assertConceptLInR(Env,rn(AxiomName,_S,Orientation),MS,CN,atleast(N,R)) :- 11096 50: convertInConsequence(Env,pr(3),RN1,MS,W1,atleast(N,R),X, 11360 21: atleast(N,R),X,HYPS,AB,CALLS,PT1,Body) :- 11463 42:convertInConsequence(Env,_Pr,Name,_MS,W1,atleast(N,R),X, 12096 31:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :- 12096 72:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :- 12096 85:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :- File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\motel\test_motel_env.txt 1398 52:conceptEqualSets(env(t5570),user,[],concept12,and([atleast(1,truth_mod),atmost(1,truth_mod)]),axiom109):-true. 1400 49:conceptEqualSets(env(t5570),system,[],concept13,atleast(1,truth_mod),axiom111):-true. 1403 39:conceptEqualSets(env(t5570),system,[],atleast(2,truth_mod),not(concept14),axiom114):-true. 1406 52:conceptEqualSets(env(t5570),user,[],concept20,and([atleast(1,det),atmost(1,det)]),axiom124):-true. 1408 49:conceptEqualSets(env(t5570),system,[],concept21,atleast(1,det),axiom126):-true. 1411 39:conceptEqualSets(env(t5570),system,[],atleast(2,det),not(concept22),axiom129):-true. 1412 52:conceptEqualSets(env(t5570),user,[],concept27,and([atleast(1,deictic_mod),atmost(1,deictic_mod)]),axiom135):-true. 1414 49:conceptEqualSets(env(t5570),system,[],concept28,atleast(1,deictic_mod),axiom137):-true. 1417 39:conceptEqualSets(env(t5570),system,[],atleast(2,deictic_mod),not(concept29),axiom140):-true. 1418 52:conceptEqualSets(env(t5570),user,[],concept34,and([atleast(1,named),atmost(1,named)]),axiom146):-true. 1420 49:conceptEqualSets(env(t5570),system,[],concept35,atleast(1,named),axiom148):-true. 1423 39:conceptEqualSets(env(t5570),system,[],atleast(2,named),not(concept36),axiom151):-true. 1426 52:conceptEqualSets(env(t5570),user,[],concept42,and([atleast(1,subject),atmost(1,subject)]),axiom159):-true. 1428 49:conceptEqualSets(env(t5570),system,[],concept43,atleast(1,subject),axiom161):-true. 1431 39:conceptEqualSets(env(t5570),system,[],atleast(2,subject),not(concept44),axiom164):-true. 1432 52:conceptEqualSets(env(t5570),user,[],concept49,and([atleast(1,purpose),atmost(1,purpose)]),axiom170):-true. 1434 49:conceptEqualSets(env(t5570),system,[],concept50,atleast(1,purpose),axiom172):-true. 1437 39:conceptEqualSets(env(t5570),system,[],atleast(2,purpose),not(concept51),axiom175):-true. 1438 52:conceptEqualSets(env(t5570),user,[],concept56,and([atleast(1,time),atmost(1,time)]),axiom181):-true. 1440 49:conceptEqualSets(env(t5570),system,[],concept57,atleast(1,time),axiom183):-true. 1443 39:conceptEqualSets(env(t5570),system,[],atleast(2,time),not(concept58),axiom186):-true. 1444 52:conceptEqualSets(env(t5570),user,[],concept63,and([atleast(1,illoc),atmost(1,illoc)]),axiom192):-true. 1446 49:conceptEqualSets(env(t5570),system,[],concept64,atleast(1,illoc),axiom194):-true. 1449 39:conceptEqualSets(env(t5570),system,[],atleast(2,illoc),not(concept65),axiom197):-true. 1450 52:conceptEqualSets(env(t5570),user,[],concept70,and([atleast(1,cause),atmost(1,cause)]),axiom203):-true. 1452 49:conceptEqualSets(env(t5570),system,[],concept71,atleast(1,cause),axiom205):-true. 1455 39:conceptEqualSets(env(t5570),system,[],atleast(2,cause),not(concept72),axiom208):-true. 1456 52:conceptEqualSets(env(t5570),user,[],concept77,and([atleast(1,result),atmost(1,result)]),axiom214):-true. 1458 49:conceptEqualSets(env(t5570),system,[],concept78,atleast(1,result),axiom216):-true. 1461 39:conceptEqualSets(env(t5570),system,[],atleast(2,result),not(concept79),axiom219):-true. 1462 52:conceptEqualSets(env(t5570),user,[],concept84,and([atleast(1,location),atmost(1,location)]),axiom225):-true. 1464 49:conceptEqualSets(env(t5570),system,[],concept85,atleast(1,location),axiom227):-true. 1467 39:conceptEqualSets(env(t5570),system,[],atleast(2,location),not(concept86),axiom230):-true. 1468 47:conceptEqualSets(env(t5570),user,[],concept90,atleast(1,subject),axiom231):-true. 1474 52:conceptEqualSets(env(t5570),user,[],concept96,and([atleast(1,volition),atmost(1,volition)]),axiom248):-true. 1476 49:conceptEqualSets(env(t5570),system,[],concept97,atleast(1,volition),axiom250):-true. 1479 39:conceptEqualSets(env(t5570),system,[],atleast(2,volition),not(concept98),axiom253):-true. 1482 53:conceptEqualSets(env(t5570),user,[],concept104,and([atleast(1,origin_mod),atmost(1,origin_mod)]),axiom261):-true. 1484 50:conceptEqualSets(env(t5570),system,[],concept105,atleast(1,origin_mod),axiom263):-true. 1487 39:conceptEqualSets(env(t5570),system,[],atleast(2,origin_mod),not(concept106),axiom266):-true. 1494 53:conceptEqualSets(env(t5570),user,[],concept116,and([atleast(1,colour_mod),atmost(1,colour_mod)]),axiom296):-true. 1496 50:conceptEqualSets(env(t5570),system,[],concept117,atleast(1,colour_mod),axiom298):-true. 1499 39:conceptEqualSets(env(t5570),system,[],atleast(2,colour_mod),not(concept118),axiom301):-true. 1502 53:conceptEqualSets(env(t5570),user,[],concept124,and([atleast(1,relative_mod),atmost(1,relative_mod)]),axiom311):-true. 1504 50:conceptEqualSets(env(t5570),system,[],concept125,atleast(1,relative_mod),axiom313):-true. 1507 39:conceptEqualSets(env(t5570),system,[],atleast(2,relative_mod),not(concept126),axiom316):-true. 1512 53:conceptEqualSets(env(t5570),user,[],concept132,and([atleast(1,material_mod),atmost(1,material_mod)]),axiom328):-true. 1514 50:conceptEqualSets(env(t5570),system,[],concept133,atleast(1,material_mod),axiom330):-true. 1517 39:conceptEqualSets(env(t5570),system,[],atleast(2,material_mod),not(concept134),axiom333):-true. 1520 53:conceptEqualSets(env(t5570),user,[],concept140,and([atleast(1,weight_mod),atmost(1,weight_mod)]),axiom343):-true. 1522 50:conceptEqualSets(env(t5570),system,[],concept141,atleast(1,weight_mod),axiom345):-true. 1525 39:conceptEqualSets(env(t5570),system,[],atleast(2,weight_mod),not(concept142),axiom348):-true. 1530 53:conceptEqualSets(env(t5570),user,[],concept150,and([atleast(1,instrument),atmost(1,instrument)]),axiom359):-true. 1532 50:conceptEqualSets(env(t5570),system,[],concept151,atleast(1,instrument),axiom361):-true. 1535 39:conceptEqualSets(env(t5570),system,[],atleast(2,instrument),not(concept152),axiom364):-true. 1536 53:conceptEqualSets(env(t5570),user,[],concept157,and([atleast(1,concerned),atmost(1,concerned)]),axiom370):-true. 1538 50:conceptEqualSets(env(t5570),system,[],concept158,atleast(1,concerned),axiom372):-true. 1541 39:conceptEqualSets(env(t5570),system,[],atleast(2,concerned),not(concept159),axiom375):-true. 1544 53:conceptEqualSets(env(t5570),user,[],concept165,and([atleast(1,destination),atmost(1,destination)]),axiom393):-true. 1546 50:conceptEqualSets(env(t5570),system,[],concept166,atleast(1,destination),axiom395):-true. 1549 39:conceptEqualSets(env(t5570),system,[],atleast(2,destination),not(concept167),axiom398):-true. 1550 53:conceptEqualSets(env(t5570),user,[],concept172,and([atleast(1,source),atmost(1,source)]),axiom404):-true. 1552 50:conceptEqualSets(env(t5570),system,[],concept173,atleast(1,source),axiom406):-true. 1555 39:conceptEqualSets(env(t5570),system,[],atleast(2,source),not(concept174),axiom409):-true. 1558 48:conceptEqualSets(env(t5570),user,[],concept180,atleast(1,means),axiom417):-true. 1568 48:conceptEqualSets(env(t5570),user,[],concept186,atleast(1,concerned),axiom427):-true. 1574 48:conceptEqualSets(env(t5570),user,[],concept190,atleast(1,result),axiom438):-true. 1578 48:conceptEqualSets(env(t5570),user,[],concept194,atleast(1,concerned),axiom447):-true. 1588 53:conceptEqualSets(env(t5570),user,[],concept202,and([atleast(1,beneficative),atmost(1,beneficative)]),axiom472):-true. 1590 50:conceptEqualSets(env(t5570),system,[],concept203,atleast(1,beneficative),axiom474):-true. 1593 39:conceptEqualSets(env(t5570),system,[],atleast(2,beneficative),not(concept204),axiom477):-true. 1596 48:conceptEqualSets(env(t5570),user,[],concept209,atleast(1,concerned),axiom480):-true. 1600 48:conceptEqualSets(env(t5570),user,[],concept212,atleast(1,concerned),axiom488):-true. 1606 53:conceptEqualSets(env(t5570),user,[],concept218,and([atleast(1,measure),atmost(1,measure)]),axiom512):-true. 1608 50:conceptEqualSets(env(t5570),system,[],concept219,atleast(1,measure),axiom514):-true. 1611 39:conceptEqualSets(env(t5570),system,[],atleast(2,measure),not(concept220),axiom517):-true. 1614 48:conceptEqualSets(env(t5570),user,[],concept226,atleast(1,measure),axiom525):-true. 1624 48:conceptEqualSets(env(t5570),user,[],concept234,atleast(1,quantity),axiom587):-true. 1634 53:conceptEqualSets(env(t5570),user,[],concept241,and([atleast(1,physis_mod),atmost(1,physis_mod)]),axiom648):-true. 1636 50:conceptEqualSets(env(t5570),system,[],concept242,atleast(1,physis_mod),axiom650):-true. 1639 39:conceptEqualSets(env(t5570),system,[],atleast(2,physis_mod),not(concept243),axiom653):-true. 1652 53:conceptEqualSets(env(t5570),user,[],concept254,and([atleast(1,volition),atmost(1,volition)]),axiom689):-true. 1670 53:conceptEqualSets(env(t5570),user,[],concept265,and([atleast(1,worth_mod),atmost(1,worth_mod)]),axiom726):-true. 1672 50:conceptEqualSets(env(t5570),system,[],concept266,atleast(1,worth_mod),axiom728):-true. 1675 39:conceptEqualSets(env(t5570),system,[],atleast(2,worth_mod),not(concept267),axiom731):-true. File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\motel\test_motel_examples_63.pl 39 57: defconcept(parent_with_two_children,and([parent,atleast(2,child)])), 93 23: defconcept(c1,atleast(3,r)), 94 69: defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])). 94 91: defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])). 119 57: defconcept(parent_with_two_children,and([parent,atleast(2,child)])), 142 28: defconcept(c1,and([atleast(2,child),atmost(1,child)])), 152 35: defconcept(c1,and([person,atleast(2,child)])), 153 35: defconcept(c2,and([person,atleast(3,restr(child,lawyer))])). 170 45: defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))), 170 59: defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))), 171 35: defconcept(c2,all(restr(r,atleast(2,s1)),atmost(2,s2))). 178 79: defconcept(c1,and([person,all(friend,doctor),all(restr(friend,doctor),atleast(1,speciality))])), 179 46: defconcept(c2,and([person,all(friend,atleast(1,speciality))])). 186 28: defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])), 186 59: defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])), 187 27: defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])). 187 44: defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])). 204 44: defconcept(c3,and([atmost(4,child),atleast(2,restr(child,female))])), 571 36: defconcept(fourWheels,and([atleast(4,wheels),atmost(4,wheels)])), 572 36: defconcept(fiveWheels,and([atleast(5,wheels),atmost(5,wheels)])), 631 35: defconcept(oneSpouse,and([atleast(1,spouse),atmost(1,spouse)])), 640 32: defconcept(zeroSH,and([atleast(0,sh),atmost(0,sh)])), 641 31: defconcept(oneSH,and([atleast(1,sh),atmost(1,sh)])), 642 31: defconcept(twoSH,and([atleast(2,sh),atmost(2,sh)])), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\motel\test_motel_examples_76.pl 37 57: defconcept(parent_with_two_children,and([parent,atleast(2,child)])), 91 23: defconcept(c1,atleast(3,r)), 92 69: defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])). 92 91: defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])). 117 57: defconcept(parent_with_two_children,and([parent,atleast(2,child)])), 140 28: defconcept(c1,and([atleast(2,child),atmost(1,child)])), 150 35: defconcept(c1,and([person,atleast(2,child)])), 151 35: defconcept(c2,and([person,atleast(3,restr(child,lawyer))])). 168 45: defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))), 168 59: defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))), 169 35: defconcept(c2,all(restr(r,atleast(2,s1)),atmost(2,s2))). 176 79: defconcept(c1,and([person,all(friend,doctor),all(restr(friend,doctor),atleast(1,speciality))])), 177 46: defconcept(c2,and([person,all(friend,atleast(1,speciality))])). 184 28: defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])), 184 59: defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])), 185 27: defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])). 185 44: defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])). 202 44: defconcept(c3,and([atmost(4,child),atleast(2,restr(child,female))])), 569 36: defconcept(fourWheels,and([atleast(4,wheels),atmost(4,wheels)])), 570 36: defconcept(fiveWheels,and([atleast(5,wheels),atmost(5,wheels)])), 629 35: defconcept(oneSpouse,and([atleast(1,spouse),atmost(1,spouse)])), 638 32: defconcept(zeroSH,and([atleast(0,sh),atmost(0,sh)])), 639 31: defconcept(oneSH,and([atleast(1,sh),atmost(1,sh)])), 640 31: defconcept(twoSH,and([atleast(2,sh),atmost(2,sh)])), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\motel\test_motel_fssKb.txt 21 36:defconcept(fssKB,[],concept12,and([atleast(1,truth_mod),atmost(1,truth_mod)])). 23 36:defconcept(fssKB,[],concept20,and([atleast(1,det),atmost(1,det)])). 24 36:defconcept(fssKB,[],concept27,and([atleast(1,deictic_mod),atmost(1,deictic_mod)])). 25 36:defconcept(fssKB,[],concept34,and([atleast(1,named),atmost(1,named)])). 27 36:defconcept(fssKB,[],concept42,and([atleast(1,subject),atmost(1,subject)])). 28 36:defconcept(fssKB,[],concept49,and([atleast(1,purpose),atmost(1,purpose)])). 29 36:defconcept(fssKB,[],concept56,and([atleast(1,time),atmost(1,time)])). 30 36:defconcept(fssKB,[],concept63,and([atleast(1,illoc),atmost(1,illoc)])). 31 36:defconcept(fssKB,[],concept70,and([atleast(1,cause),atmost(1,cause)])). 32 36:defconcept(fssKB,[],concept77,and([atleast(1,result),atmost(1,result)])). 33 36:defconcept(fssKB,[],concept84,and([atleast(1,location),atmost(1,location)])). 34 31:defconcept(fssKB,[],concept90,atleast(1,subject)). 37 36:defconcept(fssKB,[],concept96,and([atleast(1,volition),atmost(1,volition)])). 39 37:defconcept(fssKB,[],concept104,and([atleast(1,origin_mod),atmost(1,origin_mod)])). 43 37:defconcept(fssKB,[],concept116,and([atleast(1,colour_mod),atmost(1,colour_mod)])). 45 37:defconcept(fssKB,[],concept124,and([atleast(1,relative_mod),atmost(1,relative_mod)])). 48 37:defconcept(fssKB,[],concept132,and([atleast(1,material_mod),atmost(1,material_mod)])). 50 37:defconcept(fssKB,[],concept140,and([atleast(1,weight_mod),atmost(1,weight_mod)])). 53 37:defconcept(fssKB,[],concept150,and([atleast(1,instrument),atmost(1,instrument)])). 54 37:defconcept(fssKB,[],concept157,and([atleast(1,concerned),atmost(1,concerned)])). 56 37:defconcept(fssKB,[],concept165,and([atleast(1,destination),atmost(1,destination)])). 57 37:defconcept(fssKB,[],concept172,and([atleast(1,source),atmost(1,source)])). 59 32:defconcept(fssKB,[],concept180,atleast(1,means)). 64 32:defconcept(fssKB,[],concept186,atleast(1,concerned)). 67 32:defconcept(fssKB,[],concept190,atleast(1,result)). 69 32:defconcept(fssKB,[],concept194,atleast(1,concerned)). 74 37:defconcept(fssKB,[],concept202,and([atleast(1,beneficative),atmost(1,beneficative)])). 76 32:defconcept(fssKB,[],concept209,atleast(1,concerned)). 78 32:defconcept(fssKB,[],concept212,atleast(1,concerned)). 81 37:defconcept(fssKB,[],concept218,and([atleast(1,measure),atmost(1,measure)])). 83 32:defconcept(fssKB,[],concept226,atleast(1,measure)). 88 32:defconcept(fssKB,[],concept234,atleast(1,quantity)). 93 37:defconcept(fssKB,[],concept241,and([atleast(1,physis_mod),atmost(1,physis_mod)])). 100 37:defconcept(fssKB,[],concept254,and([atleast(1,volition),atmost(1,volition)])). 109 37:defconcept(fssKB,[],concept265,and([atleast(1,worth_mod),atmost(1,worth_mod)])). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\plarkc\logicmoo_i_cyc_rewriting.pl 225 24:builtin_rn('thereExistsAtLeast', 'atleast'). 225 35:builtin_rn('thereExistsAtLeast', 'atleast'). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\plarkc\logicmoo_u_cyc_api.txt 5356 12:'thereExistAtLeast'/5, File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\plarkc\logicmoo_u_cyc_kb_tinykb.pl 391 40:exactlyAssertedEL_first(isa, thereExistAtLeast, 'ExistentialQuantifier-Bounded', 'UniversalVocabularyMt', vStrDef). 2485 42:exactlyAssertedEL_first(arity, thereExistAtLeast, 3, 'UniversalVocabularyMt', vStrDef). 3232 50:exactlyAssertedEL_next(quotedArgument, thereExistAtLeast, 3, 'UniversalVocabularyMt', vStrDef). 3233 50:exactlyAssertedEL_next(quotedArgument, thereExistAtLeast, 2, 'UniversalVocabularyMt', vStrDef). 3419 49:exactlyAssertedEL_first(argQuotedIsa, thereExistAtLeast, 3, 'CycLSentence-Assertible', 'UniversalVocabularyMt', vStrDef). 3420 49:exactlyAssertedEL_first(argQuotedIsa, thereExistAtLeast, 2, ftVar, 'UniversalVocabularyMt', vStrDef). 3615 43:exactlyAssertedEL_first(argIsa, thereExistAtLeast, 1, 'PositiveInteger', 'UniversalVocabularyMt', vStrDef). 4502 50:exactlyAssertedEL_first(arg3QuotedIsa, thereExistAtLeast, 'CycLSentence-Assertible', 'UniversalVocabularyMt', vStrDef). 4711 50:exactlyAssertedEL_first(arg2QuotedIsa, thereExistAtLeast, ftVar, 'UniversalVocabularyMt', vStrDef). 5457 44:exactlyAssertedEL_first(arg1Isa, thereExistAtLeast, 'PositiveInteger', 'UniversalVocabularyMt', vStrDef). 6087 46:exactlyAssertedEL_next(scopingArg, thereExistAtLeast, 2, 'BaseKB', vStrDef). 6653 51:exactlyAssertedEL_next(oldConstantName, thereExistAtLeast, "ThereExistAtLeast", 'BookkeepingMt', vStrDef). 6653 71:exactlyAssertedEL_next(oldConstantName, thereExistAtLeast, "ThereExistAtLeast", 'BookkeepingMt', vStrDef). 6976 46:exactlyAssertedEL_next(genKeyword, thereExistAtLeast, ((':THERE_EXIST_AT_LEAST')), 'EnglishParaphraseMt', vStrDef). 7033 45:exactlyAssertedEL_next(genFormat, thereExistAtLeast, "there ~a at least ~a ~a such that ~a", 'TheList'('TheList'("is", "are"), 1, 2, 3), 'EnglishParaphraseMt', vStrDef). 7564 124:exactlyAssertedEL_next(comment, thereExistExactly, "An ExistentialQuantifier (q.v.) and a specialization of both thereExistAtLeast and thereExistAtMost (qq.v.). Compared to the standard existential quantifier thereExists, thereExistExactly has an extra argument-place for specifying exactly how many things satisfy a given condition (specified by an CycLSentence-Assertible, in which the also-specified CycLVariable will typically occur free). A closed sentence of the form (thereExistExactly NUM VAR SENT) means that there are exactly NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR. For example, the sentence\n

\n

\n  (thereExistExactly 7 ?X (isa ?X Sea))\n
\n

\nmeans that there are exactly seven seas.\n

\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistExactly NUM VAR SENT) is equivalent to SENT.", 'UniversalVocabularyMt', vStrDef). 7565 223:exactlyAssertedEL_next(comment, thereExistAtMost, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.). Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the most) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free). A closed sentence of the form (thereExistAtMost NUM VAR SENT) means that there are at most NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR. For example, the sentence\n

\n

\n  (thereExistAtMost 7 ?X (isa ?X Sea))\n
\n

\nmeans that there are at most seven seas.\n

\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtMost NUM VAR SENT) is equivalent to SENT.\n

\nSee also thereExistAtLeast, thereExistExactly.", 'UniversalVocabularyMt', vStrDef). 7565 915:exactlyAssertedEL_next(comment, thereExistAtMost, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.). Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the most) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free). A closed sentence of the form (thereExistAtMost NUM VAR SENT) means that there are at most NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR. For example, the sentence\n

\n

\n  (thereExistAtMost 7 ?X (isa ?X Sea))\n
\n

\nmeans that there are at most seven seas.\n

\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtMost NUM VAR SENT) is equivalent to SENT.\n

\nSee also thereExistAtLeast, thereExistExactly.", 'UniversalVocabularyMt', vStrDef). 7566 43:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.). Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free). A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR. For example, the sentence\n

\n

\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n
\n

\nmeans that there are at least seven seas.\n

\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n

\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef). 7566 224:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.). Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free). A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR. For example, the sentence\n

\n

\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n
\n

\nmeans that there are at least seven seas.\n

\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n

\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef). 7566 481:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.). Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free). A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR. For example, the sentence\n

\n

\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n
\n

\nmeans that there are at least seven seas.\n

\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n

\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef). 7566 684:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.). Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free). A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR. For example, the sentence\n

\n

\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n
\n

\nmeans that there are at least seven seas.\n

\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n

\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef). 7566 852:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.). Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free). A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR. For example, the sentence\n

\n

\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n
\n

\nmeans that there are at least seven seas.\n

\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n

\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef). 7603 573:exactlyAssertedEL_next(comment, relationExistsMinAll, "A quaternary RuleMacroPredicate (q.v.) that can be used to state that a given binary predicate stands in a certain numerical relation with respect to two collections. (relationExistsMinAll BINPRED COL1 COL2 N) means that for any instance INST of COL2, there are at least N instances of (INST(1), ..., INST(N)) of COL1 such that (BINPRED INST(i) INST) holds (for 1 <= i <= N). This is equivalent to (and can thus be used in effect as shorthand for) the more complex form:\n

\n(implies\n(isa INST COL2)\n(thereExistAtLeast N ?INST-I\n(and\n(isa ?INST-I COL1)\n(BINPRED ?INST-I INST)))) .\n

\nFor example, `(relationExistsMinAll physicalParts Hand Finger 1)' means that every finger is part of at least one hand. Cf. relationAllExistsMin, and see the shared NoteAboutUseOfRuleMacroPredicates.", 'UniversalVocabularyMt', vStrDef). 7609 567:exactlyAssertedEL_next(comment, relationAllExistsMin, "A quaternary RuleMacroPredicate that can be used to state that a given binary predicate stands in a certain numerical relationship with respect to two collections. (relationAllExistsMin BINPRED COL1 COL2 N) means that for any instance INST of COL1 there are at least N instances (INST(1), ..., INST(N)) of COL2 such that (BINPRED INST INST(i)) holds (for 1 <= i <= N). This is equivalent to (and can thus be used in effect as shorthand for) the more complex form:\n

\n(implies\n(isa ?INST COL1)\n(thereExistAtLeast N ?INST-I\n(and\n(isa ?INST-I COL2)\n(BINPRED ?INST ?INST-I)))) .\n

\nFor example, `(relationAllExistsMin subEvents EatingEvent Swallowing 1)' means that every act of eating includes at least one swallowing. Cf. relationExistsMinAll, and see NoteAboutUseOfRuleMacroPredicates.", 'UniversalVocabularyMt', vStrDef). 7780 1529:exactlyAssertedEL_next(comment, commutativeInArgs, "A variable-arity MetaRelation used for stating that a given PartiallyCommutativeRelation (q.v.) is \"commutative\" with respect to two or more specified argument-places.\n

\n(commutativeInArgs RELN ARGNUM-1 ... ARGNUM-N) means that RELN is commutative in its ARGNUM-1th, ..., and ARGNUM-Nth arguments. Thus RELN admits unrestricted permutation among these arguments. More precisely: (i) if RELN is a Predicate that holds of a given argument-sequence SEQ, then RELN also holds of any other sequence SEQ-PERMUTE obtainable from SEQ by permuting some or all of SEQ's ARGNUM-1th, ..., and ARGNUM-Nth items (while leaving all of SEQ's other items unchanged). (ii) if RELN is a Function-Denotational that associates a given argument-sequence SEQ with the value VALUE, then RELN also associates any sequence SEQ-PERMUTE (as described above) with VALUE.\n

\nFor example, (commutativeInArgs formsBorderBetween 2 3) has as a consequence that whenever a sentence of the form (formsBorderBetween BORDER REG1 REG2) holds, so does the corresponding sentence (formsBorderBetween BORDER REG2 REG1).\n

\nIf RELN is commutative in at least two argument-places it is an AtLeastPartiallyCommutativeRelation. If RELN is commutative in all argument-places it is, more specifically, a CommutativeRelation. If RELN is commutative in at least two, but not all,\nargument-places it is, instead, a PartiallyCommutativeRelation.\n

\nNote that the fact that each argument-place of a given relation commutes with some other argument-place is not sufficient for its being fully commutative. For example, a partially-commutative quaternary relation might be such that its first and third places commute with each other and its second and fourth places commute with each other.", 'UniversalVocabularyMt', vStrDef). 7919 377:exactlyAssertedEL_next(comment, 'SkolemFuncNFn', "SkolemFuncNFn is used by the CycCanonicalizer and should rarely\n(if ever) need to be seen by users or referenced in assertions entered\nat the EL level. It is used by the canonicalizer to denote a skolem\nfunction before it is reified, when the skolem is derived from a formula\nasserted at the EL level that uses thereExistAtLeast,\nthereExistAtMost, or thereExistExactly. Its arity is 4: the first\nargument is a list of the term variable arguments of the denoted skolem function,\n(term variables which are in the scope of the bounded existential).\nThe second argument is a variable which uniquely identifies the\nexistentially quantified variable by which the denoted skolem will\nbe represented in the canonical version of the formula.\nThe third is a sequence variable if there is a sequence variable\nargument of the denoted skolem function (which there will be iff there\nis a sequence variable in the scope of the bounded existential), and NIL otherwise.\nThe fourth is an interval specifying the number of things which may satisfy the formula.", 'UniversalVocabularyMt', vStrDef). 7920 246:exactlyAssertedEL_next(comment, 'SkolemFuncN', "SkolemFuncN is a collection of Cyc system-generated functions that partially implement existential quantifications in Cyc. Whenever someone asserts to Cyc an expression that contains a 'thereExistAtLeast', a 'thereExistAtMost', or a 'thereExistExactly' quantifier, Cyc automatically creates a new instance of SkolemFuncN and rewrites the assertion using this skolem function instead of that existential quantifier. See also termOfUnit. At this time (3/98), skolem functions are automatically named by the Cyc system using the prefix 'SKF-' followed by a number.", 'UniversalVocabularyMt', vStrDef). 7968 943:exactlyAssertedEL_next(comment, 'Quantifier', "A specialization of SententialRelation and ScopingRelation (qq.v.). Each instance of Quantifier takes as its arguments (at least) a variable (see CycLVariable) and a sentence (see CycLSentence-Assertible), and is used to make a certain kind of generic quantitative statement regarding the things that satisfy the sentence. Typically, the variable VAR will occur free in the sentence SENT, and in the quantified sentence (QUANT VAR SENT ...) these occurrences of VAR are bound by that occurrence of QUANT. (If VAR does not occur free in SENT, then the quantified sentence is a \"vacuous quantification\" that is equivalent to SENT by itself. For the definitions of 'free' and 'bound' occurrences of variables, see ScopingRelation.) For example, '(thereExists ?X (isa ?X Dog))' means that there exists at least one dog. Other instances of Quantifier are forAll, thereExistExactly, thereExistAtLeast, and thereExistAtMost.", 'UniversalVocabularyMt', vStrDef). 7978 141:exactlyAssertedEL_next(comment, 'PartiallyCommutativeRelation', "An instance of RelationTypeByLogicalFeature (q.v.) and a specialization of AtLeastPartiallyCommutativeRelation. Each instance of PartiallyCommutativeRelation PARTCOMRELN is a predicate or function that is commutative in some, but not all, of its argument-places (see commutativeInArgs). More precisely, suppose for example that PARTCOMRELN is a predicate (function) that is commutative only in its odd-numbered argument-places, and that PARTCOMRELN holds among (has the value VAL for) a given sequence of arguments SEQ. It follows that PARTCOMRELN also holds among (has the same value VAL for) any other sequence SEQ-PRIME obtainable from SEQ by permuting some or all of the odd-numbered members of SEQ while keeping all of its even-numbered members fixed.\n

\nNote that PARTCOMRELN must have an arity (see arity) of at least three and cannot be an instance of CommutativeRelation (as any instance of the latter is commutative in all of its argument-places).\n

\nInstances of PartiallyCommutativeRelation include pathsJoinAt, formsBorderBetween, and BlockOfStreetBetweenFn.", 'UniversalVocabularyMt', vStrDef). 8081 351:exactlyAssertedEL_next(comment, 'ExistentialQuantifier-Bounded', "A specialization of ExistentialQuantifier (q.v.). Each instance of ExistentialQuantifier-Bounded is a ternary relation that can be used to make a certain kind of statement about the existence of a given bounded quantity of things meeting a given criterion. For example, '(thereExistAtLeast 9 ?X (isa ?X Cat))' means that there exist at least nine cats. What distinguishes _bounded_ existential quantifiers from existential quantifiers generally is that the former require one to specify explicitly (at least a boundary for) how many things exist that meet the specified criterion.", 'UniversalVocabularyMt', vStrDef). 8082 284:exactlyAssertedEL_next(comment, 'ExistentialQuantifier', "A specialization of Quantifier (q.v.). Each instance of ExistentialQuantifier can be used to make a certain kind of assertion regarding the existence of some thing(s) meeting a specified criterion. For example, `(thereExistAtLeast 9 ?X (isa ?X Cat))' means that there exist at least nine cats. Other instances of this collection are thereExists and thereExistExactly. Cf. forAll.", 'UniversalVocabularyMt', vStrDef). 8172 132:exactlyAssertedEL_next(comment, 'CommutativeRelation', "An instance of RelationTypeByLogicalFeature (q.v.) and a specialization of AtLeastPartiallyCommutativeRelation (q.v.). Each instance of CommutativeRelation COMRELN is a predicate or function that is commutative in all of its argument-places. That is, if COMRELN is a predicate (function) that holds among (has a value VAL for) a given sequence of arguments, then COMRELN also holds among (has the same value VAL for) any permutation of that sequence. \n

\nExamples of commutative relations include PlusFn, or, bordersOn, temporallyIntersects, and teammates. Specialization include SymmetricBinaryPredicate. \n

\nNote that most relations are not commutative. Cf. the disjoint collection PartiallyCommutativeRelation.", 'UniversalVocabularyMt', vStrDef). 8777 46:assertedTinyKB_not_first(quotedIsa(thereExistAtLeast, 'InferenceSupportedTerm'), 'UniversalVocabularyMt', vStrDef). 9144 188:assertedTinyKB_implies( and(isa('$VAR'('ARG2'), '$VAR'('UNIV_COL')), relationExistsMinAll('$VAR'('SLOT'), '$VAR'('EXIST_COL'), '$VAR'('UNIV_COL'), '$VAR'('NUM'))), trueSentence(thereExistAtLeast('$VAR'('NUM'), '$VAR'('ARG'), and(isa('$VAR'('ARG'), '$VAR'('EXIST_COL')), holds('$VAR'('SLOT'), '$VAR'('ARG'), '$VAR'('ARG2'))))), 'BaseKB', vStrDef). 9147 188:assertedTinyKB_implies( and(isa('$VAR'('ARG1'), '$VAR'('UNIV_COL')), relationAllExistsMin('$VAR'('SLOT'), '$VAR'('UNIV_COL'), '$VAR'('EXIST_COL'), '$VAR'('NUM'))), trueSentence(thereExistAtLeast('$VAR'('NUM'), '$VAR'('ARG'), and(isa('$VAR'('ARG'), '$VAR'('EXIST_COL')), holds('$VAR'('SLOT'), '$VAR'('ARG1'), '$VAR'('ARG'))))), 'BaseKB', vStrDef). 9376 112:exactlyAssertedEL_with_vars(expansion, relationExistsMinAll, implies(isa('$VAR'('ARG2'), (':ARG3')), thereExistAtLeast((':ARG4'), '$VAR'('ARG'), and(isa('$VAR'('ARG'), (':ARG2')), holds((':ARG1'), '$VAR'('ARG'), '$VAR'('ARG2'))))), 'BaseKB', vStrDef). 9382 112:exactlyAssertedEL_with_vars(expansion, relationAllExistsMin, implies(isa('$VAR'('ARG1'), (':ARG2')), thereExistAtLeast((':ARG4'), '$VAR'('ARG'), and(isa('$VAR'('ARG'), (':ARG3')), holds((':ARG1'), '$VAR'('ARG1'), '$VAR'('ARG'))))), 'BaseKB', vStrDef). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\typesystem\mpred_type_wff.pl 617 25: member(OtherExists,[atleast,atmost,exactly]), 620 25:is_quant_f(Q):- arg(_,v(atleast,atmost,exactly,all,exists),Q). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo_clif.pl 173 7:%= atleast(X,N,A) File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\attvar_dict_existentials.pl 313 16:f2:- assert_ex(atleast(1,X,(male(X),isNamed(X,"Johnathan")))). 319 16:f5:- assert_ex(atleast(1,X,(male(X),isNamed(X,"Joe")))). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\attvar_existentials.pfc 60 20:f(1.2):- assert_ex(atleast(1,X,(man(X),isNamed(X,"John")))). % constraining by identity relly meant only 1 64 20:f(2.2):- assert_ex(atleast(1,X,(man(X),isNamed(X,"Joe")))). % constraining by identity relly meant only 1 File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\attvar_existentials.pl 60 20:f(1.2):- assert_ex(atleast(1,X,(man(X),isNamed(X,"John")))). % constraining by identity relly meant only 1 64 20:f(2.2):- assert_ex(atleast(1,X,(man(X),isNamed(X,"Joe")))). % constraining by identity relly meant only 1 File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\boxlog_sanity_01.pfc.pl 96 16::- test_boxlog(atleast(1,X,man(X))). 102 16::- test_boxlog(atleast(3,X,man(X))). 391 16::- test_boxlog(atleast(2,X,man(X))=>exists(G,god(G))). 550 16::- test_boxlog(atleast(4,X, puppy(X) & cute(X))). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\fol_cardinaity_axiomitized_01.pfc.pl 78 9:containsAtLeastOneUnique(paper1,paper2) <-> 96 17: & ~containsAtLeastOneUnique(paper,scratchpad)) 129 15: ( ~containsAtLeastOneUnique(paper1,paper2) 130 17: & ~containsAtLeastOneUnique(paper2,paper1) File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\sanity_at_least_most_exactly_01.pfc.pl 33 58:testable_quants(X,Fml,Q,Name):-member(QF,[exactly,atmost,atleast]),member(QN,[0,1,2,3,5,10]),Q=..[QF,QN,X,Fml],atom_concat(QF,QN,Name). 40 43::- add_test(least1, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea))))). 41 43::- add_test(least3, (all([[Human,tHuman]],atleast(3,[[L3Dream,tDream]],hasDream(Human,L3Dream))))). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\sanity_at_least_most_exactly_02.pfc.pl 32 58:testable_quants(X,Fml,Q,Name):-member(QF,[exactly,atmost,atleast]),member(QN,[0,1,2,3,5,10]),Q=..[QF,QN,X,Fml],atom_concat(QF,QN,Name). 38 43::- add_test(least3, (all([[Human,tHuman]],atleast(3,[[L3Dream,tDream]],hasDream(Human,L3Dream))))). 41 43::- add_test(least1, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea))))). 50 43::- add_test(least2, (all([[Human,tHuman]],atleast(2,[[L2Dream,tDream]],hasDream(Human,L2Dream))))). 55 43::- add_test(least0, (all([[Human,tHuman]],atleast(0,[[L0Dollar,tDollar]],hasDollar(Human,L0Dollar))))). 60 43::- add_test(least3, (all([[Human,tHuman]],atleast(3,[[L3Dream,tDream]],hasDream(Human,L3Dream))))). 65 44::- add_test(least1b, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea) v controls(Human,LeastIdea))))). 70 44::- add_test(least2b, (all([[Human,tHuman]],atleast(2,[[L2Dream,tDream]],hasDream(Human,L2Dream) v controls(Human,L2Dream))))). 75 44::- add_test(least0b, (all([[Human,tHuman]],atleast(0,[[L0Dollar,tDollar]],hasDollar(Human,L0Dollar) v controls(Human,L0Dollar))))). 81 44::- add_test(least1c, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea) => controls(Human,LeastIdea))))). 86 44::- add_test(least2c, (all([[Human,tHuman]],atleast(2,[[L2Dream,tDream]],hasDream(Human,L2Dream) => controls(Human,L2Dream))))). 92 44::- add_test(least0c, (all([[Human,tHuman]],atleast(0,[[L0Dollar,tDollar]],hasDollar(Human,L0Dollar) => controls(Human,L0Dollar))))). 99 44::- add_test(least0a, (all([[Human,tHuman]],atleast(0,[[L0Dollar,tDollar]],hasDollar(Human,L0Dollar)&controls(Human,L0Dollar))))). 104 44::- add_test(least2a, (all([[Human,tHuman]],atleast(2,[[L2Dream,tDream]],hasDream(Human,L2Dream)&controls(Human,L2Dream))))). 110 44::- add_test(least1a, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea)&controls(Human,LeastIdea))))). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\sanity_atleast_01.pfc.pl 26 42::- add_test(t121, (all([[Human,tAnimal]],atleast(1,[[Heart,tHeart]],hasOrgan(Human,Heart))))). 27 21::- add_test(t121a, (atleast(1,[[Heart,tHeart]],all([[Human,tAnimal]],hasOrgan(Human,Heart))))). 32 10: => atleast(1,Heart,(isa(Heart,tHeart) & hasOrgan(Human,Heart)))))). 35 3: (atleast(1,Heart, 43 4: atleast(1,Heart, 48 3: atleast(1,Heart, 56 7: atleast(1, Heart, (isa(Heart,tHeart) => hasOrgan(Human,Heart)))))). 60 4: (atleast(1, Heart, File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\tiny_kb_cache 959 32:tiny_kb(argQuotedIsa(thereExistAtLeast,3,ftSentenceAssertible),iUniversalVocabularyMt,vStrDef). 960 32:tiny_kb(argQuotedIsa(thereExistAtLeast,2,ftVar),iUniversalVocabularyMt,vStrDef). 1124 26:tiny_kb(argIsa(thereExistAtLeast,1,ftPositiveInteger),iUniversalVocabularyMt,vStrDef). 2024 49:tiny_kb(vExistentialQuantifierBounded(thereExistAtLeast),iUniversalVocabularyMt,vStrDef). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\pfc\pfc_sanity.pl.txt 298 1:atLeastOneParent(X,Y) :- (motherOf(Z,X), motherOf(Z,Y) ; fatherOf(W,X), fatherOf(W,Y) ). 299 1:atLeastTwoParents(X,Y) :- (motherOf(Z,X), motherOf(Z,Y) , fatherOf(W,X), fatherOf(W,Y) ). 300 21:stepSibling(X,Y) :- atLeastOneParent(X,Y), \+atLeastTwoParents(X,Y), \+pet(X), \+pet(Y), X \= Y. 300 46:stepSibling(X,Y) :- atLeastOneParent(X,Y), \+atLeastTwoParents(X,Y), \+pet(X), \+pet(Y), X \= Y. File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\pfc\pfc_test1.pl.txt 182 1:atLeastOneParent(X,Y) :- (motherOf(Z,X), motherOf(Z,Y) ; fatherOf(W,X), fatherOf(W,Y) ). 183 1:atLeastTwoParents(X,Y) :- (motherOf(Z,X), motherOf(Z,Y) , fatherOf(W,X), fatherOf(W,Y) ). 184 21:stepSibling(X,Y) :- atLeastOneParent(X,Y), \+atLeastTwoParents(X,Y), \+pet(X), \+pet(Y), X \= Y. 184 46:stepSibling(X,Y) :- atLeastOneParent(X,Y), \+atLeastTwoParents(X,Y), \+pet(X), \+pet(Y), X \= Y. File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\abox.pl 942 11:a5obj_add_atleast(X,Obj,Min,Role,N_Obj) :- 944 18: b5nf_add_atleast(NF,Min,Role,N_NF). 3209 22: a5rev_getall_atleast_one_role(Role, nfi, Objs), 3229 17:%% a5rev_getall_atleast_one_role(+RoleName, +NFx, -Objs). 3230 14:a5rev_getall_atleast_one_role(Role, nfi, Objs) :- 3231 24: b5par_aa_parse(atleast(1,Role),(c,0),[],FI,BQ,RQ), 3426 21:a5rev_is_in_p(Name, atleast(_, Role)) :- 6120 5:%% Atleast in case of disjunctions a local check is required. File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\backmacros 8 17: atleast(N,R) and atmost(N,R)). 11 17: atleast(1, Role and range(ValueRestriction))). 14 17: atleast(1, Role)). 18 21: and atleast(1, Role) 27 11:backmacro(atleast(N, Role, ValueRestriction) *= 28 17: atleast(N, Role and range(ValueRestriction))). 34 17: atleast(N,R and range(C)) 38 17: atleast(1,Role1 and Role2)). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\BACK-V5.ps 695 37:(:)g(:)h(:)40 b FS(53)263 2116 y FT(atleast)28 b FM(:)23 b(:)f(:)h(:)f(:)g(:) 1105 4:FT(atleast)p FS(\(n,)p FE(r)q FS(,)p FE(c)p FS(\))i(or)f FT(atmost)p 1168 20:b(:)p FA(<)62 b Fz(atleast)p FB(\(1,produces,product\))269 1953 44:FQ(B)o(A)o(CK)i FS(with)f(the)g(meaning)f(`atleast\(1,r)i(and)f 1993 46:w(plant)147 b(:=)11 b(plant)g(and)715 2626 y(atleast\(1,produces\))h(and)715 2000 19:b FS(17)655 199 y(atleast\(1,co)p 867 199 14 2 v 17 w(produces,toxic)p 2005 7:425 y(atleast\(2,contains\).)245 482 y(assembled)p 439 482 2006 39:V 16 w(product)j(:=)e(product)g(and)h(atleast\(1,contains\).)135 2012 30:b(The)8 b(e)o(xpression)g FT(atleast)f Fx(\(1,co)p 1280 714 2014 52:771 y FS(uses)16 b(the)h(prede\256ned)g(macro)g FT(atleast)p 2016 62:(into)f(the)g(more)135 827 y(comple)o(x)8 b(e)o(xpression)h(`atleast\(n,r)g 2018 57:(prede\256ned)h(macro)135 884 y(with)h(the)g(meaning)f(`atleast\(n,r\))j(and) 2023 16:1116 y(form)f(`atleast\(n,r\))h(and)g(all\(r)n(,c\)')h(states)e(that)g(all)g 2026 29:(,)h(the)e(e)o(xpression)g(`atleast\(n,r)h(and)f(range\(c\)\)')135 2058 3:y(atleast\(1,uses)p 944 2497 V 16 w(up,radioacti)o(v)o(e)p 2059 46:1218 2497 V 17 w(material\))h(and)696 2553 y(atleast\(1,co)p 2063 45:1101 2666 V 16 w(product\))g(and)696 2723 y(atleast\(1,produces\))g(and)696 2106 23:(prede\256ned)h(as)f(`atleast\(1,r)g(and)195 1456 y(range\(c\)\)'.)20 2505 3:y(atleast\(1,responsible\).)195 980 y(As)h(should)g(be)g(ob)o(vious)g 2765 18:567 1502 y(and)g(atleast\(1,in)n(v\(co)p 896 1502 V 14 w(produces\)\))567 2770 14:1702 y(and)h(atleast\(1,in)n(v\(prim\(co)p 989 1702 V 13 w(produces\)\))f 2783 58:V 14 w(of)p 773 2248 V 14 w(type,type\))567 2298 y(and)g(atleast\(1,is)p 2786 45:816 2398 V 14 w(at,place\))567 2447 y(and)g(atleast\(1,located)p 2789 18:567 2597 y(and)g(atleast\(1,co)p 830 2597 V 15 w(produces\))567 2798 30:14 w(waste\))507 249 y(and)g(atleast\(1,co)p 770 249 V 15 w(produces)f(and)g 2805 51:w(of)p 713 578 V 14 w(type,type\))507 628 y(and)g(atleast\(1,is)p 2808 43:756 728 V 14 w(at,place\))507 778 y(and)g(atleast\(1,located)p 2819 43:(v\(contains\),product\))507 1356 y(and)g(atleast\(3,in)n(v\(contains\)\))507 2823 49:(range\(product\),)f(product\))507 1555 y(and)i(atleast\(3,trans\(in)n 2830 14:1854 y(and)g(atleast\(1,in)n(v\(uses)p 868 1854 V 14 w(up\)\))507 2838 43:(v\(contains\),product\))507 2383 y(and)g(atleast\(1,in)n(v\(contains\)\))507 2842 14:2582 y(and)i(atleast\(1,trans\(in)n(v\(directly)p 1020 2582 3111 9:(ything,atleast\(2,contains\))g(and)g(all\(contains,material\)])195 3447 11:1113 y FT(atleast)p FS(\(12,r\))g FT(and)g(all)p FS(\(r)n(,d\))g(?)p 3448 11:FM(<)g FT(atleast)p FS(\(12,s\).)502 1169 y(c1)421 b(?)p FM(<)12 3799 26:b(MANU)n(AL)195 199 y FG(atleast)1044 b(Concept)16 b(T)-5 b(erm)197 3802 4:FT(atleast)p FS(\()p FJ(h)p FQ(INTEGER)10 b FJ(i)p FS(,)p FJ(h)p 3804 10:b([)p Fl(atleast)q FK(\()p FM(n;)8 b FE(r)q FK(\)])-8 b(])789 3810 43:2 v 16 w(plant)10 b(:=)h(plant)g FT(and)h(atleast)p FS(\(1,product\))f 3812 12:b(4:)108 b(atleast)16 b FS(can)h(be)g(used)f(an)o(ywhere)i(in)e(ABox)g 3818 40:55 60 bop 1649 50 a FS(55)135 199 y FG(atleast)1235 b(Macr)o(o)137 3821 15:b FB(::=)g Fz(atleast)p FB(\()p Ff(h)p FC(INTEGER)7 b Ff(i)p 3823 60:Ff(i)p FB(\))137 590 y FT(Semantics:)93 b FK([)-8 b([)p Fl(atleast)q 3832 10:FT(and)h(atleast)p FS(\(2,contains,material\).)137 953 y FT(V)-5 3834 53:1073 y FT(Idiosyncrasy:)41 b FS(The)14 b(macro)g FT(atleast)p 3836 4:FT(atleast)p FS(\(n,)p FE(r)h FT(and)442 1130 y(range)p FS(\()p 3852 43:2 v 16 w(plant)10 b(:=)h(plant)g FT(and)h(atleast)p FS(\(1,product\))f 3857 24:y FT(See)h(also:)136 b(atleast)p FS(,)12 b FT(exactly)p eop 3878 56:FS(\()p FE(c)p FS(\)\))137 1251 y FT(See)g(also:)136 b(atleast)p 4021 10:FT(and)f(atleast)p FS(\(1,R\)\).)442 937 y FT(backmacr)o(o)p 4022 44:FS(\(min\(N,R\))6 b FJ(\003)15 b FK(=)c FT(atleast)p FS(\(N,R\)\).)137 4480 27:FS(\))612 1332 y FT(and)g(atleast)p FS(\(2,r\))612 1388 y FT(and)g(atmost)p 4530 24:1219 y(c5)i(:=)21 b FT(atleast)p FS(\(1,r1\).)502 1276 y(backretrie)o(v)o 4532 4:FT(atleast)p FS(\(1,r1\),)p FT(all)p FS(\(r1,p3\)])197 1453 4631 4:FT(atleast)p FS(\(n,r\))h FT(and)502 1174 y(atmost)p FS(\(n,r\).)50 4633 29:(xpanded)h(to)502 1230 y FT(atleast)p FS(\(n,r)12 b FT(and)g(range)p 4635 45:FS(\(c\)\).)197 1351 y FT(See)g(also:)136 b(atleast)p FS(,)12 4725 52:FS(z\).)502 1828 y(yes)502 1884 y(?-)g(x)f(?:)h FT(atleast)p 4728 16:FS(x)g(::)e FT(atleast)p FS(\(2,r\)\).)502 2166 y(ERR)n(OR)36 4729 6:b FT(atleast)p FS(\(2,r\))12 b(was)f(not)g(told)f(for)i(x)502 4816 46:FT(Example:)118 b(incoher)o(ent)p FS(\()p FT(atleast)p FS(\(2,r\))15 4818 55:FS(\(ener)o(gy)i FT(and)e FS(material\).)442 993 y FT(atleast)p 4978 10:FT(and)g(atleast)p FS(\(2,r\))623 1445 y FT(and)g FS(r)g(:)k(uc\(24\))623 5058 42:FE(c)h FS(:)p FM(<)f FT(anything)h(and)g(atleast)p FS(\(1,r\),)h(than)e 5127 10:937 y FT(atleast)p FS(\(2,r\))h FT(and)g(atmost)p FS(\(3,s\))g 5244 51:23 b(Thus)13 b(a)h(query)f FT(getall)p FS(\()p FT(atleast)p 5405 12:(into)e FT(atleast)p FS(\(1,)p FE(r)1472 1193 y FC(1)1502 1186 5490 22:(xpanded)h(into)f FT(atleast)p FS(\(1,)p FE(r)q FS(\).)42 b(The)502 5492 39:(internally)f(e)o(xpanded)i(into)f FT(atleast)p FS(\(1,)p FE(r)h 5494 37:b(all)p FS(,)11 b FT(no)p FS(,)h FT(atleast)p eop 5577 4:FT(atleast)p FS(\(12,s\),)p FT(atleast)p FS(\(12,r\))15 b FT(and)d(all)p 5577 32:FT(atleast)p FS(\(12,s\),)p FT(atleast)p FS(\(12,r\))15 b FT(and)d(all)p 6176 37:FJ(i)p FS(\))742 751 y FJ(j)50 b FT(atleast)p FS(\()p FJ(h)p 6253 14:FJ(j)49 b FT(atleast)p FS(\()p FJ(h)p FQ(INTEGER)9 b FJ(i)p 6283 27:y FS(\))23 b FJ(j)11 b FT(atleast)p FS(\(n,)p FE(r)q FS(,)p 6325 10:b([)p Fl(atleast)q FK(\()p FM(n;)8 b FE(r)q FM(;)g FE(c)p FK(\)])-8 File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\btl.pl 791 20:b5par_analyze_term(atleast(N,Role),Mode,(c,0),PN,Vartermin,Vartermout,Namesin,Namesout,FIin,FIout) :- 794 36: b5par_analyze_concept_term(atleast(N,Role),Mode,(c,0),PN,Vartermin,Vartermout,Namesin,Namesout,FIin,FIout). 918 28:b5par_analyze_concept_term(atleast(N,Role),Mode,(c,0),PN,Varterm,[atleast(N,Key)|Varterm],Namesin,Namesout,FIin,FIout) :- 918 67:b5par_analyze_concept_term(atleast(N,Role),Mode,(c,0),PN,Varterm,[atleast(N,Key)|Varterm],Namesin,Namesout,FIin,FIout) :- 1521 25:b5par_tt_send_conc_term(atleast(N,RoleKey),CPF,CPFnew) :- !, 1522 18: b5nf_add_atleast(CPF,N,RoleKey,CPFnew). 1819 21:b5par_at_parse_term(atleast(N,R),(c,0),VKT,[atleast(N,RK)|VKT],atleast(N,RDef),Namesin,Namesout,FIin,FIout) :- 1819 45:b5par_at_parse_term(atleast(N,R),(c,0),VKT,[atleast(N,RK)|VKT],atleast(N,RDef),Namesin,Namesout,FIin,FIout) :- 1819 64:b5par_at_parse_term(atleast(N,R),(c,0),VKT,[atleast(N,RK)|VKT],atleast(N,RDef),Namesin,Namesout,FIin,FIout) :- 5839 11:b5par_da3(atleast(N,Role),conc,Triple) :- 5842 43: Triple = wrong_argument(wrong_atleast_number(atleast(N,Role))) 5842 58: Triple = wrong_argument(wrong_atleast_number(atleast(N,Role))) 5847 26: Triple = compute(atleast(N,Role))-conc-term)). 6310 35:b5par_transform_term_to_key((c,0),atleast(N,R),Key) :- 6313 41: b5par_introduce_internal((c,0),[atleast(N,RKey)],Key,_). 6939 23:b5desc_desc_conc_atom(atleast(N,ROLE),atleast(N,RR)) :- 6939 39:b5desc_desc_conc_atom(atleast(N,ROLE),atleast(N,RR)) :- 7398 19: append(I,[atleast(Min,DR)],O). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tbox1.pl 1664 11:t5cpf_add_atleast(CPF1,Min,Role,CPF3) :- 1665 18: b5nf_add_atleast(CPF1,Min,Role,CPF3). 2320 37:t5res_atomize(RES,res(atmost(Max,R),atleast(Min,R),all(R,VR),Tail)) :- 4326 18: b5nf_add_atleast(NF,1,Role,NF1), 4332 18: b5nf_add_atleast(NF,1,Role,NF1), 4349 18: b5nf_add_atleast(NF,N,Role,NF1), 4354 18: b5nf_add_atleast(NF,1,Role,NF1), 4360 18: b5nf_add_atleast(NF,1,Role,NF1), 4969 10:b5nf_add_atleast(NF1,Min,Role,NF3) :- 4984 10:b5nf_add_atleast(NF1,Min,Role,NF3) :- File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tbox2.pl 2675 9:%% c := atleast(1,r) and all(r,c) --> c ?< atleast(1,r and range(c)) 2675 44:%% c := atleast(1,r) and all(r,c) --> c ?< atleast(1,r and range(c)) 2676 9:%% c := atleast(1,r) and d --> c ?< atleast(1,r and domain(d)) 2676 37:%% c := atleast(1,r) and d --> c ?< atleast(1,r and domain(d)) File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\cmk.abox 41 23: c3 := c and atleast(2, r), 43 39: c5 := c and all(s3, d2) and atleast(1,r), 82 19: father := atleast(1,child) and not(female), 83 19: mother := atleast(1,child) and female, 120 30: backtell(o3 :: c and atleast(1,r)), 129 31: \+ backask(c1_2obj ?: atleast(1,r)), 144 26: backask(cobj1 ?: atleast(1,r)), 221 30:%% up-propgation: ... C5obj:atleast(2,r) 291 16:%% Propagating atleast(2,r) via o2 to o1. 296 48: backtell(o1 :: c and all(cyc, all(cyc, atleast(2,r)))), 355 21:%% but c3 := c and atleast(2,r) => X isa nothing. 520 17: \+ x ?: atleast(1,r) noibox, 532 17: \+ z ?: atleast(1,inv(r)), 719 23: atleast(3,raeder,rad) and 720 23: atleast(1,aufbau,ladeflaeche), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\displaytest.pl 93 33: backretrieve([self] for atleast(1,r) and atmost(2,r) and all(r,conc1) and oneof([a,b,c,d,e])). 105 34: backretrieve([self] for [atleast(1,r) and atmost(2,r) and all(r,conc1) 179 41: backretrieve([self] for getall(atleast(1,r) and atmost(1,r) and all(r,conc1) and oneof([a,b,c,d,e,o]))). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\ibox_tests.pl 96 15: c1 := atleast(4,r1), 99 5: atleast(2,r1) => atmost(4,r2), 102 5: atleast(2,r1) ?< c2, 134 15: c1 := atleast(6,r) and atmost(7,r), 136 5: atleast(5,r) => atleast(10,r), 136 21: atleast(5,r) => atleast(10,r), 153 15: no := atleast(1,r) and atmost(0,r), 176 15: no := atleast(1,r) and atmost(0,r), 198 15: no := atleast(1,r) and atmost(0,r), 200 5: atleast(1,s) => atmost(0,s), 203 5: atleast(1,s) ?< no, 240 5: atleast(2,r) => atleast(5,s) and atmost(8,s), 240 25: atleast(2,r) => atleast(5,s) and atmost(8,s), 241 5: atleast(2,r) => atleast(3,s) and atmost(6,s), 241 25: atleast(2,r) => atleast(3,s) and atmost(6,s), 244 5: atleast(2,r) ?< atleast(5,s) and atmost(6,s), 244 21: atleast(2,r) ?< atleast(5,s) and atmost(6,s), 281 25: atmost(3,r) => atleast(4,s), 282 6: atleast(4,s) => atleast(6,t), 282 25: atleast(4,s) => atleast(6,t), 285 20: atmost(3,r) ?< atleast(4,s) and atleast(6,t), 285 37: atmost(3,r) ?< atleast(4,s) and atleast(6,t), 300 15: no := atleast(1,r) and atmost(0,r), 321 15: no := atleast(1,t) and atmost(0,t), 323 24: atmost(3,r) => atleast(4,s), 324 5: atleast(4,s) => atleast(4,r), 324 24: atleast(4,s) => atleast(4,r), 342 15: no := atleast(1,t) and atmost(0,t), 344 24: atmost(3,r) => atleast(4,s), 345 5: atleast(2,s) => atleast(4,r), 345 24: atleast(2,s) => atleast(4,r), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\jantest.abox 43 22: c1 := p1 and atleast(2,r4), 44 22: c2 := p1 and atleast(3,r4), 81 15: o3 :: atleast(1,r1), 97 15: o5 :: atleast(1,r3), 120 22: o7 ?: p1 and atleast(1,r2) noibox, 137 22: o9 ?: p1 and atleast(3,r2), %% ok 155 23: o13 ?: p1 and atleast(3,r2) noibox , %% ok File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\jantest.iabox 52 20: c1 := atleast(2,r1), 65 9: atleast(1,r1) => atmost(2,r2), 69 50: atmost(2,r4) and all(r1,p4) => all(r1, atleast(4,r2)). 90 43: o2 :: c1, %% c1 ::: atleast(2,r1) 92 42: o2 ?: atmost(2,r2), %% atleast(1,r1) => atmost(2,r2) 100 15: o3 :: atleast(1,r1), 101 39: o3 ?: atmost(2,r2), %% atleast(1,r1) => atmost(2,r2) 133 22: o7 ?: p1 and atleast(1,r1), 136 39: o7 ?: atmost(2,r2), %% atleast(1,r1) => atmost(2,r2) 144 50: o9 :: c1 and r1: (o8 :: p1), %% c1 ::: atleast(2,r1) 146 39: o9 ?: atmost(2,r2), %% atleast(1,r1) => atmost(2,r2) 174 16: o15 ?: atleast(2,r1) and all(r1,p3), 180 16: o13 ?: atleast(4,r2), %% atmost(2,r4) and all(r1,p4) 181 58: %% => all(r1, atleast(4,r2)). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\jantest.ibox-abox-rev 52 9: atleast(1,r) => p2, %% keep 2nd i-link when 1st is deleted 71 9: atleast(1,r) => p2, 90 15: c1 := atleast(1,r), 92 9: atleast(1,r) => p2, 135 9: atleast(1,r) => p3, 153 14: x ?: atleast(2,r), 169 14: z ?: atleast(3,r1), 181 9: atleast(1,r) => p2, File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\jantest.tbox 82 24: backtell(no := atleast(1,r2) and atmost(0,r2)), 87 31: backtell(c4 := c3 and atleast(1,r1)), 109 24: backtell(p1 :< atleast(1,r3)), 111 24: backtell(no := atleast(1,r2) and atmost(0,r2)), 116 31: backtell(c4 := c3 and atleast(1,r1)), 160 26: backtell( p1 :< atleast(1,r)), 161 26: backtell( p2 :< atleast(2,r)), 184 27: backtell( c1 := atleast(1,r) and atmost(3,r)), 185 27: backtell( c2 := atleast(2,r) and atmost(4,r)), 189 26: backask( subsumes(atleast(2,r) and atmost(3,r), c3)), 206 27: backtell( c1 := atleast(1,r) and atmost(2,r)), 207 27: backtell( c2 := atleast(3,r) and atmost(4,r)), 240 21:%% Propagation of atleast restrictions to superroles 249 27: backtell( c1 := atleast(1, r2)), 252 26: backask( subsumes(atleast(1,r1), c1)), 272 27: backtell( c1 := atleast(2, r4)), 277 26: backask( subsumes(atleast(2,r1), c1)), 296 27: backtell( no := atleast(1,r) and atmost(0,r)), 302 27: backtell( c1 := atleast(1,r3)), 321 27: backtell( p1 :< atleast(1,r1)), 329 27: backtell( c3 := atleast(1,r4)), 348 27: backtell( c1 := atleast(1,r1)), 353 27: backtell( c3 := atleast(1,r2)), %% --> disjoint(c3,c1) 374 27: backtell( c1 :< atleast(1,r)), 391 27: backtell( c1 := atleast(1,r1)), %% c1 < p1 393 27: backtell( c2 := atleast(1,r2)), %% c2 < c1 c1 < p1 721 27: backtell( c3 := atleast(2, r)), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\jantest.tbox-abox-rev 153 18: d := c and atleast(1,r), 175 18: d := c and atleast(1,r), 779 27: backretrieve(X=getall(atleast(1,hasAbnormalPart))), X == [[car1]], 797 25: abnormalCar := atleast(1,hasPart and range(all(temp, gt(50)))), 825 33: abnormalCar := atleast(1,hasAbnormalPart), 888 14: c := atleast(1,r), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\macro_tests.pl 6 19: backmacro(atleast5(R) *= atleast(5,R)), 6 34: backmacro(atleast5(R) *= atleast(5,R)), 7 45: backmacro(all1(R,C) *= all(R,C) and atleast(1,R)), 24 16: c11 ?< atleast(5,r), 48 16: c41 :< atleast5(r), 49 16: c41 ?< atleast(5,r), 51 16: c42 ?< atleast(1,r) and all(r,c), 52 23: c43 := all1(r,atleast5(r)), 53 22: c43 ?< all(r,atleast(3,r)), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\retrievaltest.pl 98 37: backretrieve(X = [self] for atleast(1,r) and atmost(2,r) and all(r,conc1) and oneof([a,b,c,d,e])), 114 38: backretrieve(X = [self] for [atleast(1,r) and atmost(2,r) and all(r,conc1) 209 45: backretrieve(X = [self] for getall(atleast(1,r) and atmost(1,r) and all(r,conc1) and oneof([a,b,c,d,e,o]))), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\revision_tests.pl 45 17: atl1 := atleast(3,r1), 106 17: atl1 ?< atleast(3,r3), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\role_tests.pl 150 26: \+ backask(o2 ?: atleast(1,r1domain)), 151 26: \+ backask(o1 ?: atleast(1,r12)), 174 24: backask(o04 ?: atleast(5,tr1)), 175 24: backask(o01 ?: atleast(4,inv(tr1))), 176 23: backask(o1 ?: atleast(3,tr1) and atleast(3,inv(tr1))), 176 42: backask(o1 ?: atleast(3,tr1) and atleast(3,inv(tr1))), 206 23: backask(o3 ?: atleast(3,c123)), 249 23: backask(o1 ?: atleast(3,tr1)), 250 26: \+ backask(o2 ?: atleast(1,tr1)), 251 23: backask(o2 ?: atleast(1,ir1)), 252 25: \+backask(o2 ?: atleast(2,ir1)), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\value_tests.pl 98 15: o1 ?: atleast(1,r1r2aset), 99 15: o4 ?: atleast(2,r1d_closed), 100 15: o4 ?: atleast(1,r1a1), 101 18: \+ o4 ?: atleast(2,r1a1), 102 15: o4 ?: atleast(1,r1aintersection1), 103 18: \+ o4 ?: atleast(2,r1aintersection1), 150 15: o1 ?: atleast(1,rnr), 151 15: o1 ?: atleast(1,rnr3), 152 15: o1 ?: atleast(1,rnr6), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\MaLARea\bin\NumberVars 1264 8396:��� ��륐��&���9T$��%�Í���'���L$ QhT��R�����T$����%���Ð�t&�� ���������������j�v�����É��j�T$R��R�������H�u1ҊT$ �Ѓ� ÍvS���\$K���t��� jK��������u��[Í�&VSP�\$K����t$t'� ��������������� 1ҊRK���F�����u�X[^Ít&VSQ�\$K����t$t'� ��������������� 1ҊRK���F�����u�Z[^Ít&S���\$���u��[Í���'�� %�PC��������u��Ӑ�t&VSS�t$�^����t��� j K��������u�� V�x���[^Ð�������������jP���������$���������Ív��'���T$h`� j����o�����ÍvS���\$ S�'���XZ��$�RS������� jSj�j����������t6�� h@N����Y���P�5����������Ę[Ð� ���� � �����Q�������ƐU��WV1�S������g��� �M��������������E�)���9�s�����E��)����9�r�� [^_]�U����]���������u�}���������)�����������u��J�]�u�}��]Ð������������U��S����^��^���t�v��'���Ћ���u�X[]�U��S�/����Ó����)�����[]� ( ~p : ~p) (! ~p : ~p) (? ~p : ~p) (~p != ~p) (~p & ~p) (~p <=> ~p) (~p => ~p) (~p | ~p) ~ (!$$number_vars/0_$aux1&) +++--.../home/urban/TPTPWorld.old1/ServiceTools/CompareClauses/NumberVars.pl:<=<=><~>==>?char_conversionend_of_filefxfynumber_varsonportraywrite_fofxfxfxxfy|~~&~=~|$use_all_pl_bips/home/spa/work/maint/gprolog/gprolog-1.2.18/src/src/BipsPl/all_pl_bips.pl$use_all_fd_bips/build/buildd/gprolog-1.2.18/src/src/BipsFD/all_fd_bips.pl ? $$exec_cmd_line_goal/1_$aux1$$exec_query/2_$aux1$$exec_query/2_$aux2$$read_query/2_$aux1$$reinit_after_exception/0_$aux1$$remove_underscore_vars/2_$aux1$$top_level2/0_$aux1$$top_level2/0_$aux2$$top_level2/0_$aux3$$top_level2/0_$aux4$$top_level2/0_$aux5$$write_indicator/0_$aux1$$write_indicator/0_$aux2$$write_solution/3_$aux1$VARNAME$all_solutions$break/0_$aux1$break/0_$aux2$cmd_line_entry_goal$cmd_line_query_goal$dbg_indicator$debug_mode$debug_next$exec_cmd1$exec_cmd_err$exec_cmd_line_entry_goals$exec_cmd_line_goal$exec_query$read_query$read_return$reinit_after_exception$remove_underscore_vars$set_query_vars_names$top_level1$top_level2$top_level_abort$top_level_exception$top_level_stop$user_prompt$write_indicator$write_solution$write_solution1(~d ms) /home/spa/work/maint/gprolog/gprolog-1.2.18/src/src/BipsPl/top_level.pl=>Action (; for next solution, a for all solutions, RET to stop) ? By Daniel Diaz_breakcommand-linedebugend_of_fileend_of_termeofexcludeexecution aborted~nffalseisnamevarsnonodebugnumbervarsprolog_copyrightprolog_nameprolog_versionquotedttop_leveltop_level_inputtop_level_outputtracetruevariable_namesyes{~a,~d}~n{~a}~n{~d}~n| ?- ~N~Nuncaught exception: ~Nwarning: command-line goal ~q caused exception: ~q~n~Nwarning: command-line goal ~q failed~n~N{Break Level ~d}~n~N{End Break}~n~N~a ~a~n~N~n~a.~n~a~n~ntrue~n~a = + spy this * spy conditionally~n - nospy this L listing~n @ command < set printdepth~n a abort b break~n g ancestors A alternatives~n n nodebug = debugging~n p print e exception~n r retry f fail~n s skip G goto~n u unify . father file~n w write d display~n ~a/~d~n h/? help W WAM debugger~n ? $$$debug_call/2_$aux1$$debug_call1/8_$aux1$$debug_call_port/5_$aux1$$debug_disp_alt1/3_$aux1$$debug_disp_alt1/3_$aux2$$debug_exec_cmd/6_$aux1$$debug_exec_cmd/6_$aux2$$debug_exec_cmd/6_$aux3$$debug_exec_cmd/6_$aux4$$debug_exec_cmd/6_$aux5$$debug_exec_cmd/6_$aux6$$debug_exec_cmd/6_$aux7$$debug_list_of_pred1/4_$aux1$$debug_list_of_pred1/4_$aux2$$debug_list_of_pred1/4_$aux3$$debug_port_ignore/4_$aux1$$debug_port_ignore/4_$aux2$$debug_port_ignore/4_$aux3$$debug_port_prompt/6_$aux1$$debug_spy_reset/1_$aux1$$debug_spy_set/2_$aux1$$debug_write_goal/4_$aux1$$spy_test_condition/3_$aux1$$spypoint_condition1/3_$aux1$catch_internal1$choice_point_arg$choice_point_info$debug_$debug_ball$debug_call$debug_call1$debug_call_port$debug_check_bip$debug_depth$debug_disp_alt$debug_disp_alt1$debug_disp_alt2$debug_disp_alternatives$debug_disp_alternatives1$debug_disp_anc_lst$debug_disp_anc_lst1$debug_disp_help$debug_end_call$debug_exception_port$debug_exec_cmd$debug_info$debug_is_debug_predicate$debug_is_not_leashed$debug_leash$debug_list_of_pred$debug_list_of_pred1$debug_mode$debug_next$debug_port$debug_port1$debug_port2$debug_port_ignore$debug_port_mask$debug_port_pretty$debug_port_prompt$debug_read_cmd$debug_read_integer$debug_skip$debug_spy_point$debug_spy_reset$debug_spy_set$debug_switch_off$debug_switch_on$debug_unify$debug_work$debug_write_goal$has_no_spy_point$has_spy_point$init_debugger$leash_make_mask$show_debugger_mode$show_debugger_mode1$show_leashing_info$show_leashing_info1$show_leashing_info2$show_spy_points$show_undefined_action$show_undefined_action1$spy_test_condition$spypoint_condition1$trail_handler*+,-.//home/spa/work/maint/gprolog/gprolog-1.2.18/src/src/BipsPl/debugger.pl<=?@AAll spypoints removedAlternatives:Ancestors:Call: Command: Debugging commands:~n~nException raised: ~q~nException: Exit: Fail: GGoal,Port,Test: Head: Inovcation nb: LNo leashingOption not applicable at this portPrint Depth: RET/c creep l leap ~nRedo: Spypoint placed onSpypoint removed fromSpypoints:The debugger is switched offThe debugger will first creep -- The debugger will first leap -- There is already a spypoint onThere is no spypoint onUndefined predicates will Unknown command (type h for help)Using leashing stopping at WWarning: The predicate ~a/~d is undefined~nWarning: spy ~a/~w - no matching predicate~nWarning: ~w - exception raised ~w~nWarning: ~w - goal failed~n] portsaanybbuilt_inbuilt_in_fdccallcallablecannot find any info on ~a/~d~nddebugdebugger_exec_cmddebugger_inputdebugger_outputdebuggingdisplay a warning message and faileerrorexceptionexitffailfalseformatfullghhalflleashleash_portsloosemax_aritymax_depthnnative code predicate ~a/~d~nnative_codeno file information for ~a/~d~nno_portnodebugnonenospynospyallnotracepquotedrraise an existence_errorredoretrysshowing everything (trace)showing spypoints (debug)skipspyspy_conditionalspypoint_conditionsystem predicatetighttracetrueuunknownwwam_debugwarning~N 1 choice-point for ~w~n~N ~a %4d %4d ~a~N~N--------------~n~a ~a/~d~n~a/~d defined in ~a:~d~n~c~a$use_fd_infos/build/buildd/gprolog-1.2.18/src/src/BipsFD/fd_infos.plfd_domfd_domainfd_has_extra_cstrfd_has_vectorfd_maxfd_max_integerfd_minfd_set_vector_maxfd_sizefd_use_vectorfd_vector_max$$fd_labeling/2_$aux1$$fd_labeling/2_$aux2$$get_labeling_options2/1_$aux1$$get_labeling_options2/1_$aux2$$get_labeling_options2/1_$aux3$backtracks$extra_cstr_alt$fd_domain$fd_labeling$fd_labeling1$fd_labeling_mth$fd_labeling_std$fd_sel_array_from_list$fd_sel_array_pick_var$get_labeling_options$get_labeling_options1$get_labeling_options2$indomain$indomain_limits_alt$indomain_max_alt$indomain_middle_alt$indomain_min_alt$indomain_random_alt$set_labeling_defaults$use_fd_values/build/buildd/gprolog-1.2.18/src/src/BipsFD/fd_values.plbacktracksfalsefd_domainfd_domain_boolfd_labelingfd_labeling_optionfd_labelingfffffirst_faillargestlimitsmaxmax_regretmiddleminmost_constrainedrandomreordersmalleststandardtruevalue_methodvariable_methodw���������0�"�i�v�������#<#<##=#=##=<#=<##>#>##>=#>=##\=#\=#$use_fd_math/build/buildd/gprolog-1.2.18/src/src/BipsFD/fd_math.pl####/\#<=>#==>#\#\/#\/\#\<=>#\==>#\\/$fd_cardinality$fd_cardinality1$truth_of$use_fd_bool+/build/buildd/gprolog-1.2.18/src/src/BipsFD/fd_bool.plfd_at_least_onefd_at_most_onefd_cardinalityfd_only_one#\#<=>#\<=>#==>#\==>#/\#\/\#\/#\\/#=#\=#<#>=#>#=<#=##\=##<##>=##>##=<###/'p(')�)@*�*+l+�+$use_fd_prime/build/buildd/gprolog-1.2.18/src/src/BipsFD/fd_prime.plfd_not_primefd_prime$create_column$fd_element$fd_relationc1$lines_to_columns$use_fd_symbolic/build/buildd/gprolog-1.2.18/src/src/BipsFD/fd_symbolic.plfd_all_differentfd_atleastfd_atmostfd_elementfd_element_varfd_exactlyfd_relationfd_relationc$cur_max$cur_min$fd_maximize/2_$aux1$fd_minimize/2_$aux1$use_fd_optim/build/buildd/gprolog-1.2.18/src/src/BipsFD/fd_optim.plfd_maximizefd_minimizeistrue���������k�`�  5 �i���0h��H���,j**minmaxdist//quot_remfd_prime_c.cWarning: Vector too small - maybe lost solutions (FD Var:_%d) 2171 16724:5O A abi-note.S../sysdeps/i386/elf/start.Sinit.cinitfini.c/build/buildd/glibc-2.3.6/build-tree/i386-libc/csu/crti.Scall_gmon_startcrtstuff.c__CTOR_LIST____DTOR_LIST____JCR_LIST__p.0completed.1__do_global_dtors_auxframe_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_aux/build/buildd/glibc-2.3.6/build-tree/i386-libc/csu/crtn.Sobj_begin.cfailLpred1_3Lpred1_1stLpred1_2Lpred1_sub_0Lpred1_14Lpred1_sub_1Lpred1_16Lpred1_18Lpred1_5Lpred1_4fntaLpred1_7Lpred1_6Lpred1_9Lpred1_8Lpred1_11Lpred1_10Lpred1_13Lpred1_12Lpred1_15Lpred1_17Lpred1_19Lpred1_20Lpred4_1directive_1directive_2directive_3directive_4directive_5directive_6directive_7directive_8directive_9directive_10directive_11directive_12directive_13directive_14directive_15directive_16directive_17directive_18directive_19directive_20Object_InitializerSystem_DirectivesUser_Directivesatobj_chain_startobj_chain_stopLpred3_1Lpred10_1Lpred12_1Lpred13_1Lpred14_1Lpred15_1Lpred16_1Lpred17_1Lpred18_1Lpred18_2Lpred19_1Lpred20_2Lpred20_1Lpred20_4Lpred20_3Lpred20_6Lpred20_5Lpred20_7Lpred21_1Lpred22_1Lpred24_1Lpred25_1Lpred27_2Lpred27_3Lpred27_1Lpred27_sub_0Lpred27_5Lpred27_7Lpred27_4Lpred27_6Lpred28_1Lpred29_1Lpred30_1Lpred31_1Lpred31_2Lpred31_4Lpred31_3Lpred33_10Lpred33_2Lpred33_1Lpred33_5Lwork0Lpred33_3Lpred33_9Lpred33_7Lpred33_4Lpred33_6Lpred33_8Lpred34_1Lpred36_1ensure_linkedLpred10_2Lpred10_4Lpred10_3Lpred10_6Lpred10_5Lpred10_7Lpred12_13Lpred12_3Lpred12_2Lpred12_5Lpred12_4Lpred12_7Lpred12_6Lpred12_9Lpred12_8Lpred12_11Lpred12_10Lpred12_12Lpred12_14Lpred13_2Lpred13_4Lpred13_3Lpred18_4Lpred18_3Lpred18_6Lpred18_5Lpred18_8Lpred18_7Lpred18_10Lpred18_9Lpred18_11Lpred21_2Lpred23_1Lpred26_1Lpred29_2Lpred29_4Lpred29_3Lpred32_1Lpred35_1Lpred36_8Lpred36_2Lpred36_3Lpred36_5Lpred36_7Lpred36_4Lpred36_6Lpred36_9Lpred37_1Lpred37_2Lpred37_3Lpred38_1Lpred39_1Lpred39_2Lpred40_1Lpred41_23Lpred41_3Lpred41_1Lpred41_2Lpred41_5Lpred41_4Lpred41_7Lpred41_6Lpred41_9Lpred41_8Lpred41_11Lpred41_10Lpred41_13Lpred41_12Lpred41_15Lpred41_14Lpred41_17Lpred41_16Lpred41_19Lpred41_18Lpred41_21Lpred41_20Lpred41_22Lpred42_1Lpred42_2Lpred42_4Lpred42_3Lpred43_1Lpred43_2Lpred44_1Lpred46_1Lpred47_1Lpred50_1Lpred51_1Lpred52_4Lpred52_1Lpred52_3Lpred52_2Lpred52_sub_0Lpred52_7Lpred52_9Lpred52_6Lpred52_5Lpred52_8Lpred52_10Lpred52_12Lpred52_11Lpred52_14Lpred52_13Lpred52_15Lpred53_1Lpred54_1Lpred55_1Lpred57_1Lpred60_1Lpred60_66Lpred60_6Lpred60_2Lpred60_3Lpred60_sub_0Lpred60_11Lpred60_13Lpred60_4Lpred60_sub_1Lpred60_17Lpred60_19Lpred60_5Lpred60_sub_2Lpred60_21Lpred60_23Lpred60_8Lpred60_7Lpred60_10Lpred60_9Lpred60_12Lpred60_14Lpred60_16Lpred60_15Lpred60_18Lpred60_20Lpred60_22Lpred60_24Lpred60_26Lpred60_25Lpred60_28Lpred60_27Lpred60_30Lpred60_29Lpred60_32Lpred60_31Lpred60_34Lpred60_33Lpred60_36Lpred60_35Lpred60_38Lpred60_37Lpred60_40Lpred60_39Lpred60_42Lpred60_41Lpred60_44Lpred60_43Lpred60_46Lpred60_45Lpred60_48Lpred60_47Lpred60_50Lpred60_49Lpred60_52Lpred60_51Lpred60_54Lpred60_53Lpred60_56Lpred60_55Lpred60_58Lpred60_57Lpred60_60Lpred60_59Lpred60_62Lpred60_61Lpred60_64Lpred60_63Lpred60_65Lpred61_1Lpred62_1Lpred63_1Lpred64_1Lpred65_1Lpred66_1Lpred67_2Lpred67_1Lpred67_4Lpred67_3Lpred67_6Lpred67_5Lpred67_7Lpred69_1Lpred70_2Lpred70_1Lpred70_4Lpred70_3Lpred70_6Lpred70_5Lpred70_8Lpred70_7Lpred70_10Lpred70_9Lpred70_12Lpred70_11Lpred70_13Lpred72_1Lpred72_2Lpred72_4Lpred72_3Lpred74_1Lpred74_2Lpred74_4Lpred74_3Lpred75_1Lpred76_1Lpred76_2Lpred76_8Lpred76_4Lpred76_3Lpred76_6Lpred76_5Lpred76_7Lpred76_9Lpred77_1Lpred78_1Lpred81_1Lpred11_1Lpred14_2Lpred14_4Lpred14_3Lpred15_11Lpred15_3Lpred15_2Lpred15_5Lpred15_4Lpred15_7Lpred15_6Lpred15_9Lpred15_8Lpred15_10Lpred16_2Lpred16_4Lpred16_3Lpred16_5Lpred17_2Lpred17_4Lpred17_3Lpred17_6Lpred17_5Lpred17_8Lpred17_7Lpred17_10Lpred17_9Lpred17_11Lpred18_12Lpred18_14Lpred18_13Lpred18_16Lpred18_15Lpred18_17Indomain_MinIndomain_MaxIndomain_MiddleIndomain_LimitsIndomain_RandomCmp_First_FailCmp_Most_ConstrainedCmp_SmallestCmp_LargestCmp_Max_Regretfd_domain_bloc_1fd_domain_r_bloc_1x_plus_c_eq_y_bloc_1x_plus_c_eq_y_bloc_2x_plus_c_eq_y_F_bloc_1x_plus_c_eq_y_F_bloc_2x_plus_c_neq_y_bloc_1x_plus_c_neq_y_bloc_2x_plus_c_lte_y_bloc_1x_plus_c_lte_y_bloc_2x_plus_c_gte_y_bloc_1x_plus_c_gte_y_bloc_2ax_eq_y_bloc_1ax_eq_y_bloc_2x_plus_y_eq_z_bloc_1x_plus_y_eq_z_bloc_2x_plus_y_eq_z_bloc_3ax_plus_y_eq_z_bloc_1ax_plus_y_eq_z_bloc_2ax_plus_y_eq_z_bloc_3ax_plus_by_eq_z_bloc_1ax_plus_by_eq_z_bloc_2ax_plus_by_eq_z_bloc_3x_plus_y_plus_z_eq_t_bloc_1x_plus_y_plus_z_eq_t_bloc_2x_plus_y_plus_z_eq_t_bloc_3x_plus_y_plus_z_eq_t_bloc_4ax_plus_y_plus_z_eq_t_bloc_1ax_plus_y_plus_z_eq_t_bloc_2ax_plus_y_plus_z_eq_t_bloc_3ax_plus_y_plus_z_eq_t_bloc_4ax_plus_by_plus_z_eq_t_bloc_1ax_plus_by_plus_z_eq_t_bloc_2ax_plus_by_plus_z_eq_t_bloc_3ax_plus_by_plus_z_eq_t_bloc_4ax_eq_y_F_bloc_1ax_eq_y_F_bloc_2x_plus_y_eq_z_F_bloc_1x_plus_y_eq_z_F_bloc_2x_plus_y_eq_z_F_bloc_3ax_plus_y_eq_z_F_bloc_1ax_plus_y_eq_z_F_bloc_2ax_plus_y_eq_z_F_bloc_3ax_plus_by_eq_z_F_bloc_1ax_plus_by_eq_z_F_bloc_2ax_plus_by_eq_z_F_bloc_3x_plus_y_plus_z_eq_t_F_bloc_1x_plus_y_plus_z_eq_t_F_bloc_2x_plus_y_plus_z_eq_t_F_bloc_3x_plus_y_plus_z_eq_t_F_bloc_4ax_plus_y_plus_z_eq_t_F_bloc_1ax_plus_y_plus_z_eq_t_F_bloc_2ax_plus_y_plus_z_eq_t_F_bloc_3ax_plus_y_plus_z_eq_t_F_bloc_4ax_plus_by_plus_z_eq_t_F_bloc_1ax_plus_by_plus_z_eq_t_F_bloc_2ax_plus_by_plus_z_eq_t_F_bloc_3ax_plus_by_plus_z_eq_t_F_bloc_4a_power_n_eq_y_bloc_1a_power_n_eq_y_bloc_2x_power_a_eq_y_bloc_1x_power_a_eq_y_bloc_2xy_eq_z_bloc_1xy_eq_z_bloc_2xy_eq_z_bloc_3a_power_n_eq_y_F_bloc_1a_power_n_eq_y_F_bloc_2x_power_a_eq_y_F_bloc_1x_power_a_eq_y_F_bloc_2xy_eq_z_F_bloc_1xy_eq_z_F_switch_1_instmin_x_y_eq_z_bloc_1min_x_y_eq_z_bloc_2min_x_y_eq_z_bloc_3min_x_y_eq_z_bloc_4min_x_y_eq_z_bloc_5min_x_y_eq_z_switch_1_instmin_x_a_eq_z_bloc_1min_x_a_eq_z_bloc_2min_x_a_eq_z_bloc_3min_x_a_eq_z_bloc_4min_x_a_eq_z_switch_1min_x_a_eq_z_case_group_1min_x_y_eq_z_F_bloc_1min_x_y_eq_z_F_bloc_2min_x_y_eq_z_F_bloc_3min_x_y_eq_z_F_bloc_4min_x_y_eq_z_F_bloc_5min_x_y_eq_z_F_switch_1_instmin_x_a_eq_z_F_bloc_1min_x_a_eq_z_F_bloc_2min_x_a_eq_z_F_bloc_3min_x_a_eq_z_F_bloc_4min_x_a_eq_z_F_switch_1min_x_a_eq_z_F_case_group_1max_x_y_eq_z_bloc_1max_x_y_eq_z_bloc_2max_x_y_eq_z_bloc_3max_x_y_eq_z_bloc_4max_x_y_eq_z_bloc_5max_x_y_eq_z_switch_1_instmax_x_a_eq_z_bloc_1max_x_a_eq_z_bloc_2max_x_a_eq_z_bloc_3max_x_a_eq_z_bloc_4max_x_a_eq_z_switch_1max_x_a_eq_z_case_group_1max_x_y_eq_z_F_bloc_1max_x_y_eq_z_F_bloc_2max_x_y_eq_z_F_bloc_3max_x_y_eq_z_F_bloc_4max_x_y_eq_z_F_bloc_5max_x_y_eq_z_F_switch_1_instmax_x_a_eq_z_F_bloc_1max_x_a_eq_z_F_bloc_2max_x_a_eq_z_F_bloc_3max_x_a_eq_z_F_bloc_4max_x_a_eq_z_F_switch_1max_x_a_eq_z_F_case_group_1abs_x_minus_y_eq_z_bloc_1abs_x_minus_y_eq_z_bloc_2abs_x_minus_y_eq_z_bloc_3abs_x_minus_y_eq_z_switch_1_instabs_x_minus_a_eq_z_bloc_1abs_x_minus_a_eq_z_bloc_2abs_x_minus_a_eq_z_switch_1abs_x_minus_a_eq_z_case_group_2abs_x_minus_a_eq_z_case_group_1abs_x_minus_y_eq_z_F_bloc_1abs_x_minus_y_eq_z_F_bloc_2abs_x_minus_y_eq_z_F_bloc_3abs_x_minus_y_eq_z_F_switch_1_instabs_x_minus_a_eq_z_F_bloc_1abs_x_minus_a_eq_z_F_bloc_2abs_x_minus_a_eq_z_F_switch_1abs_x_minus_a_eq_z_F_case_group_2abs_x_minus_a_eq_z_F_case_group_1quot_rem_x_y_r_eq_z_bloc_1quot_rem_x_y_r_eq_z_bloc_2quot_rem_x_y_r_eq_z_bloc_3quot_rem_x_y_r_eq_z_bloc_4quot_rem_x_y_r_eq_z_bloc_5quot_rem_x_y_r_eq_z_bloc_6quot_rem_x_y_r_eq_z_bloc_7quot_rem_x_y_r_eq_z_switch_1quot_rem_x_y_r_eq_z_bloc_8_instquot_rem_a_y_r_eq_z_bloc_1quot_rem_a_y_r_eq_z_bloc_2quot_rem_a_y_r_eq_z_bloc_3quot_rem_a_y_r_eq_z_bloc_4quot_rem_a_y_r_eq_z_bloc_5quot_rem_a_y_r_eq_z_switch_1quot_rem_a_y_r_eq_z_bloc_6_instquot_rem_x_a_r_eq_z_bloc_1quot_rem_x_a_r_eq_z_bloc_2quot_rem_x_a_r_eq_z_bloc_3quot_rem_x_a_r_eq_z_bloc_4quot_rem_x_a_r_eq_z_bloc_5quot_rem_x_y_r_eq_z_F_bloc_1quot_rem_x_y_r_eq_z_F_bloc_2quot_rem_x_y_r_eq_z_F_bloc_3quot_rem_x_y_r_eq_z_F_bloc_4quot_rem_x_y_r_eq_z_F_bloc_5quot_rem_x_y_r_eq_z_F_bloc_6quot_rem_x_y_r_eq_z_F_bloc_7quot_rem_x_y_r_eq_z_F_switch_1quot_rem_x_y_r_eq_z_F_bloc_8_instquot_rem_a_y_r_eq_z_F_bloc_1quot_rem_a_y_r_eq_z_F_bloc_2quot_rem_a_y_r_eq_z_F_bloc_3quot_rem_a_y_r_eq_z_F_bloc_4quot_rem_a_y_r_eq_z_F_bloc_5quot_rem_a_y_r_eq_z_F_switch_1quot_rem_a_y_r_eq_z_F_bloc_6_instquot_rem_x_a_r_eq_z_F_bloc_1quot_rem_x_a_r_eq_z_F_bloc_2quot_rem_x_a_r_eq_z_F_bloc_3quot_rem_x_a_r_eq_z_F_bloc_4quot_rem_x_a_r_eq_z_F_bloc_5x_eq_y_bloc_1x_eq_y_bloc_2x_eq_y_F_bloc_1x_eq_y_F_bloc_2x_neq_y_bloc_1_instx_neq_y_bloc_2_instx_lt_y_bloc_1x_lt_y_bloc_2x_lte_c_bloc_1x_lte_y_bloc_1x_lte_y_bloc_2x_gte_c_bloc_1zero_power_n_eq_y_bloc_1zero_power_n_eq_y_bloc_2x2_eq_y_bloc_1x2_eq_y_bloc_2x2_eq_y_F_bloc_1x2_eq_y_F_bloc_2x_neq_y_bloc_1x_neq_y_bloc_2xy_eq_z_F_switch_1min_x_y_eq_z_switch_1min_x_y_eq_z_case_group_2min_x_y_eq_z_case_group_1min_x_a_eq_z_bloc_5min_x_a_eq_z_bloc_6min_x_y_eq_z_F_switch_1min_x_a_eq_z_F_bloc_5min_x_a_eq_z_F_bloc_6max_x_y_eq_z_switch_1max_x_y_eq_z_case_group_2max_x_y_eq_z_case_group_1max_x_a_eq_z_bloc_5max_x_a_eq_z_bloc_6max_x_y_eq_z_F_switch_1max_x_a_eq_z_F_bloc_5max_x_a_eq_z_F_bloc_6abs_x_minus_y_eq_z_switch_1abs_x_minus_y_eq_z_case_group_2abs_x_minus_y_eq_z_case_group_1abs_x_minus_a_eq_z_bloc_3abs_x_minus_a_eq_z_bloc_4abs_x_minus_a_eq_z_bloc_5abs_x_minus_a_eq_z_bloc_6abs_x_minus_y_eq_z_F_switch_1abs_x_minus_y_eq_z_F_case_group_2abs_x_minus_y_eq_z_F_case_group_1abs_x_minus_a_eq_z_F_bloc_3abs_x_minus_a_eq_z_F_bloc_4abs_x_minus_a_eq_z_F_bloc_5abs_x_minus_a_eq_z_F_bloc_6quot_rem_x_y_r_eq_z_bloc_8quot_rem_a_y_r_eq_z_bloc_6quot_rem_x_y_r_eq_z_F_bloc_8quot_rem_a_y_r_eq_z_F_bloc_6xy_eq_z_F_case_group_1xy_eq_z_F_bloc_5xy_eq_z_F_bloc_6min_x_y_eq_z_bloc_6min_x_y_eq_z_bloc_7min_x_y_eq_z_bloc_8min_x_y_eq_z_bloc_9min_x_y_eq_z_F_case_group_1min_x_y_eq_z_F_case_group_2max_x_y_eq_z_bloc_6max_x_y_eq_z_bloc_7max_x_y_eq_z_bloc_8max_x_y_eq_z_bloc_9max_x_y_eq_z_F_case_group_1max_x_y_eq_z_F_case_group_2abs_x_minus_y_eq_z_bloc_4abs_x_minus_y_eq_z_bloc_5abs_x_minus_y_eq_z_bloc_6abs_x_minus_y_eq_z_bloc_7abs_x_minus_y_eq_z_bloc_8abs_x_minus_y_eq_z_bloc_9abs_x_minus_y_eq_z_F_bloc_4abs_x_minus_y_eq_z_F_bloc_5abs_x_minus_y_eq_z_F_bloc_6abs_x_minus_y_eq_z_F_bloc_7abs_x_minus_y_eq_z_F_bloc_8abs_x_minus_y_eq_z_F_bloc_9xy_eq_z_F_bloc_2xy_eq_z_F_bloc_3xy_eq_z_F_bloc_4min_x_y_eq_z_F_bloc_6min_x_y_eq_z_F_bloc_7min_x_y_eq_z_F_bloc_8min_x_y_eq_z_F_bloc_9max_x_y_eq_z_F_bloc_6max_x_y_eq_z_F_bloc_7max_x_y_eq_z_F_bloc_8max_x_y_eq_z_F_bloc_9Fd_Bool_Initializerbool_tblbool_xorSet_Notfunc_tblSet_EquivSet_NequivSet_ImplySet_NimplySet_AndSet_NandSet_OrSet_NorSet_EqSet_NeqSet_LtSet_LteSet_ZeroSet_Onestackspvars_tblvars_spSimplifyLoad_Bool_Into_WordAdd_Fd_VariablesSet_Varx_equiv_y_eq_b_bloc_1x_equiv_y_eq_b_bloc_2x_equiv_y_eq_b_bloc_3x_nequiv_y_eq_b_bloc_1x_nequiv_y_eq_b_bloc_2x_nequiv_y_eq_b_bloc_3x_imply_y_eq_b_bloc_1x_imply_y_eq_b_bloc_2x_imply_y_eq_b_bloc_3x_nimply_y_eq_b_bloc_1x_nimply_y_eq_b_bloc_2x_nimply_y_eq_b_bloc_3x_and_y_eq_b_bloc_1x_and_y_eq_b_bloc_2x_and_y_eq_b_bloc_3x_nand_y_eq_b_bloc_1x_nand_y_eq_b_bloc_2x_nand_y_eq_b_bloc_3x_or_y_eq_b_bloc_1x_or_y_eq_b_bloc_2x_or_y_eq_b_bloc_3x_nor_y_eq_b_bloc_1x_nor_y_eq_b_bloc_2x_nor_y_eq_b_bloc_3truth_x_eq_c_switch_1_insttruth_x_eq_y_switch_1_insttruth_x_plus_c_eq_y_switch_1_insttruth_x_eq_c_F_switch_1_insttruth_x_eq_y_F_switch_1_insttruth_x_plus_c_eq_y_F_switch_1_insttruth_x_neq_c_switch_1_insttruth_x_neq_y_switch_1_insttruth_x_plus_c_neq_y_switch_1_insttruth_x_neq_c_F_switch_1_insttruth_x_neq_y_F_switch_1_insttruth_x_plus_c_neq_y_F_switch_1_insttruth_x_lt_y_switch_1_insttruth_x_lte_c_switch_1_insttruth_x_lte_y_switch_1_insttruth_x_plus_c_lte_y_switch_1_insttruth_x_gte_c_switch_1_insttruth_x_plus_c_gte_y_switch_1_instnot_x_eq_b_bloc_1_instnot_x_eq_b_bloc_2_instx_imply_y_eq_1_bloc_1x_imply_y_eq_1_bloc_2x_and_y_eq_0_bloc_1x_and_y_eq_0_bloc_2x_or_y_eq_1_bloc_1x_or_y_eq_1_bloc_2not_x_eq_b_bloc_1not_x_eq_b_bloc_2truth_x_eq_c_switch_1truth_x_eq_y_switch_1truth_x_plus_c_eq_y_switch_1truth_x_eq_c_F_switch_1truth_x_eq_y_F_switch_1truth_x_plus_c_eq_y_F_switch_1truth_x_neq_c_switch_1truth_x_neq_y_switch_1truth_x_plus_c_neq_y_switch_1truth_x_neq_c_F_switch_1truth_x_neq_y_F_switch_1truth_x_plus_c_neq_y_F_switch_1truth_x_lt_y_switch_1truth_x_lte_c_switch_1truth_x_lte_y_switch_1truth_x_plus_c_lte_y_switch_1truth_x_gte_c_switch_1truth_x_plus_c_gte_y_switch_1truth_x_eq_c_bloc_3truth_x_eq_c_bloc_4truth_x_eq_c_bloc_2truth_x_eq_c_bloc_1truth_x_eq_y_bloc_5truth_x_eq_y_bloc_6truth_x_eq_y_case_group_2truth_x_eq_y_case_group_1truth_x_plus_c_eq_y_bloc_5truth_x_plus_c_eq_y_bloc_6truth_x_plus_c_eq_y_case_group_2truth_x_plus_c_eq_y_case_group_1truth_x_eq_c_F_bloc_4truth_x_eq_c_F_bloc_3truth_x_eq_c_F_bloc_2truth_x_eq_c_F_bloc_1truth_x_eq_y_F_bloc_6truth_x_eq_y_F_bloc_5truth_x_eq_y_F_case_group_2truth_x_eq_y_F_case_group_1truth_x_plus_c_eq_y_F_bloc_6truth_x_plus_c_eq_y_F_bloc_5truth_x_plus_c_eq_y_F_case_group_2truth_x_plus_c_eq_y_F_case_group_1truth_x_neq_c_bloc_4truth_x_neq_c_bloc_3truth_x_neq_c_bloc_2truth_x_neq_c_bloc_1truth_x_neq_y_bloc_6truth_x_neq_y_bloc_5truth_x_neq_y_case_group_2truth_x_neq_y_case_group_1truth_x_plus_c_neq_y_bloc_6truth_x_plus_c_neq_y_bloc_5truth_x_plus_c_neq_y_case_group_2truth_x_plus_c_neq_y_case_group_1truth_x_neq_c_F_bloc_4truth_x_neq_c_F_bloc_3truth_x_neq_c_F_bloc_2truth_x_neq_c_F_bloc_1truth_x_neq_y_F_bloc_6truth_x_neq_y_F_bloc_5truth_x_neq_y_F_case_group_2truth_x_neq_y_F_case_group_1truth_x_plus_c_neq_y_F_bloc_6truth_x_plus_c_neq_y_F_bloc_5truth_x_plus_c_neq_y_F_case_group_2truth_x_plus_c_neq_y_F_case_group_1truth_x_lt_y_bloc_6truth_x_lt_y_bloc_5truth_x_lt_y_case_group_2truth_x_lt_y_case_group_1truth_x_lte_c_bloc_4truth_x_lte_c_bloc_3truth_x_lte_c_bloc_2truth_x_lte_c_bloc_1truth_x_lte_y_bloc_6truth_x_lte_y_bloc_5truth_x_lte_y_case_group_2truth_x_lte_y_case_group_1truth_x_plus_c_lte_y_bloc_6truth_x_plus_c_lte_y_bloc_5truth_x_plus_c_lte_y_case_group_2truth_x_plus_c_lte_y_case_group_1truth_x_gte_c_bloc_4truth_x_gte_c_bloc_3truth_x_gte_c_bloc_2truth_x_gte_c_bloc_1truth_x_plus_c_gte_y_bloc_6truth_x_plus_c_gte_y_bloc_5truth_x_plus_c_gte_y_case_group_2truth_x_plus_c_gte_y_case_group_1truth_x_eq_y_bloc_1_insttruth_x_eq_y_bloc_2_insttruth_x_eq_y_bloc_3truth_x_eq_y_bloc_4truth_x_plus_c_eq_y_bloc_1_insttruth_x_plus_c_eq_y_bloc_2_insttruth_x_plus_c_eq_y_bloc_3truth_x_plus_c_eq_y_bloc_4truth_x_eq_y_F_bloc_1_insttruth_x_eq_y_F_bloc_2_insttruth_x_eq_y_F_bloc_3truth_x_eq_y_F_bloc_4truth_x_plus_c_eq_y_F_bloc_1_insttruth_x_plus_c_eq_y_F_bloc_2_insttruth_x_plus_c_eq_y_F_bloc_3truth_x_plus_c_eq_y_F_bloc_4truth_x_neq_y_bloc_1truth_x_neq_y_bloc_2truth_x_neq_y_bloc_3_insttruth_x_neq_y_bloc_4_insttruth_x_plus_c_neq_y_bloc_1truth_x_plus_c_neq_y_bloc_2truth_x_plus_c_neq_y_bloc_3_insttruth_x_plus_c_neq_y_bloc_4_insttruth_x_neq_y_F_bloc_1truth_x_neq_y_F_bloc_2truth_x_neq_y_F_bloc_3_insttruth_x_neq_y_F_bloc_4_insttruth_x_plus_c_neq_y_F_bloc_1truth_x_plus_c_neq_y_F_bloc_2truth_x_plus_c_neq_y_F_bloc_3_insttruth_x_plus_c_neq_y_F_bloc_4_insttruth_x_lt_y_bloc_1truth_x_lt_y_bloc_2truth_x_lt_y_bloc_3truth_x_lt_y_bloc_4truth_x_lte_y_bloc_1truth_x_lte_y_bloc_2truth_x_lte_y_bloc_3truth_x_lte_y_bloc_4truth_x_plus_c_lte_y_bloc_1truth_x_plus_c_lte_y_bloc_2truth_x_plus_c_lte_y_bloc_3truth_x_plus_c_lte_y_bloc_4truth_x_plus_c_gte_y_bloc_1truth_x_plus_c_gte_y_bloc_2truth_x_plus_c_gte_y_bloc_3truth_x_plus_c_gte_y_bloc_4truth_x_eq_y_bloc_1truth_x_eq_y_bloc_2truth_x_plus_c_eq_y_bloc_1truth_x_plus_c_eq_y_bloc_2truth_x_eq_y_F_bloc_1truth_x_eq_y_F_bloc_2truth_x_plus_c_eq_y_F_bloc_1truth_x_plus_c_eq_y_F_bloc_2truth_x_neq_y_bloc_3truth_x_neq_y_bloc_4truth_x_plus_c_neq_y_bloc_3truth_x_plus_c_neq_y_bloc_4truth_x_neq_y_F_bloc_3truth_x_neq_y_F_bloc_4truth_x_plus_c_neq_y_F_bloc_3truth_x_plus_c_neq_y_F_bloc_4prime_x_bloc_1not_prime_x_bloc_1Lpred11_2Lpred11_4Lpred11_3Fd_All_Different_Recfd_element_bloc_1fd_element_bloc_2fd_element_bloc_3fd_element_var_bloc_1fd_element_var_bloc_2fd_element_var_bloc_3fd_element_var_bloc_4fd_atmost_bloc_1_instfd_atleast_bloc_1_instfd_exactly_bloc_1_instfd_atmost_bloc_1fd_atleast_bloc_1fd_exactly_bloc_1Lpred5_1Math_Supp_Initializerdelay_cstr_stackdelay_spLoad_Delay_Cstr_PartNormalizearith_tblsortLoad_Term_Into_WordLoad_PolyLoad_Poly_RecLoad_Left_Right_RecCompar_Monomtxp.0Find_Expon_Generalprime_vec_sizeCompute_Prime_Rangeprime_rangenot_prime_rangealways_datenever_dateAll_Propagationsdummy_fd_varbuff.0nb_bits_in_byte.1unify_x_y_bloc_1unify_x_y_bloc_2Error_Supp_Initializerlast_err_filec_bip_func_strc_bip_aritycur_bip_funccur_bip_aritylast_err_collast_err_linelast_err_msgInit_Stream_Suppstatic_str_stream_rdstatic_str_stream_wrtty_ptrstream_1atom_constant_term_streamword_current_input_streamword_current_output_streamTTY_GetcTTY_ClearerrFind_Free_Streamtty_linedit_depth.0tty_bufftty_first_buffStr_Stream_GetcStr_Stream_Putch.1Lpred2_1Lpred3_9Lpred3_3Lpred3_2Lpred3_5Lpred3_4Lpred3_7Lpred3_6Lpred3_8Lpred5_2Lpred6_1Lpred7_1Lpred8_1Lpred8_6Lpred8_2Lpred8_3Lpred8_5Lpred8_4Lpred9_1Lpred9_2Lpred7_2Clause_Altlast_clauseRetract_AltLpred9_4Lpred9_3Lpred10_13Lpred10_9Lpred10_8Lpred10_11Lpred10_10Lpred10_12Lpred11_5Lpred15_19Lpred15_13Lpred15_12Lpred15_15Lpred15_14Lpred15_17Lpred15_16Lpred15_18Lpred19_2Lpred19_4Lpred19_3Lpred19_5Lpred21_4Lpred21_3Lpred21_5Lpred4_2Lpred4_4Lpred4_3Oper_Initializeratom_specif_tblDetect_Oper_SpecifLpred10_24Lpred10_14Lpred10_16Lpred10_15Lpred10_18Lpred10_17Lpred10_20Lpred10_19Lpred10_22Lpred10_21Lpred10_23Lpred11_7Lpred11_6Lpred11_9Lpred11_8Lpred11_11Lpred11_10Lpred11_13Lpred11_12Lpred11_15Lpred11_14Lpred11_17Lpred11_16Lpred11_19Lpred11_18Lpred11_21Lpred11_20Lpred11_22Lpred23_18Lpred23_4Lpred23_2Lpred23_3Lpred23_6Lpred23_5Lpred23_8Lpred23_7Lpred23_10Lpred23_9Lpred23_12Lpred23_11Lpred23_14Lpred23_13Lpred23_16Lpred23_15Lpred23_17Lpred24_3Lpred24_2Lpred24_5Lpred24_4Lpred24_7Lpred24_6Lpred24_9Lpred24_8Lpred24_11Lpred24_10Lpred24_13Lpred24_12Lpred24_15Lpred24_14Lpred24_16Create_Malloc_AtomCompute_Next_BLAString_To_NumberLpred13_21Lpred13_5Lpred13_7Lpred13_6Lpred13_9Lpred13_8Lpred13_11Lpred13_10Lpred13_13Lpred13_12Lpred13_15Lpred13_14Lpred13_17Lpred13_16Lpred13_19Lpred13_18Lpred13_20Call_With_ArgsFlag_Initializeratom_flag_tblatom_downatom_toward_zeroatom_onatom_offatom_erroratom_warningatom_failatom_charsatom_codesatom_atomatom_chars_no_escapeatom_codes_no_escapeatom_atom_no_escapeatom_prologUnif_Flagcv.0Arith_InitializerLoad_Math_Expressionfix_bug.0G_Var_InitializerG_Assign_ArrayG_Alloc_ArrayG_Assign_ElementG_Free_ElementG_Copy_ElementGet_Target_From_SelectorGet_Target_From_GvarGet_Int_From_WordGet_Term_Addr_From_TargetGet_Int_Addr_From_Gvarg_targetatom_g_arrayG_Trail_For_BacktrackG_UntrailG_Read_Elementatom_g_array_autoatom_g_array_extendg_var_tblAll_Solut_InitializerdummysolExistential_Variablesexist_2Bound_Varkey_var_ptrHandle_Key_Variablessave_key_var_ptrnext_key_var_ptrLink_Key_VarGroupbound_var_ptrFree_Varnew_gen_wordfree_var_baseSort_InitializerMerge_SortKeysort_Cmpminus_2Lpred2_2Lpred2_4Lpred2_3Lpred7_4Lpred7_3Lpred9_sub_0Lpred9_5Lpred9_7Lpred9_6Lpred15_sub_0Lpred23_sub_0Lpred25_2Lpred25_3Lpred25_sub_0Lpred25_5Lpred25_7Lpred25_4Lpred25_6Lpred5_21Lpred5_3Lpred5_5Lpred5_4Lpred5_7Lpred5_6Lpred5_9Lpred5_8Lpred5_11Lpred5_10Lpred5_13Lpred5_12Lpred5_15Lpred5_14Lpred5_17Lpred5_16Lpred5_19Lpred5_18Lpred5_20Lpred6_3Lpred6_2Lpred6_5Lpred6_4Lpred6_7Lpred6_6Lpred6_9Lpred6_8Lpred6_11Lpred6_10Lpred6_13Lpred6_12Lpred6_15Lpred6_14Lpred6_16last_user_timelast_system_timelast_cpu_timelast_real_timen.0Stack_SizeLpred21_6Lpred21_7Lpred22_2Lpred22_4Lpred22_3Lpred22_6Lpred22_5Lpred22_7Lpred26_2Lpred26_4Lpred26_3Lpred32_2Lpred38_2Lpred38_4Lpred38_3Lpred38_5Lpred44_2Lpred44_4Lpred44_3Lpred44_6Lpred44_5Lpred44_7Lpred45_1Lpred53_28Lpred53_4Lpred53_2Lpred53_3Lpred53_6Lpred53_5Lpred53_8Lpred53_7Lpred53_10Lpred53_9Lpred53_12Lpred53_11Lpred53_14Lpred53_13Lpred53_16Lpred53_15Lpred53_18Lpred53_17Lpred53_20Lpred53_19Lpred53_22Lpred53_21Lpred53_24Lpred53_23Lpred53_26Lpred53_25Lpred53_27Lpred54_3Lpred54_2Lpred54_5Lpred54_4Lpred54_7Lpred54_6Lpred54_9Lpred54_8Lpred54_11Lpred54_10Lpred54_13Lpred54_12Lpred54_15Lpred54_14Lpred54_17Lpred54_16Lpred54_19Lpred54_18Lpred54_21Lpred54_20Lpred54_23Lpred54_22Lpred54_25Lpred54_24Lpred54_26Lpred58_1Lpred2_11Lpred2_sub_0Lpred2_8Lpred2_5Lpred2_7Lpred2_6Lpred2_9Lpred2_10Lpred2_12FormatArg_AtomArg_IntegerArg_FloatRead_ArgLpred14_6Lpred14_5Lpred14_8Lpred14_7Lpred14_10Lpred14_9Lpred14_12Lpred14_11Lpred14_14Lpred14_13Lpred14_16Lpred14_15Lpred14_17Os_Interf_Initializeratom_dtatom_readatom_writeatom_executeatom_searchatom_regularatom_directoryatom_fifoatom_socketatom_character_deviceatom_block_deviceatom_unknowntsignb_sigGet_Path_NameFlag_Of_PermissionDate_Time_To_Prologatom_host_name.0Select_Init_SetSelect_Init_Ready_ListExpand_Initializerdcg_2topopt_term_unifDcg_HeadDcg_Bodyatom_clauseDcg_Body_On_StackDcg_Term_List_On_StackDcg_Compound2atom_phraseatom_ifLpred30_2Lpred30_4Lpred30_3Pretty_InitializerCheck_Structureprec.0Show_BodyStart_Lineequal_2atom_dollar_varnamenb_to_tryCollect_Excluded_RecVar_Name_To_Var_NumberExclude_A_Var_NumberBind_Variabledollar_var_1dollar_varname_1Portray_ClauseCollect_Singletonsingl_var_ptrnb_singl_varatom_dcgatom_dollar_varCtrl_C_ManagerDebug_Initializerenvir_namechoice_nametrail_tag_namepstm_ipstm_odbg_jumperDebugger_Signal_HandlerScan_CommandFind_Functionnb_read_argread_argcmd.0Write_Data_ModifyWhereWhatDereferenceEnvironmentBacktrackHelpRead_Bank_Adrreg_copyPrint_Bank_Name_OffsetPrint_Wam_WordModify_Wam_WordRead_An_IntegerDetect_StackDetect_Pred_From_CodeMy_System_DirectivesLpred8_14Lpred8_8Lpred8_7Lpred8_10Lpred8_9Lpred8_12Lpred8_11Lpred8_13Lpred28_2Lpred28_4Lpred28_3Lpred28_6Lpred28_5Lpred28_8Lpred28_7Lpred28_10Lpred28_9Lpred28_12Lpred28_11Lpred28_14Lpred28_13Lpred28_16Lpred28_15Lpred28_17Lpred32_4Lpred32_3Lpred32_6Lpred32_5Lpred32_8Lpred32_7Lpred32_10Lpred32_9Lpred32_12Lpred32_11Lpred32_14Lpred32_13Lpred32_15Lpred56_1Lpred58_8Lpred58_2Lpred58_4Lpred58_3Lpred58_6Lpred58_5Lpred58_7Lpred61_7Lpred61_3Lpred61_2Lpred61_sub_0Lpred61_4Lpred61_6Lpred61_5sr_tblsr_tbl_sizesr_last_usedcur_srGet_DescriptorCommon_CleanExec_One_DirectiveUndo_DirectivesClose_Current_ModuleWrite_LocationSocket_Initializeratom_AF_UNIXatom_AF_INETCreate_Socket_Streamsend_varsvarsCopy_Term_Recbase_copytop_varsParse_Supp_Initializerjumpertok_presentbuff_save_machine_regsParse_TermParse_ErrorLookup_In_Dico_VarCreate_StructureParse_Args_Of_FunctorParse_Bracketed_TermParse_Listatom_varatom_stringatom_back_quotesatom_punctatom_full_stopatom_extendWrite_Supp_Initializerlast_prefix_opShow_TermShow_Global_Varignore_opShow_List_ArgShow_StructureShow_AtomShow_FloatShow_Fd_VariableShow_IntegerTry_Portrayatom_dotsquotedspace_argsname_varsnumber_varscurly_brackets_1try_portray_code.1portrayedOut_Charerase_stampfirst_dyn_with_erasesize_of_erasedAdd_To_2ChainIndex_From_First_ArgAlloc_Init_Dyn_InfoUnlink_ClauseFree_ClauseGet_Scan_Choice_PointScan_Dynamic_Pred_NextClean_Erased_Clausessave_call_infoByte_Code_Initializerop_tblCompar_Inst_Code_Opnb_opbc_nb_blockbcatom_dynamicatom_publicatom_built_inatom_built_in_fdcaller_aritycaller_funcbc_spBC_Arg_X_Or_YBC_Arg_Func_Aritydebug_callBC_Emulate_Pred_AltBC_Emulate_Clauseglob_funcglob_dynBC_Emulate_Byte_CodePrep_Debug_Callerr_msgcc_origc_typeScan_QuotedScan_NumberScan_Quoted_Charobj_end.cstart_user_timestart_system_timestart_real_timecur_seedpage_sizeSIGSEGV_Handlerbuff.1cur_work_dir.2msg.3buff.4arg.0nb_arg.1value.2letters.3arg.4Hash_Locatenb_objobj_tblnb_user_directivesinit_buff_regsheap_actual_startCall_Prolog_FailCall_Prolog_SuccessCall_Nextp_buff_savep_jumpercont_jmpCheck_If_Var_Occurshash_weight_tblhash_inv_tblstr_charLocate_AtomHash_Stringgen_sym_buffFd_Solver_Missingseparatorsins_modeclipboardhist_starthist_endcomp_startprompt_lengthglobal_strTab_To_SpacesHistory_Add_Lineglobal_posglobal_endDisplay_HelpNew_CharCompletion_Print_AllSkipCompletion_Do_Matchcomp_last_matchcomp_first_matchHistory_Update_LineHistory_Get_Linehist_tblIs_A_Separatorctrl_c_ret_valcomp_nb_matchcomp_match_max_lgcomp_cur_matchuse_guiuse_ansifd_infd_outinitialized.0le_hook_present.1Parse_Env_VarChoose_Fd_OutLE_Get_Char0BackdForwdDisplEraseDispl_Strposnb_colsold_stty_inold_stty_outis_tty_inis_tty_outinterrupt_keynew_stty_outnb_rowsnew_stty_infrom_callbackret_valWrapper_Handlerctrl_c_handlerinside_ctrl_c_DYNAMIC__fini_array_end__fini_array_start__init_array_end_GLOBAL_OFFSET_TABLE___init_array_startX736B6970_1Fct_ShrX6765745F63686172_2Fd_Eq_2X24696E646F6D61696E5F6C696D6974735F616C74_0stm_debugger_inputWrite_1Wait_2Nth_Root_UpX72656E616D655F66696C65_2Remove_Stream_Mirror_2X2473686F775F6C65617368696E675F696E666F31_1X247573655F6F706572_0domain_socket_addressfd_domainX636861725F636F6465_2X242473725F74726561745F7465726D2F325F2461757832_4Write_Pl_State_FileX756E6765745F636F6465_2Vector_Sub_VectorFull_Coeff_Power_VarWrite_Canonical_To_Chars_2Math_Fast_Load_ValueX757365725F74696D65_1evluation_int_overflowFd_Tell_Int_RangeX2424636865636B5F73747265616D5F6F725F7661722F325F2461757831_1Fd_Reset_SolverX247573655F657870616E64_0X246C696E65735F746F5F636F6C756D6E73_2Read_Token_1Copy_Term_2X666F726D6174_3X246765745F7072656469636174655F66696C655F696E666F_3X24247265696E69745F61667465725F657863657074696F6E2F305F2461757831_0max_x_a_eq_z_FPrint_2atom_curly_bracketsFd_Lt_2quot_rem_x_y_r_eq_z_FX2463757272656E745F6F705F616C74_0X63616C6C5F776974685F61726773_10Os_Version_1Blt_Fd_VarRd_Number_CheckPut_Atom_TaggedInit_OperAdd_Stream_For_Stdio_DescX74656C6C_1X233C_2X6F6E6365_1X777269746571_2Fd_Element_V_To_Xipred_tblx_nand_y_eq_bX24636F6E73756C7431_1X247365745F73725F64656661756C7473_0Vector_Mod_ValueX242464656275675F63616C6C312F385F2461757831_3Blt_G_Dec_2Un_TermX235C5C3D23_2X2464656275675F69735F6E6F745F6C656173686564_1usleep@@GLIBC_2.0BC_Start_Emit_0mkdir@@GLIBC_2.0X6E6F6465627567_0Read_1Blt_Fast_GtX61746F6D5F70726F7065727479_2Blt_Ltefd_reset_solverttyname@@GLIBC_2.0X247465726D5F746F5F676F616C31_2Current_Predicate_Alt_0x2_eq_y_FX61746F6D5F6C656E677468_2cos@@GLIBC_2.0Fct_MinInit_PredX247465726D5F746F5F676F616C_3X6C6F7765725F7570706572_2X2424706F72747261795F636C617573652F325F2461757832_1X2464656275675F706F72745F6D61736B_2X66756E63746F72_3X6D656D626572_2Create_OperInit_Machine1Install_Ctrl_C_HandlerX7365745F6F7574707574_1type_listSwitch_On_Term_Var_AtmX6E65775F61746F6D_2Call_With_Args_4X2466645F73656C5F61727261795F66726F6D5F6C697374_2Mk_AtomVector_Next_BeforeX2464656275675F646973705F616C7465726E61746976657331_2SR_Get_File_Name_2Fct_AbsSys_Var_Dec_1X24657865632F355F2461757831_1Full_Var_Power_CoeffFd_Variable_Size0X247365746172675F696E5F6C6173745F666F756E64_2CutX73725F77726974655F6572726F72_6X2473725F64697265637469766531_2domain_not_less_than_zeroLE_Initializeexistence_source_sinkLoad_Call_Info_Arg_1X2463616C6C31_2X246C697374696E675F616C6C_1X73725F6765745F73747265616D_2X24246765745F726561645F6F7074696F6E73322F315F2461757831_1Read_Term_5File_Prop_Date_2def_trail_sizerename@@GLIBC_2.0X235C5C2F5C5C_2Put_Structure_TaggedX247573655F7772697465_0X242473746F72655F736F6C7574696F6E732F345F2461757831_3X24636F6E73756C7433_2Set_Predicate_File_Info_3Write_Term_2X726561645F746F6B656E_1Vector_ComplFd_Tell_Not_ValueOs_ErrorX2464656275675F7370795F7265736574_1Set_Debug_Call_Code_0X77726974655F746F5F61746F6D_2Aux_Name_1Exec_5atom_appenddomain_term_stream_or_aliasX2464656275675F6C6973745F6F665F70726564_2X756E6765745F62797465_1Mk_CharsX246765745F726561645F6F7074696F6E7331_1Check_For_Un_Compoundax_plus_by_eq_zDelete_Choice_Point1Unget_Char_1fd_unify_with_fd_varatom_falsenot_prime_xX247573655F736F636B657473_0LE_Compl_Add_WordVector_Add_VectorBlt_Fast_Ltx_lte_cInit_MachineTest_Alias_Not_Assigned_1X68616C74_1X66645F6D696E696D697A65_2X2466645F6D696E696D697A652F325F2461757831_5X246765745F6C6162656C696E675F6F7074696F6E7332_1X66645F616C6C5F646966666572656E74_1vsprintf@@GLIBC_2.0strchr@@GLIBC_2.0Fd_Unify_With_Fd_Var0Blt_UnivX756E6765745F636F6465_1truth_x_plus_c_lte_yX2424706F72747261795F636C617573652F325F2461757831_1Create_Atom_TaggedX63616C6C5F776974685F61726773_2X2472656D6F76655F756E64657273636F72655F76617273_2X646562756767696E67_0Rd_In_CharX756E6765745F63686172_1Fd_Variable_To_String0Unget_Code_2Blt_G_Readx_eq_y_FStream_PutsRd_Codes_StrX24246765745F726561645F6F7074696F6E73322F315F2461757832_1X24706C5F6572725F726570726573656E746174696F6E_1X6C6173745F726561645F73746172745F6C696E655F636F6C756D6E_2X24706C5F6572725F73796E746178_1X7075745F636F6465_1Range_Nb_ElemNth_Root_DnCurrent_Atom_Alt_0Pred_Prop_Public_1Atom_Property_6fdopen@@GLIBC_2.1Stream_PutcX6E6F737079_1X66645F6F6E6C795F6F6E65_1Unget_Char_2System_Time_1X233E23_2Name_Singleton_Vars_1X246765745F726561645F6F7074696F6E73_4X2463616C6C5F696E7465726E616C31_2X246C6F61645F70726564_2X706F72747261795F636C61757365_1Read_AtomX242477726974655F696E64696361746F722F305F2461757831_2Blt_Compoundpermission_type_past_end_of_streamSys_Var_Inc_1SR_Get_Stm_For_Read_Term_1X2477726974655F736F6C7574696F6E_3X24627265616B2F305F2461757831_1Write_Canonical_2Open_Output_Term_Stream_1Rd_Proper_ListStatistics_Global_Stack_2Get_Char_1alias_tblCurrent_Bip_Name_2Halt_1X2473747265616D5F70726F70657274792F325F2461757831_3Blt_G_Reset_BitX24247370795F746573745F636F6E646974696F6E2F335F2461757831_2X73725F7365745F6572726F725F636F756E74657273_3atan@@GLIBC_2.0X246C6F61645F66696C65_1Fct_Fast_SignX3D3A3D_2X737061776E_3X247365745F746F705F6C6576656C5F73747265616D73_2X7065656B5F62797465_1X7065656B5F636F6465_1Retractall_If_Empty_Head_1type_byteevluation_zero_divisorFind_Linked_ObjectsRead_Integer_1x_imply_y_eq_bDelete_Choice_Point3X726561645F7465726D_2X24706C5F6572725F696E7374616E74696174696F6E_0fd_init_solverX666F726D61745F746F5F61746F6D_3X66645F6C6162656C696E676666_1reg_tblM_Real_TimeFd_Unify_With_Integer0X72657665727365_2SR_Write_Message_8X746162_1atom_debugger_outputX247573655F66645F6F7074696D_0Malloc_CheckNth_Root_ExactX246765745F6C696E656469745F70726F6D7074_1X6E6F6E5F67656E657269635F766172_1X2424636F6E73756C74322F315F2461757831_2X24696E646F6D61696E5F72616E646F6D5F616C74_0getpid@@GLIBC_2.0X666F726D61745F746F5F636F646573_3X246D696E5F6C69737431_3Blt_NumberFatal_ErrorRange_Test_Null_InterRd_String_CheckOpen_Input_Term_Stream_2X246765745F636C6F73655F6F7074696F6E73_1Nl_1Rd_FloatFork_Prolog_1X2463617463685F696E7465726E616C31_5X2424636865636B5F686561642F315F2461757831_1X2463757272656E745F6D6972726F72_2X247573655F73746174_0__ctype_tolower_loc@@GLIBC_2.3domain_stream_positionCreate_Choice_Point3X2464656275675F63616C6C_2X246164645F636C617573655F7465726D_1init_stream_suppRange_ComplSR_Init_Open_2X242464656275675F657865635F636D642F365F2461757833_2Read_Number_1Un_In_CodeVector_UnionLE_Get_Current_WordX2473725F63757272656E745F64657363726970746F725F616C74_0atom_bofWrite_Term_To_Atom_2X66645F646F6D61696E_3X246D656D6265722F325F2461757831_3X66645F656C656D656E745F766172_3Put_NilX66645F6D6178_2Switch_On_Term_Var_StcX7365745F73747265616D5F6C696E655F636F6C756D6E_3X675F696E63_1Fct_Truncatelast_writingMath_Load_Valuele_hook_exit_processSet_Seed_1Hash_Alloc_TableX2463616C6C_4X66645F72656C6174696F6E_2X6F70656E5F696E7075745F636F6465735F73747265616D_2X247365745F73747265616D5F627566666572696E672F325F2461757831_1Stream_CloseFct_Fast_Ortype_fd_evaluablePut_X_VariableX247468726F77_4X24696E646F6D61696E5F6D61785F616C74_0X247365745F7072656469636174655F66696C655F696E666F_3stm_last_usedatom_streamX246765745F77726974655F6F7074696F6E73_1x_equiv_y_eq_brepresentation_min_integerFd_Stop_ConstraintX66645F63617264696E616C697479_2X736F7274_1Reset_PrologUn_Boolean_Checktype_evaluableRange_From_VectorX2472657472616374_2domain_stream_propertyRd_In_CodeRange_Div_ValueFct_Fast_DecSys_Var_Get_Bit_3X776F726B696E675F6469726563746F7279_1Blt_G_AssignbM_Create_Shell_CommandRead_Token_From_Atom_2Un_Code_CheckX6C696E655F636F756E74_2X72616E646F6D_3Argument_List_1write@@GLIBC_2.0X2424636F6E73756C74322F315F2461757832_2localtime@@GLIBC_2.0Scan_Peek_CharX2462635F656D756C6174655F636F6E74_0Flush_Output_1Update_Water_MarkFct_SignX24246765745F77726974655F6F7074696F6E73322F315F2461757833_1Pred_Prop_User_1X2464656275675F726561645F636D64_1X242466645F6C6162656C696E672F325F2461757832_1Exit_With_Exceptionfileno@@GLIBC_2.0X403E3D_2Set_Stream_Eof_Action_2Statistics_Trail_Stack_2Op_3X66645F6D6178696D697A65_2X5C5C3D3D_2SR_Get_Position_3X7365745F73747265616D5F627566666572696E67_2X6370755F74696D65_1X2424636865636B5F6F776E65725F66696C65732F335F2461757831_6strcmp@@GLIBC_2.0X6F70656E5F6F75747075745F61746F6D5F73747265616D_1Choice_Point_Info_4Fd_ExactlySet_Stream_Buffering_2stm_tblCurrent_Stream_1representation_character_codeX24657870616E645F7465726D31_2X726561645F66726F6D5F61746F6D_2base_fdX24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757831_1use_le_promptFd_Prolog_To_ValueSwitch_On_Term_Var_Atm_LstX666F72_3X246361746368_6X2473725F6765745F666F726D61745F617267735F6572726F72_6last_output_soraStore_Solution_1close@@GLIBC_2.0asin@@GLIBC_2.0Range_Mul_ValueFd_Check_For_Bool_Varx_plus_c_lte_yFd_Math_Unify_X_YX2466645F6C6162656C696E675F737464_2Fd_Tell_Interv_IntervStream_Getc_fp_hwPeek_Char_2fd_domain_rRead_Term_From_Codes_5byte_codeFd_Sel_Array_From_List_2X24246765745F73725F6F7074696F6E73322F315F2461757832_1Unify_IntegerCheck_Stream_TypeX246861735F6E6F5F7370795F706F696E74_1X246C6F61645F6469726563746976655F657863657074696F6E_3Fd_Element_V_To_IX6E756D6265725F6368617273_2Fd_Element_Var_V_To_IX66645F61746C65617374_3Read_IntegerFd_Element_I_To_VX242464656275675F6C6973745F6F665F70726564312F345F2461757831_4Rd_Chars_Checkatom_lineX242464656275675F657865635F636D642F365F2461757836_1X6E616D655F73696E676C65746F6E5F76617273_1X73725F6765745F6D6F64756C65_3Rd_In_Char_CheckX246765745F6F70656E5F6F7074696F6E7332_1X73756D5F6C697374_2permission_type_streamSleep_1X247573655F675F7661725F696E6C_0SR_Current_Descriptor_1X2463757272656E745F7072656469636174655F616E79_1fprintf@@GLIBC_2.0X2473725F6572726F725F66726F6D5F657863657074696F6E_2fork@@GLIBC_2.0M_TempnamX246765745F73725F6F7074696F6E7331_1Unify_Structure_TaggedFct_Fast_NegDelete_Choice_Point4Father_Pred_Of_Auxgetenv@@GLIBC_2.0M_Random_FloatX63757272656E745F61746F6D_1X6765745F73656564_1X6B6579736F7274_1signal@@GLIBC_2.0X6765745F6C696E656469745F70726F6D7074_1Fd_New_Variablefmod@@GLIBC_2.0Range_Becomes_SparseRd_Float_CheckFct_Fast_IncX2464656275675F7370795F736574_2fd_variable_to_stringX246765745F636C6F73655F6F7074696F6E7332_1Atom_Length_2Fd_Use_Vectorfflush@@GLIBC_2.0X247573655F636F6E73756C74_0Stream_Prop_Type_2domain_g_argument_selectorBlt_G_Inc_2X247365745F71756572795F766172735F6E616D6573_2pclose@@GLIBC_2.1SR_Get_Error_Counters_3X2473725F726561645F7465726D2F345F2461757832_2Display_To_Atom_2Range_Mul_RangeX2473725F6E65775F706173732F315F2461757831_1Write_SimpleRead_Atom_2X233D3C23_2Fct_CeilingX7075745F62797465_2X6C697374696E67_1Call_Info_Bip_Name_1X247573655F666C6167_0X24247468726F775F696E7465726E616C2F325F2461757831_2X247573655F747970655F696E6C_0Blt_G_LinkMk_In_CharX403C_2Get_Predicate_File_Info_3Bind_Variables_4Fd_Before_Add_CstrGet_Pred_Indic_3Range_Next_Beforequot_rem_x_a_r_eq_z_FFct_AddFd_Element_IX247573655F63616C6C_0mallopt@@GLIBC_2.0X24746F705F6C6576656C31_0ax_plus_by_eq_z_FX686F73745F6E616D65_1Pl_Err_Instantiationunlink@@GLIBC_2.0Pred_Prop_Built_In_Fd_1Decompose_File_Name_4Fd_Init_Solver0M_Cmd_Line_To_Argvdomain_source_sinkX63757272656E745F707265646963617465_1Un_AtomFd_Init_SolverX617267756D656E745F636F756E746572_1X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757832_1Current_Stream_Alt_0X247365745F73747265616D5F747970652F325F2461757832_2X66645F72656C6174696F6E63_2Arith_Eval_2Fd_Prolog_To_Fd_Vargetrusage@@GLIBC_2.0Delete_File_1X636F6D70617265_3Name_2Mk_ListRd_CodeAtom_Concat_Alt_0X2462635F656D6974_1X24246765745F6F70656E5F6F7074696F6E73322F315F2461757835_1X24636865636B5F61746F6D5F6F725F61746F6D5F6C69737431_1X247573655F63616C6C5F61726773_0X6173736572747A_1X247573655F66696C65_0Current_Alias_2X246C6F616432_1Stream_Prop_Buffering_2X242464656275675F6C6973745F6F665F70726564312F345F2461757832_5Update_Choice_Point3X2473725F6572726F725F66726F6D5F657863657074696F6E2F325F2461757831_1Set_Stream_Position_2Un_Byte_CheckX3D3D_2Retract_2fd_exactlyle_initializeX66645F7573655F766563746F72_1X68616C74_0X6765745F6B6579_1X77726974655F63616E6F6E6963616C5F746F5F61746F6D_2X247365656E2F305F2461757831_1X2467726F75705F736F6C7574696F6E73_3X24246765745F73725F6F7074696F6E73322F315F2461757833_1X73725F6E65775F70617373_1X6F735F76657273696F6E_1BC_Start_Pred_7X24246C6F6164322F315F2461757832_2Check_For_Un_BooleanX247265696E69745F61667465725F657863657074696F6E_0permission_operation_openLast_Read_Start_Line_Column_2Mk_VariableX24737079706F696E745F636F6E646974696F6E31_3x_imply_y_eq_1X63616C6C5F776974685F61726773_5Stream_UngetcUn_Float_CheckMk_In_ByteStream_Position_2Writeq_1Remove_One_Choice_Point_1select@@GLIBC_2.0type_fd_variableVector_From_IntervalX756E6765745F62797465_2X247573655F66645F6D617468_0X24247465726D5F746F5F676F616C322F325F2461757831_3Line_Position_2X7465726D5F726566_2Mk_NumberLower_Upper_2x_plus_y_plus_z_eq_t_FPred_Without_AuxX235C5C_1query_exceptionX24246C6F61645F66696C652F315F2461757831_3Pl_Err_SyntaxX6D616B655F6469726563746F7279_1Remove_Predicate_2wmark_countX72657472616374_1X77726974655F746F5F6368617273_2domain_socket_domainBlt_G_Dec_3x_and_y_eq_bUn_IntegerSqrt_UpAllocateX24696E646F6D61696E_2File_Permission_2vsnprintf@@GLIBC_2.0X24246765745F77726974655F6F7074696F6E73322F315F2461757834_1X246765745F6C6162656C696E675F6F7074696F6E7331_1strerror@@GLIBC_2.0X707574_1Execute_DirectiveCpu_Time_1Term_Math_LoadingBC_Emit_Inst_1Check_For_Un_NumberFct_Fast_Shr__dso_handleStream_Get_PositionCheck_For_Un_AtomRd_Code_Checkrepresentation_max_integerX247573655F66645F696E666F73_0Set_Linedit_Prompt_1Stream_Prop_Input_1x_plus_y_eq_z_FGlobal_Push_FloatHash_DeletePut_Integer_TaggedCall_With_Args_3SR_Current_Descriptor_Alt_0X636C6F73655F696E7075745F636F6465735F73747265616D_1Fd_New_Bool_VariableX706F72747261795F636C61757365_2Call_With_Args_9truth_x_gte_cBlt_G_Decobase_flX246164645F6D6972726F72735F746F5F73747265616D_2X2472656D6F76655F707265646963617465_2X63757272656E745F636861725F636F6E76657273696F6E_2mmap@@GLIBC_2.0X24636865636B5F61746F6D5F70726F70_1X6E6F737079616C6C_0Check_For_Un_VariableUnify_Occurs_Check__libc_csu_finiX2461746F6D5F636F6E6361745F616C74_0Fd_After_Add_CstrSet_Prolog_Flag_2Reassign_AliasCheck_For_Un_CharX61746F6D5F636F6E636174_3X24706C5F6572725F646F6D61696E_2Call_PrologX2473747265616D5F706F736974696F6E_2Get_Key_2X246765742F315F2461757831_2tcsetattr@@GLIBC_2.0Add_Stream_For_Stdio_Filepermission_type_flagobj_chain_beginArgument_Counter_1Pred_Prop_Prolog_Line_2Sys_Var_Write_2X2474656C6C2F315F2461757831_2Blt_Generic_VarFct_Fast_NotPut_Unsafe_Valuesetlocale@@GLIBC_2.0wmarkX2466645F6C6162656C696E6731_4query_top_bX66645F6861735F65787472615F63737472_1X2473725F7365745F74726561745F706173735F62697473_3X73656C656374_3Extend_Table_If_NeededX242464656275675F706F72745F70726F6D70742F365F2461757831_5X70726F6C6F675F706964_1X2467726F75705F736F6C7574696F6E735F616C74_0X6469726563746F72795F66696C6573_2X2464656275675F646973705F616C74_2X242464656275675F657865635F636D642F365F2461757835_3X61745F656E645F6F665F73747265616D_0X2473686F775F7370795F706F696E7473_0Fct_ShlX24746F705F6C6576656C5F657863657074696F6E_1Hash_Realloc_Tabledomain_operator_priorityX686F73746E616D655F61646472657373_2Fd_New_Int_VariableFree_Variables_4X2473686F775F64656275676765725F6D6F646531_1X247365745F73747265616D5F627566666572696E672F325F2461757832_2Fd_Neq_2X676574_1representation_in_character_codeProlog_File_Name_2X2473746174_3Fd_Add_Dependencybuff_signal_regtruth_x_neq_y_FUn_Compound_CheckX73725F77726974655F6D657373616765_8X242473725F74726561745F7465726D2F325F2461757833_2Un_Atom_CheckTerm_Write_Str_StreamX2466645F63617264696E616C69747931_2Make_Stream_Tagged_WordX246661746865725F6F665F6175785F6E616D65_3Scan_Choice_Point_PredWrite_2X7365745F6269705F6E616D65_2X2464656275675F646973705F616C7431_3Fct_Float_DivX242463617463685F73796E635F666F725F6661696C5F61742F315F2461757831_2X247573655F7072696E74_0unify_x_y__errno_location@@GLIBC_2.0pow@@GLIBC_2.0quot_rem_x_y_r_eq_zWrite_A_CharX2466696C655F70726F70_2environ@@GLIBC_2.0X726561645F61746F6D_1xy_eq_z_Fexistence_streamresource_too_big_fd_constraintX246D616B655F6175785F6E616D65_4X2473686F775F64656275676765725F6D6F6465_0X6F70656E5F6F75747075745F636F6465735F73747265616D_1Check_For_Un_CodesX6E65775F61746F6D_1X63757272656E745F6D6972726F72_2X242477726974655F736F6C7574696F6E2F335F2461757831_2x2_eq_yGet_Stream_Or_AliasIndomain_Middle_Alt_0X7265616C5F74696D65_1X24627265616B2F305F2461757832_1Find_Next_AtomUpdate_Dynamic_PredVector_Next_AfterHostname_Address_2BC_Emulate_Cont_0X707265666978_2X63757272656E745F6F7574707574_1Fd_Has_Vector_1ftell@@GLIBC_2.0SR_Write_Message_6max_x_y_eq_zList_LengthX246F7032_3X2473725F6F70656E2F335F2461757831_1Shell_2SR_Get_Include_List_2X6765745F6B65795F6E6F5F6563686F_2Stdio_Is_RepositionableX246463675F7472616E735F72756C65_2X2464656275675F706F7274_5X233C3D3E_2Consult_2Blt_G_Array_Sizerepresentation_characterWrite_Canonical_To_Codes_2X24696E646F6D61696E5F6D6964646C655F616C74_0System_2domain_non_empty_listRange_UnionWriteq_2domain_g_array_indexFd_Use_Vector_1accept@@GLIBC_2.0gethostbyaddr@@GLIBC_2.0Random_1Blt_Eqsystem@@GLIBC_2.0zero_power_n_eq_yX247379735F7661725F7365745F626974_2X242466696E645F6578697374696E675F73747265616D2F335F2461757831_3X675F696E63_2Read_Number_2Mk_Callabledomain_read_optionX247573655F617373657274_0LE_Is_Interrupt_KeyX2473725F73746F705F6D6F64756C65_3X66645F61745F6C656173745F6F6E65_1X2463757272656E745F616C6961732F325F2461757831_2X247379735F7661725F72656164_2Set_Current_B_1Get_IntegerX63757272656E745F70726F6C6F675F666C6167_2X247573655F736F7274_0SR_Get_Size_Counters_3X2464656275675F726561645F696E7465676572_1X66645F646F6D61696E5F626F6F6C_1Blt_AtomX247573655F7465726D5F696E6C_0access@@GLIBC_2.0Prolog_Pid_1X736F636B6574_2X72656D6F76655F73747265616D5F6D6972726F72_2Stream_Flushsetvbuf@@GLIBC_2.0X73725F6765745F696E636C7564655F73747265616D5F6C697374_2X246765745F73725F6F7074696F6E7332_1X242464656275675F657865635F636D642F365F2461757837_3Put_Byte_2os_argcWriteq_To_Chars_2X233E3D_2Rd_Chars_Strinet_ntoa@@GLIBC_2.0Pl_Err_SystemWrite_To_Codes_2X63757272656E745F73747265616D_1X2461726974685F6576616C_2LE_Compl_Find_Matchdomain_streamX7075745F63686172_2X3E3D_2Current_Op_3M_Set_SeedX6F70656E5F6F75747075745F63686172735F73747265616D_1X63616C6C_2Blt_CallableX66645F6C6162656C696E67_1Pred_Prop_Dynamic_1Load_Cut_LevelChange_Directory_1Sys_Var_Get_2type_floatputs@@GLIBC_2.0X24636865636B5F73747265616D5F6F725F766172_2le_promptSelect_5Term_Compare_initX6E6C_1X5C5C3D_2X2466645F656C656D656E74_3Setarg_Of_Last_Found_2X247573655F73747265616D_0popen@@GLIBC_2.1X247573655F756E696679_0Current_Mirror_2truth_x_plus_c_neq_y_FRd_Positive_CheckCreate_Pipe_2X246462675F696E64696361746F72_2Call_CompiledX247379735F7661725F707574_2Switch_On_AtomX2462635F73746F705F656D6974_0X6261676F66_3Write_Term_To_Chars_2x_neq_cX24657865635F636D645F657272_2X2466645F73656C5F61727261795F7069636B5F766172_4Architecture_1listen@@GLIBC_2.0X74656C6C696E67_1Current_Output_1Unlink_1stk_tblX706F70656E_3Print_To_Codes_2Indomain_Random_Alt_0permission_type_static_procedureCreate_Choice_Point1X73725F6368616E67655F6F7074696F6E73_2X247573655F7468726F77_0X7365745F73747265616D5F656F665F616374696F6E_2X7065656B5F62797465_2nb_atomX675F61737369676E_2type_compoundX2473725F657865635F646972656374697665_2Seek_4ax_plus_y_eq_zScan_Next_Atomstm_top_level_inputX736C656570_1Get_Atomx_nequiv_y_eq_bmalloc@@GLIBC_2.0type_predicate_indicatorX726561645F706C5F73746174655F66696C65_1X7072696E745F746F5F61746F6D_2X24246765745F6F70656E5F6F7074696F6E73322F315F2461757836_1X6E65775F61746F6D_3last_read_lineFct_MulX5C5C2B_1Random_3X246C6F61642F315F2461757831_1X242464656275675F657865635F636D642F365F2461757834_2Socket_Accept_4Call_With_Args_6Pl_Err_Existencedomain_prolog_flagX646973706C6179_2X2473756D5F6C69737431_3X3D3C_2Range_InterRename_File_2glob_buffX247465726D5F746F5F676F616C32_2domain_selectable_itemX7065656B5F63686172_2X246765745F77726974655F6F7074696F6E7332_1Rd_List_CheckX24696E7374616E63655F666F725F736574617267_2debug_call_codeDate_Time_1Fct_IdentityX737079706F696E745F636F6E646974696F6E_3X73725F726561645F7465726D_4X63757272656E745F616C696173_2X61745F656E645F6F665F73747265616D_1abs_x_minus_y_eq_z_FCreate_Water_MarkX24657865635F636D645F6C696E655F656E7472795F676F616C73_1X242464656275675F657865635F636D642F365F2461757832_1Vector_Mul_Vectorabs_x_minus_a_eq_z_FDelete_Predatom_user_inputmunmap@@GLIBC_2.0M_Get_StatusFct_MaxRetract_Last_Found_0X746F6C64_0X6368616E67655F6469726563746F7279_1prime_xRd_Integer_CheckX77726974655F7465726D5F746F5F6368617273_3Blt_VarFind_Stream_By_Aliaspermission_type_private_procedureX247365745F6C696E656469745F70726F6D7074_1X24726561645F72657475726E_1pipe@@GLIBC_2.0not_x_eq_bGroup_Solutions_3Setarg_4Blt_Functorx_and_y_eq_0Get_Integer_TaggedUnify_ListX24617373657274_3X246765745F6C6162656C696E675F6F7074696F6E73_2X737061776E_2Rd_Charax_plus_by_plus_z_eq_t_FX7772697465715F746F5F6368617273_2Un_BooleanX646973706C6179_1X2477726974655F736F6C7574696F6E31_1fread@@GLIBC_2.0Check_For_Un_CharsRd_Compoundquot_rem_a_y_r_eq_zLE_FGetsGet_ListX77726974655F7465726D5F746F5F61746F6D_3Rd_ByteAtom_Chars_2clearerr@@GLIBC_2.0X617267_3Keep_Rest_For_PrologStatistics_Real_Time_2At_End_Of_Stream_0X2473725F6F705F74797065_2X766172_1X2462635F656D69745F696E7374_1M_Absolute_Path_NameCurrent_Predicate_2Extra_Cstr_Alt_0Fd_Reset_Solver0X63616C6C5F776974685F61726773_8X246F702F335F2461757831_3X656E7669726F6E_2X247573655F666F726D6174_0Create_Swt_Stc_ElementCreate_Swt_Atm_ElementX6E756D6265725F76617273_0Put_Y_Variableatom_textwmpX242463616C6C5F696E7465726E616C5F6F722F345F2461757831_6X3D5C5C3D_2Un_NumberX746F705F6C6576656C_0X6C6973745F6F725F7061727469616C5F6C697374_1X72656164_2X63616C6C61626C65_1X242464656275675F646973705F616C74312F335F2461757832_3Host_Name_1X77726974655F7465726D_2x_power_a_eq_yX246D656D62657263686B2F325F2461757831_4X246164645F616C69617365735F746F5F73747265616D_2Atom_Hash_2X2463757272656E745F61746F6D_1Character_Count_2X2424737461742F335F2461757831_2Call_With_Args_5Reset_Debug_Call_Code_0rint@@GLIBC_2.0X657870616E645F7465726D_2X2464656275675F646973705F616E635F6C7374_1X242464656275675F6C6973745F6F665F70726564312F345F2461757833_4X247370795F746573745F636F6E646974696F6E_3LE_Get_Current_Positionfixed_sizesX6164645F73747265616D5F6D6972726F72_2X247072656469636174655F70726F70657274795F616E79_2X73725F63757272656E745F64657363726970746F72_1Switch_On_Structureatom_atX6E6F6E766172_1X24246765745F73725F6F7074696F6E73322F315F2461757834_1Indomain_Limits_Alt_0Name_Query_Vars_2X66645F61745F6D6F73745F6F6E65_1X247573655F72656164_0X7772697465_2X6E756D62657276617273_1X247375625F61746F6D5F616C74_0Recover_Solutions_2X726561645F746F6B656E5F66726F6D5F636F646573_2Add_StreamX726561645F66726F6D5F636F646573_2X6765745F6B6579_2X246765745F726561645F6F7074696F6E7332_1Range_Add_ValueX247365745F73747265616D5F747970652F325F2461757831_1X2464656275675F6C6973745F6F665F7072656431_4Un_Chars_CheckLE_Close_TerminalBlt_Term_GtFd_Domain_3X6465636F6D706F73655F66696C655F6E616D65_4X63757272656E745F696E707574_1Peek_Code_1le_hook_set_line_bufferingpermission_type_binary_streamstm_tbl_sizeX2473725F77726974655F6572726F722F365F2461757831_4X666C7573685F6F7574707574_1stdout@@GLIBC_2.0Current_Prolog_Flag_Alt_0Fd_Tell_Valuestderr@@GLIBC_2.0Blt_G_Set_BitX2424746F705F6C6576656C322F305F2461757835_1def_local_sizeRead_TokenCheck_For_Un_In_ByteUnify_Integer_TaggedDelete_Choice_Point2X24706C5F6572725F7265736F75726365_1truth_x_plus_c_eq_y_FX66645F7072696D65_1Indomain_Max_Alt_0X66645F61746D6F7374_3Indomain_Min_Alt_0SR_Get_Stm_2Fct_AndX247573655F616C6C5F736F6C7574_0Delete_Directory_1X666F726B5F70726F6C6F67_1atom_repositionX24246765745F6F70656E5F6F7074696F6E73322F315F2461757834_1Rd_PositiveBlt_Fast_LteGet_Floatdomain_flag_valueX2461746F6D5F70726F706572747932_7Fct_Powmprotect@@GLIBC_2.0Close_StmX2465787472615F637374725F616C74_0X636C6F7365_1Read_Termle_hook_backdX73725F77726974655F6D657373616765_4X77726974655F706C5F73746174655F66696C65_1X73746F70_0le_hook_forwdMk_PositiveUn_CodesUn_In_Byte_Checkstm_debugger_outputX246261676F66_4Blt_NeqX63616C6C5F776974685F61726773_6X242463617463685F696E7465726E616C312F355F2461757831_3File_Prop_Real_File_Name_2Unget_Code_1min_x_y_eq_z_FX6E6F7472616365_0SR_Change_Options_0atom_eofRange_Div_RangeX2463757272656E745F616C6961735F616C74_0__xstat@@GLIBC_2.0X617070656E64_1Fd_Prolog_To_Array_IntX6F70656E_3Fct_LogX77726974655F63616E6F6E6963616C5F746F5F636F646573_2Un_In_ByteDelete_Choice_PointEnviron_2X675F72656164_2getpagesize@@GLIBC_2.0For_Alt_0X2463616C6C5F696E7465726E616C5F776974685F637574_3type_atomSend_Signal_2X247379735F7661725F646563_1X726561645F61746F6D_2X6765745F7072696E745F73747265616D_1X706872617365_3Prop_And_Stdio_Modeexecv@@GLIBC_2.0inet_aton@@GLIBC_2.0For_3X247573655F636F6E74726F6C_0Fd_Max_2X2461746F6D5F70726F70657274795F616E79_2Get_Pred_IndicatorX66645F6D696E_2Init_AtomDATEDisplay_To_Codes_2X777269746571_1X247072656469636174655F70726F706572747931_2stm_stdoutX6C697374696E67_0Vector_Div_VectorFormat_To_Atom_3X24636865636B5F73747265616D5F70726F70_1Read_Term_4Define_Math_Bip_2Update_Choice_PointStream_Prop_End_Of_Stream_2X2464656275675F63616C6C5F706F7274_5LE_Set_SeparatorsX627265616B_0abs_x_minus_a_eq_zAdd_Stream_Alias_2domain_write_optionX2462635F73746172745F70726564_7fseek@@GLIBC_2.0waitpid@@GLIBC_2.0x_lte_yX675F61727261795F73697A65_2X61737365727461_1Check_For_Un_CallableX247573655F616C6C5F66645F62697073_0X2463757272656E745F6D6972726F725F616C74_0X73797374656D_1X24726561645F7175657279_2Fct_Fast_DivRd_AtomX247573655F70726564_0Statistics_System_Time_2X24726561645F7465726D_3Abolish_1Fct_NotScan_Dynamic_PredSR_EOF_Reached_1Read_Integer_2Un_FloatTreat_Vars_Of_TermX646973706C61795F746F5F61746F6D_2Read_From_Codes_2Get_Byte_1Un_Callable_CheckFlush_Output_0Pred_Prop_Native_Code_1X24657865635F636D645F6C696E655F676F616C_1X6D696E5F6C697374_2ax_plus_y_plus_z_eq_tX7061727469616C5F6C697374_1X24706C5F6572726F72_1time@@GLIBC_2.0X7772697465_1X726561645F746F6B656E5F66726F6D5F61746F6D_2Check_For_Un_CodeGet_Seed_1X6E756D6265725F61746F6D_2X2323_2X2464656275675F657863657074696F6E5F706F7274_5X2464656275675F77726974655F676F616C_4X66645F6E6F745F7072696D65_1Fct_Fast_AddX636C6F73655F6F75747075745F636F6465735F73747265616D_2Un_In_Char_CheckUn_StringFull_Var_Power_2X235C5C3D_2Pl_Err_Evaluation_startVector_Nb_Elemle_hook_ins_modeX24246765745F77726974655F6F7074696F6E73322F315F2461757831_1X247573655F61746F6D_0x_gte_cUn_ListX247379735F7661725F676574_2Stream_GetsX2424746F705F6C6576656C322F305F2461757831_2Un_Positivex_nor_y_eq_bBlt_Fast_NeqObtain_FloatX636C6F73655F696E7075745F61746F6D5F73747265616D_1X246E746831_3SR_Is_Bit_Set_1Spawn_3Vector_Ith_ElemX636C6F73655F6F75747075745F61746F6D5F73747265616D_2Blt_Term_LteX24706C5F6572725F7065726D697373696F6E_3M_Host_Name_From_NameX247573655F72616E646F6D_0Lookup_PredFct_SqrtPrint_To_Atom_2Number_Chars_2X6E756D6265725F636F646573_2X242464656275675F7370795F72657365742F315F2461757831_3le_hook_flushdomain_stream_optionBlt_IntegerX24636865636B5F737461745F6B6579_1SR_New_Pass_1Pl_Err_PermissionRange_Add_Rangeevluation_undefinedRead_Atom_1Create_Choice_PointDebug_WamX246765745F62696E645F7661726961626C65735F6F7074696F6E7331_1X66645F7365745F766563746F725F6D6178_1Gen_New_AtomWrite_Canonical_1X2463757272656E745F7072656469636174655F616C74_0le_hook_put_charFind_Expon_DnX2424657865635F71756572792F325F2461757832_2X247072656469636174655F70726F706572747932_2Find_Atomdef_cstr_sizeX66645F63617264696E616C697479_3X24636865636B5F66696C655F70726F70_1X245C5C2B2F315F2461757831_1le_hook_startPut_Code_1chdir@@GLIBC_2.0Scan_Choice_Point_Info_3M_Allocate_StacksVector_CopyX61746F6D5F68617368_2X77726974655F746F5F636F646573_2X77726974655F7465726D_3Throw_2pi_name_wordSet_Stream_BufferingX66645F6D61785F696E7465676572_1Fct_Fast_AndX737079_1LE_Get_Prompt_LengthSort_List_2Check_Prop_Perm_And_File_2Pl_Err_DomainBlt_List_Or_Partial_ListX6C656E677468_2X24706C5F6572725F6578697374656E6365_2Make_Aux_NameX2424636865636B5F707265645F747970652F335F2461757831_4File_Exists_1le_hook_confirm_boxUpdate_Choice_Point1Socket_Close_1X6E756D626572_1LE_Get_Ctrl_C_Return_Valuestrstr@@GLIBC_2.0permission_type_source_sinkstrlen@@GLIBC_2.0X247365745F63757272656E745F42_1longjmp@@GLIBC_2.0X72657472616374616C6C_1permission_operation_outputX24706C5F6572725F73797374656D_1Rd_Atom_CheckX73797374656D5F74696D65_1SR_Write_Message_4From_Alias_To_Stream_2X2464656275675F646973705F616C7432_1X2463616C6C2F325F2461757831_1X24246C6F61645F707265642F325F2461757831_3LE_Get_Charsigaddset@@GLIBC_2.0Rd_BooleanX233D3C_2obj_chain_endle_hook_get_line_bufferingAdd_Linedit_Completion_1Set_Stream_Line_Column_3Assert_4X2466645F63617264696E616C697479_2X24636F6E73756C742F315F2461757831_1X6F70656E_4X6D61785F6C697374_2type_atomicSet_Heap_Actual_Startle_hook_screen_sizePut_FloatX2466645F6D6178696D697A652F325F2461757831_6Term_SizeX66645F766172_1X706872617365_2X6D656D62657263686B_2Atom_Codes_2Range_Copy__lxstat@@GLIBC_2.0X636C61757365_2Pred_Prop_Private_1X66645F766563746F725F6D6178_1X246765745F6F70656E5F73746D_2Fct_Float_Fract_PartX73747265616D5F706F736974696F6E_2Put_Char_1atom_noneX6765745F6B65795F6E6F5F6563686F_1UnifyX246F70656E_4X73747265616D5F6C696E655F636F6C756D6E_3X246F7031_3Least_Significant_BitX2464656275675F656E645F63616C6C_6uname@@GLIBC_2.0oper_tblX2466696E645F6578697374696E675F73747265616D_3Fct_Xoratom_blockUn_Positive_Check__strtol_internal@@GLIBC_2.0Current_Char_Conversion_2Blt_Partial_ListX61746F6D5F6368617273_2X242464656275675F646973705F616C74312F335F2461757831_2qsort@@GLIBC_2.0Statistics_Cstr_Stack_2X242473725F646972656374697665312F325F2461757832_2X666C7573685F6F7574707574_0x_plus_y_plus_z_eq_tHash_Nb_ElementsMk_IntegerX2424737079706F696E745F636F6E646974696F6E312F335F2461757831_5X24246261676F662F345F2461757831_2X6164645F6C696E656469745F636F6D706C6574696F6E_1BC_Stop_Emit_0Rd_CodesX2473725F74726561745F706173735F6E6F_3Number_Atom_2M_Random_IntegerX24706872617365_4X73725F6765745F66696C655F6E616D65_2X61746F6D6963_1domain_date_timeX2474727574685F6F66_2X2461746F6D5F70726F706572747931_2Fct_ModDisplay_To_Chars_2X2463617463685F73796E635F666F725F6661696C5F6174_1Close_1LE_Get_Separatorsevluation_float_overflowX7375625F61746F6D_5X726570656174_0Make_Aux_Name_4representation_max_arityX233E_2X736F636B65745F616363657074_4X7072696E745F746F5F636F646573_2last_input_soraX736F636B65745F636C6F7365_1Mk_CharFd_Set_Full_Ac_Flag_1Fd_Has_Extra_Cstr_1X6164645F73747265616D5F616C696173_2LE_GetsRange_Ith_ElemX24746F6C642F305F2461757831_1xy_eq_zX246164645F636C617573655F7465726D5F616E645F6263_2X675F61737369676E62_2x_plus_y_eq_zX67657430_1Find_Expon_UpX2473746F72655F736F6C7574696F6E73_4X24246C6F61645F707265642F325F2461757832_3Lookup_Operexecvp@@GLIBC_2.0X24636865636B5F707265645F74797065_3X247265766572736531_3le_hook_emit_beepGet_StructureX636861725F636F6E76657273696F6E_2tzset@@GLIBC_2.0Find_Linedit_Completion_2X675F7365745F626974_2Stream_Prop_Mode_2X24246C6F6164322F315F2461757831_3X61746F6D_1X736F7274_2X246765745F6F70656E5F6F7074696F6E7331_1Execute_A_ContinuationBlt_G_AssignSet_Stream_Type_2Stream_PeekcX2463616C6C2F325F2461757832_3char_convX2466645F6C6162656C696E675F6D7468_4X2464656275675F7377697463685F6F6666_0setlinebuf@@GLIBC_2.0X6E616D655F71756572795F76617273_2X246765745F73725F6F7074696F6E73_2X7065656B5F63686172_1x_plus_c_eq_y_FM_Get_Working_Diratom_notX242473725F646972656374697665312F325F2461757831_4m_os_versionX246175785F6E616D65_1max_x_y_eq_z_FX246D616B655F6C697374_2Update_Choice_Point4X64656C657465_3atom_currentX7772697465715F746F5F61746F6D_2Choice_Point_Arg_3Fct_Fast_XorX2477726974655F696E64696361746F72_0sigprocmask@@GLIBC_2.0X246C697374696E675F6F6E65_1Get_Code_2Range_Mod_Valueatom_eof_codeX242464656275675F63616C6C2F325F2461757831_2strncmp@@GLIBC_2.0X242473725F73746F705F6D6F64756C652F335F2461757831_2Popen_3Fct_OrFct_Fast_ShlX24636865636B5F61746F6D5F6F725F61746F6D5F6C697374_1X66696E64616C6C_3Get_Current_B_1atom_resetX7075745F63686172_1Fd_Copy_Variable0DeallocateSR_Open_File_2X2464656275675F646973705F616C7465726E617469766573_2X6C617374_2Stream_Prop_Eof_Action_2last_read_colX7365745F73747265616D5F74797065_2Clause_3fputc@@GLIBC_2.0User_Time_1__libc_csu_initTemporary_Name_2truth_x_eq_yvec_max_integerNumber_Codes_2X247573655F66645F626F6F6C_0Working_Directory_1X242463617463685F615F7468726F772F355F2461757831_2Mk_In_CodeRd_Byte_CheckVector_Div_ValueBlt_Fast_Eqstm_inputX242473725F73746172745F6D6F64756C652F335F2461757831_2X2473725F74726561745F7465726D_2X74656D706F726172795F6E616D65_2Unget_Byte_2X6765745F63686172_1Set_Output_1X7365745F696E707574_1Fd_Display_Extra_CstrX737566666978_2X24246765745F6F70656E5F6F7074696F6E73322F315F2461757832_1Argument_Value_2Char_Code_2Unify_ValueX2424746F705F6C6576656C322F305F2461757833_3X247573655F616C6C5F706C5F62697073_0Write_TermX247573655F66645F73796D626F6C6963_0Add_Dynamic_ClauseSR_Add_Directive_7type_character__bss_startUnify_Local_ValueX242464656275675F7370795F7365742F325F2461757831_3X63616C6C5F776974685F61726773_1Assoc_Socket_Streams_3Write_Term_To_Codes_2Stream_Prop_Output_1Mk_BooleanX6765745F636F6465_2mainTry_Execute_Top_LevelM_Set_Working_DirRead_Token_2Check_For_Un_ListVector_EmptyUn_List_CheckX246E756D6265725F766172732F305F2461757831_1X7075745F636F6465_2Statistics_Cpu_Time_2X636F6D706F756E64_1X2466645F72656C6174696F6E6331_3Set_Top_Level_Streams_2X233C23_2X7072696E74_1Pred_Without_Aux_4Rd_In_ByteX646973706C61795F746F5F636F646573_2type_in_characterSyntax_Error_Info_4X2463757272656E745F707265646963617465_1type_variableFct_Fast_Moddomain_operator_specifierX24707265645F776974686F75745F617578_4X63616C6C5F776974685F61726773_11X233E3D23_2Socket_Bind_2Switch_On_Term_Var_Atm_StcX247573655F6465633130696F_0os_argvX77726974655F63616E6F6E6963616C_2domain_format_control_sequencea_power_n_eq_yHalt_If_No_Top_Level_1X246765745F63757272656E745F42_1Fct_RemX63757272656E745F6269705F6E616D65_2Un_In_Code_CheckHash_Delete_AllVector_Test_Null_Interfd_elementLE_Compl_Init_MatchGet_Code_1Write_Canonical_To_Atom_2X675F646563_3X6C697374_1Fd_AtmostPortray_Clause_1X235C5C3C3D3E_2Fct_CosX246861735F7370795F706F696E74_2X675F6465636F_2__libc_start_main@@GLIBC_2.0X73656C656374_5permission_type_text_streamGet_Atom_TaggedX247468726F7731_2X2463617463685F6661696C5F6E6F77_1Call_With_Args_11Fd_Sel_Array_Pick_Var_4Find_Linedit_Completion_Alt_0X64656C6574655F66696C65_1Blt_FloatX247365745F6C6162656C696E675F64656661756C7473_0X7072696E74_2X73746174697374696373_0Sqrt_DnM_User_TimeX63616C6C5F776974685F61726773_9X24246765745F73725F6F7074696F6E73322F315F2461757831_1X2424737461742F335F2461757832_1Put_StructureX6E6F6E5F66645F766172_1New_ObjectFd_Max_Integer_1Blt_Non_Generic_VarX61626F7274_0Set_Input_1X24246C697374696E675F616C6C2F315F2461757831_2X242463616C6C5F696E7465726E616C2F325F2461757831_1X2473747265616D5F70726F706572747931_2truth_x_eq_c_Ftype_callableClose_Input_Term_Stream_1X66645F656C656D656E74_3X726561645F7465726D5F66726F6D5F61746F6D_3Add_Str_StreamBC_Call_Terminal_Pred_3File_Prop_Absolute_File_Name_2exp@@GLIBC_2.0X73725F77726974655F6572726F72_2X246C656173685F6D616B655F6D61736B_2X2466645F6C6162656C696E67_2X6E756D62657276617273_3Display_2X7472616365_0permission_operation_accessatom_pastX2466696C655F70726F705F7065726D_2fd_atleastX24636C6F7365_2Fct_FloorPut_Byte_1X2463757272656E745F61746F6D5F616E79_1Mk_CodeNew_Atom_3x_nimply_y_eq_breg_bankCurrent_Alias_Alt_0Rd_Compound_CheckX2464656275675F706F727432_6M_Host_Name_From_AdrSR_Close_1dup2@@GLIBC_2.0X7368656C6C_0ax_plus_by_plus_z_eq_tX7065656B5F636F6465_2X2464656275675F646973705F616E635F6C737431_1X246765745F707265645F696E646963_3Read_Token_From_Chars_2SR_Update_Position_0M_RandomizeFct_RoundX675F6C696E6B_2truth_x_neq_yRd_Charsrealloc@@GLIBC_2.0Statistics_User_Time_2X6465627567_0Statistics_0M_Get_SeedX246765745F77726974655F6F7074696F6E7331_1X24746F705F6C6576656C5F61626F7274_0strcat@@GLIBC_2.0Print_1Get_Linedit_Prompt_1permission_operation_closeDel_Mirror_From_Stream__environ@@GLIBC_2.0permission_operation_repositionX73725F636C6F7365_1Close_Output_Term_Stream_2fd_variable_sizeX675F696E636F_2X636F70795F7465726D_2Check_For_Un_Positivetruth_x_neq_cExit_With_ValueX24736F636B65745F6163636570742F345F2461757831_1Rd_Boolean_Checkdata_startFct_Fast_MulX73725F77726974655F6D657373616765_6File_Prop_Type_2Fct_AcosX2466696E64616C6C_4Stream_End_Of_StreamPl_Err_RepresentationX7075745F62797465_1X7072656469636174655F70726F7065727479_2existence_procedureFct_DivFd_Min_2Fct_Fast_RemCurrent_Atom_2PowerScan_TokenDelete_StreamPut_AtomX2473725F6F70656E2F335F2461757832_1X6F70656E5F696E7075745F63686172735F73747265616D_2Extend_ArrayVector_Add_ValueX7065726D75746174696F6E_2max_x_a_eq_zax_eq_yX66645F65786163746C79_3Pl_Err_ResourceX736F727430_2X403D3C_2X66645F646F6D61696E_2truth_x_neq_c_FPeek_Byte_1X726561645F7465726D5F66726F6D5F6368617273_3X6162736F6C7574655F66696C655F6E616D65_2Write_To_Chars_2bind@@GLIBC_2.0X736574617267_4Format_2X24246765745F77726974655F6F7074696F6E73322F315F2461757832_1fd_element_varX24666F726B5F70726F6C6F672F315F2461757831_1Check_For_Un_In_Code_finiX24636865636B5F61746F6D5F6F725F61746F6D5F6C69737432_1X2473686F775F6C65617368696E675F696E666F_0lseek@@GLIBC_2.0fcntl@@GLIBC_2.0Put_IntegerX24636F6E73756C7432_1memcpy@@GLIBC_2.0Get_Byte_2Unknown_Pred_Errorsqrt@@GLIBC_2.0def_global_sizeStream_Get_Keytype_booleantruth_x_plus_c_gte_yx_or_y_eq_bX73725F6572726F725F66726F6D5F657863657074696F6E_2X24636865636B5F696E5F6368617261637465725F636F6465_1permission_operation_createX24746F705F6C6576656C32_0Set_C_Bip_NameX66696C655F70726F7065727479_2X2473725F77726974655F6572726F722F325F2461757831_6X2424657865635F71756572792F325F2461757831_3X2473725F726561645F7465726D2F345F2461757831_3Lookup_Oper_Any_TypeX7365746F66_3ax_eq_y_FX73725F6765745F696E636C7564655F6C697374_2Blt_G_Test_Set_BitFd_Element_Var_I_To_VBC_Emulate_Predfclose@@GLIBC_2.1Rd_CallableX24747261696C5F68616E646C6572_1Fd_Domain_Bool_1X65786563_4X247365745F77726974655F64656661756C7473_0Blt_Term_LtM_MktempX242477726974655F696E64696361746F722F305F2461757832_2__ctype_toupper_loc@@GLIBC_2.3Socket_Connect_4LE_Printfle_hook_displ_strgetsockname@@GLIBC_2.0strrchr@@GLIBC_2.0Unify_Nila_power_n_eq_y_FX24706C5F6572725F74797065_2X736565696E67_1Delete_Str_StreamX2473686F775F6C65617368696E675F696E666F32_1Unify_VariablePred_Prop_Prolog_File_2Rd_In_Byte_CheckX726561645F6E756D626572_1Unify_Atom_TaggedCreate_Choice_Point4X696E7465676572_1ensure_reservedX2473686F775F756E646566696E65645F616374696F6E_0Current_Char_Conversion_Alt_0__strdup@@GLIBC_2.0Read_Numberx_eq_yX675F746573745F7365745F626974_2X675F646563_2X24246765745F636C6F73655F6F7074696F6E73322F315F2461757831_1Open_3Stream_Set_Position_LCStrdup_Checkrmdir@@GLIBC_2.0Pred_Prop_Static_1Temporary_File_3X74656D706F726172795F66696C65_3Stdio_Set_BufferingFd_Element_Var_IX233D23_2X6765745F636F6465_1le_hook_kbd_is_not_emptyMk_CodesX6372656174655F70697065_2type_integerCurrent_Mirror_Alt_0Stream_Line_Column_3truth_x_eq_y_FRead_Term_From_Chars_5Check_For_Un_In_CharSys_Var_Put_2Delete_Dynamic_Clausedomain_io_modeclosedir@@GLIBC_2.0X6B6579736F7274_2domain_close_optionX2463616C6C5F696E7465726E616C_2Call_With_Args_7gettimeofday@@GLIBC_2.0X7365745F73656564_1Make_Directory_1Blt_Term_EqFct_ExpM_System_TimeAdd_Stream_Mirror_2X24706C5F6572725F6576616C756174696F6E_1X726561645F6E756D626572_2m_os_typeX736F636B65745F6C697374656E_2X247573655F6361746368_0Blt_G_IncoX247379735F7661725F72657365745F626974_2srand@@GLIBC_2.0Display_1Fd_Prolog_To_Array_FdvX247365745F64656275676765725F73747265616D73_2Range_Mod_RangeLE_Emit_Beepx_neq_yBlt_G_DecX247379735F7661725F696E63_1X246463675F7472616E735F626F6479_4X2473686F775F756E646566696E65645F616374696F6E31_1X7368656C6C_2X247573655F6C697374_0Stream_Gets_PromptX2473725F73696D706C5F6572726F72_5opendir@@GLIBC_2.0Rd_Callable_CheckX77726974655F7465726D5F746F5F636F646573_3domain_stream_or_aliasX6F70656E5F696E7075745F61746F6D5F73747265616D_2X235C5C5C5C2F_2gethostname@@GLIBC_2.0Get_Char_2Hash_FindFd_Create_C_FrameX24246261676F662F345F2461757832_2open@@GLIBC_2.0Mk_StringX24656E7669726F6E5F616C74_0X736F636B65745F636F6E6E656374_4Write_To_Atom_2X242464656275675F706F72745F69676E6F72652F345F2461757831_3X66645F6861735F766563746F72_1X2463757272656E745F616C696173_2type_in_byteX73747265616D5F70726F7065727479_2atom_top_level_inputX2473725F77726974655F6572726F722F345F2461757831_4X246C656E677468_3Un_In_Charabs_x_minus_y_eq_zx_eq_cX246173736F635F736F636B65745F73747265616D73_3vec_sizeX7772697465715F746F5F636F646573_2m_architectureX72616E646F6D_1X6E616D65_2Stream_Prop_Reposition_2LE_Compl_Del_WordX24636865636B5F68656164_1Rd_Proper_List_CheckMk_FloatX24756E77696E64_1X247365745F62696E645F7661726961626C65735F64656661756C7473_0LE_Get_KeyX6F70_3M_Spawn_Redirectstm_stdingethostbyname@@GLIBC_2.0atom_binarysigemptyset@@GLIBC_2.0atom_debugger_inputFct_AsinUn_Integer_CheckAt_End_Of_Stream_1Blt_G_IncRd_StringLE_Open_TerminalNl_0Stream_Prop_File_Name_2X2463757272656E745F73747265616D5F616C74_0X24636C61757365_3X232F5C5C_2X6E7468_3X242464656275675F657865635F636D642F365F2461757831_1X7365745F6C696E656469745F70726F6D7074_1Switch_On_IntegerFct_Float_Integ_PartFd_Assign_ValueX24706F72747261795F636C61757365_2X242466645F6C6162656C696E672F325F2461757831_4Full_Var_Div_VarStream_PrintfX24246765745F77726974655F6F7074696F6E73322F315F2461757836_1byte_lenHash_Table_SizeCurrent_Op_Alt_0Blt_Non_Fd_VarCopy_Termgetpwnam@@GLIBC_2.0X2464656275675F69735F64656275675F707265646963617465_1Stop_PrologX247573655F7372635F726472_0X73725F6765745F6572726F725F636F756E74657273_3X6E6C_0exit@@GLIBC_2.0Format_To_Codes_3X24246765745F6F70656E5F6F7074696F6E73322F315F2461757831_1atom_top_level_outputX2463616C6C5F696E7465726E616C5F6F72_4X24746F705F6C6576656C5F73746F70_0Fct_AtanMk_Proper_ListAdd_Alias_To_StreamX242473725F74726561745F7465726D2F325F2461757831_2X66645F73697A65_2X24617070656E642F315F2461757831_2Check_For_Un_FloatGet_Print_Stm_1X73656E645F7369676E616C_2X73725F6F70656E_3X247365652F315F2461757831_2calloc@@GLIBC_2.0Read_Pl_State_FileX6973_2X247573655F66645F76616C756573_0X246D61785F6C69737431_3Vector_FullX2464656275675F706F72745F707265747479_2atom_stream_positionX2463686F6963655F706F696E745F696E666F_4Environ_Alt_0Rd_Codes_CheckFather_Of_Aux_Name_3Get_Key_No_Echo_1ax_plus_y_eq_z_FX6C696E655F706F736974696F6E_2Un_String_CheckFull_Nth_RootX65786563_5Create_Allocate_AtomX247573655F707265747479_0X736F727430_1Line_Count_2Mk_ByteX2464656275675F706F72745F69676E6F7265_4X666C6F6174_1X2464656275675F7377697463685F6F6E_1Hash_FirstDefine_Vector_SizeUn_CharsAtom_Concat_3Range_To_Stringsscanf@@GLIBC_2.0X70726F6C6F675F66696C655F6E616D65_2Get_Current_Bip_edataX3E_2X246765745F636C6F73655F6F7074696F6E7331_1X247363616E5F64796E5F6A756D705F616C74_0atom_tblmin_x_y_eq_z__i686.get_pc_thunk.bx_IO_putc@@GLIBC_2.0Sub_Atom_Alt_0Sqrt_ExactX66645F6C6162656C696E67_2Switch_On_TermSys_Var_Set_Bit_2X736F636B65745F62696E64_2fd_atmostfree@@GLIBC_2.0Create_AtomRead_2Fd_Add_List_Dependency_endX2E_2Get_Key_1ioctl@@GLIBC_2.0X2463757272656E745F7072656469636174655F62697073_1X66696E645F6C696E656469745F636F6D706C6574696F6E_2X675F72657365745F626974_2Start_PrologX63616C6C5F776974685F61726773_4Prime_RangeX756E6765745F63686172_2X61626F6C697368_1truth_x_lt_yX73725F6765745F706F736974696F6E_3Stream_Set_PositionCheck_For_Un_StringX72616E646F6D697A65_0X2465786563_5X3C_2min_x_a_eq_zUn_CallableX675F746573745F72657365745F626974_2X2463757272656E745F61746F6D5F616C74_0Blt_Non_VarX24636865636B5F707265645F70726F70_1getcwd@@GLIBC_2.0X24726574726163745F6C6173745F666F756E64_0X24246765745F77726974655F6F7074696F6E73322F315F2461757835_1Copy_Clause_To_HeapFd_AtleastUn_Proper_List_CheckX2424657870616E645F7465726D312F325F2461757831_2Peek_Byte_2Blt_GteRealloc_Checkisatty@@GLIBC_2.0X24246765745F6F70656E5F73746D2F325F2461757831_2stm_top_level_outputUn_CharRange_Sub_RangeX77726974655F666F66_1Create_Swt_Tableacos@@GLIBC_2.0memset@@GLIBC_2.0X726561645F696E7465676572_1Un_CodeX24246765745F6F70656E5F6F7074696F6E73322F315F2461757833_1connect@@GLIBC_2.0Rd_ListX233D3D3E_2stdin@@GLIBC_2.0X2463686F6963655F706F696E745F617267_3X247573655F636F6E73745F696F_0X2464656275675F636865636B5F626970_2X66696C655F7065726D697373696F6E_2X235C5C2F_2Un_Proper_ListX736565_1X666F726D6174_2Create_PredX62696E645F7661726961626C6573_2resource_print_object_not_linkedUnify_VoidWrite_Term_1X6C6F6164_1X2466696E645F6C696E656469745F636F6D706C6574696F6E5F616C74_0Call_With_Args_10X72656164_1X617267756D656E745F76616C7565_2Detect_If_Aux_NameX6C65617368_1atom_trueX246E746832_4existence_sr_descriptorMost_Significant_BitReset_Prolog_In_SignalCreate_Functor_Arity_TaggedX246C61737431_3Format_To_Chars_3Full_Sqrt_VarX617263686974656374757265_1X247468726F775F696E7465726E616C_2Globalize_If_In_LocalX66645F646F6D_2X2463757272656E745F636861725F636F6E76657273696F6E5F616C74_0Sys_Var_Read_2Vector_Mul_ValueSR_Set_Error_Counters_3Range_Next_AfterX247365745F6F70656E5F64656661756C7473_0Calloc_CheckRd_Chars_Str_CheckSub_Atom_5truth_x_lte_cX73725F77726974655F6572726F72_4Fd_All_Different_1X246C6F616431_1X242464656275675F706F72745F69676E6F72652F345F2461757833_3Syntax_ErrorBlt_AtomicX726561645F696E7465676572_2M_SpawnFct_Fast_AbsStatistics_Local_Stack_2X246765745F686561645F616E645F626F6479_3X2464656275675F63616C6C31_8strncpy@@GLIBC_2.0Range_Set_ValueX24636865636B5F6C697374_1domain_character_code_listUn_Number_CheckX2424636F6E73756C74322F315F2461757833_2X247573655F6C655F696E74657266_0Group_Solutions_Alt_0Writeq_To_Codes_2X24636174636831_4Set_Last_Syntax_ErrorX24657865635F636D6431_1X24726561645F72657475726E_0X636C6F73655F696E7075745F63686172735F73747265616D_1Fct_Decx_plus_c_eq_yDcg_Trans_Body_4Format_3Blt_CompareFct_Sinfopen@@GLIBC_2.1dup@@GLIBC_2.0Call_With_Args_2type_fd_bool_evaluableFct_IncX3D_2domain_os_pathpermission_operation_inputCall_With_Args_8Put_ListX67656E657269635F766172_1X61746F6D5F636F646573_2Mk_CompoundX2424657865635F636D645F6C696E655F676F616C2F315F2461757831_1_setjmp@@GLIBC_2.0X24666F725F616C74_0Fct_Subtruth_x_plus_c_neq_yX675F696E63_3X6765745F62797465_2Put_Char_2SR_Get_Include_Stream_List_2Context_Error_1Vector_Mod_VectorX242473725F646972656374697665312F325F2461757833_2X7368656C6C_1X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757833_1X2464656275675F646973705F68656C70_0M_ShellX646973706C61795F746F5F6368617273_2le_hook_get_char0Hash_NextSR_Stop_Module_3X7375626C697374_2M_Sys_Err_Stringtag_tblCheck_For_Un_IntegerSR_Get_Module_3Fd_Bool_Meta_3X726561645F7465726D5F66726F6D5F636F646573_3X24636865636B5F6C6973745F6F725F7061727469616C5F6C697374_1X63616C6C5F776974685F61726773_3Peek_Code_2Rd_In_Code_Checkescape_charBlt_G_Test_Reset_BitUn_CompoundSet_Debugger_Streams_2_IO_stdin_usedX7365745F73747265616D5F706F736974696F6E_2X726561645F746F6B656E5F66726F6D5F6368617273_2X726561645F746F6B656E_2Directory_Files_2X2463616C6C5F7465726D5F657870616E73696F6E_2Put_Code_2Stdio_Desc_Of_Streamchar_typeX233D_2X756E6C696E6B_1Blt_Term_GteFd_Tell_Range_RangeX247363616E5F64796E5F746573745F616C74_0Blt_Term_NeqX2464656275675F706F72745F70726F6D7074_6X242472656D6F76655F756E64657273636F72655F766172732F325F2461757831_2X247472795F706F7274726179_1Unset_C_Bip_NameX726561645F7465726D_3Call_Prolog_Next_SolX247573655F636861725F696F_0strtok@@GLIBC_2.0X2473725F73746172745F6D6F64756C65_3sys_varkill@@GLIBC_2.0X77726974655F63616E6F6E6963616C_1X246765745F62696E645F7661726961626C65735F6F7074696F6E73_4X2424726561645F71756572792F325F2461757831_1permission_type_operatorDelete_Opertruth_x_lte_yUpdate_Choice_Point2SR_Check_Descriptor_1Blt_Fast_GteX2463617463685F615F7468726F77_5X77616974_2getc@@GLIBC_2.0SR_Start_Module_3domain_os_file_permissionle_hook_message_boxtruth_x_plus_c_eq_yparse_dico_vartokenX2463757272656E745F70726F6C6F675F666C61675F616C74_0Un_Char_CheckDcg_Trans_Rule_2permission_operation_modifyX24737461746973746963732F325F2461757831_3Check_For_Un_ByteBlt_G_Inc_3X756E6966795F776974685F6F63637572735F636865636B_2Set_Bip_Name_2X247365745F726561645F64656661756C7473_0Add_Mirror_To_Streamatom_end_of_filex_power_a_eq_y_FX63757272656E745F6F70_3Set_Ctrl_C_Handler_0Hash_Insertstm_outputBlt_ListFlush_All_StreamsX7365656B_4Find_Stream_From_PStmparse_nb_varX7072696E745F746F5F6368617273_2domain_stream_seek_methodX726561645F66726F6D5F6368617273_2Rd_NumberFull_Find_ExponFloat_To_Stringatom_user_outputRd_IntegerLoad_Left_RightX2464656275675F706F727431_6sprintf@@GLIBC_2.0X403E_2Fd_Lte_2x_lt_yUntrailRead_From_Chars_2fwrite@@GLIBC_2.0Scan_Dynamic_Pred_Alt_0X6368617261637465725F636F756E74_2X247573655F66645F7072696D65_0Fd_Size_2Unify_AtomFct_Fast_SubX77726974655F63616E6F6E6963616C5F746F5F6368617273_2X246372656174655F636F6C756D6E_3__data_startScan_Next_NumberBlt_GtFd_Dom_2realpath@@GLIBC_2.3sin@@GLIBC_2.0X617267756D656E745F6C697374_1Read_Term_From_Atom_5Fd_Domain_2X706F7274726179_1X2462696E645F7661726961626C6573_4Fd_Prolog_To_Array_AnyX73725F6765745F73697A655F636F756E74657273_3socket@@GLIBC_2.0Current_Prolog_Flag_2X24636865636B5F6F776E65725F66696C6573_3Fd_Set_Vector_Max_1Term_Ref_2Not_Prime_RangeX617070656E64_3X247365745F73747265616D5F656F665F616374696F6E2F325F2461757831_1X646174655F74696D65_1File_Prop_Size_2Un_Byte_IO_getc@@GLIBC_2.0Vector_Interreaddir@@GLIBC_2.0X246765745F62696E645F7661726961626C65735F6F7074696F6E7332_1Check_Valid_Mirror_1X24636865636B5F6C6973745F617267_2_Jv_RegisterClasses__ctype_b_loc@@GLIBC_2.3X2463616C6C5F66726F6D5F6465627567676572_2Fct_Floatle_hook_eraseX247379735F7661725F6765745F626974_3X736574617267_3Unify_StructureFind_Expon_ExactX2462635F73746172745F656D6974_0Pl_Err_TypeX7365656E_0Socket_2rand@@GLIBC_2.0Fd_List_Int_To_Rangetruth_x_eq_cX6765745F62797465_1Recover_Generator_1X2473725F6F70656E5F6E65775F70726F6C6F675F66696C65_1X73796E7461785F6572726F725F696E666F_4Read_Token_From_Codes_2evluation_underflowx_plus_c_neq_yfull_acHash_Free_TableFct_NegX235C5C3D3D3E_2X247573655F61726974685F696E6C_0Blt_ArgRd_Codes_Str_CheckX2464656275675F657865635F636D64_6X636C6F7365_2X242464656275675F63616C6C5F706F72742F355F2461757831_3Writeq_To_Atom_2Save_Call_Info_3X636F6E73756C74_1Rd_Char_Checkbsearch@@GLIBC_2.0log@@GLIBC_2.0fd_copy_variableX2424746F705F6C6576656C322F305F2461757832_1X7365745F70726F6C6F675F666C6167_2X73797374656D_2quot_rem_x_a_r_eq_zX77616D5F6465627567_0Real_Time_1fd_unify_with_integerX3D2E2E_2X242464656275675F706F72745F69676E6F72652F345F2461757832_5X242464656275675F77726974655F676F616C2F345F2461757831_2Emit_Ctrl_CX24696E69745F6465627567676572_0X247365745F73747265616D5F656F665F616374696F6E2F325F2461757832_2Call_With_Args_1Fd_Prolog_To_Rangeescape_symbolChar_Conversion_2tcgetattr@@GLIBC_2.0LE_Put_CharUn_Codes_CheckX2424636865636B5F696E5F6368617261637465725F636F64652F315F2461757831_1read@@GLIBC_2.0Print_To_Chars_2representation_too_many_variablesIndomain_2quot_rem_a_y_r_eq_z_FX736F636B65745F616363657074_3Blt_Ltglob_dico_varX247379735F7661725F7772697465_2X24696E646F6D61696E5F6D696E5F616C74_0Stop_Mark_1Copy_Contiguous_TermTPX24657865635F7175657279_2Current_Input_1X2463617463685F696E7465726E616C_4x_plus_c_gte_yX675F646563_1Get_Structure_TaggedLE_Ins_ModeRange_Reset_Valuepi_arity_wordPortray_Clause_2X2463757272656E745F73747265616D_1Io_Fileno_Of_StreamX63616C6C5F776974685F61726773_7X246765745F6F70656E5F6F7074696F6E73_1X666F726D61745F746F5F6368617273_3Create_Choice_Point2Peek_Char_1LE_Kbd_Is_Not_EmptyGet_Key_No_Echo_2Sys_Var_Reset_Bit_2Range_Test_ValueX64656C6574655F6469726563746F7279_1X2466645F646F6D61696E_3Socket_Listen_2X247375626C69737431_3X66696C655F657869737473_1X2424746F705F6C6576656C322F305F2461757834_3ax_plus_y_plus_z_eq_t_FGet_Nilx_or_y_eq_1LE_Screen_SizePred_Prop_Built_In_1Read_From_Atom_2X73746174697374696373_2X636C6F73655F6F75747075745F63686172735F73747265616D_2Absolute_File_Name_2type_numberFd_Vector_Max_1Sort_List_1atom_void__gmon_start__strcpy@@GLIBC_2.0Recover_After_Errormin_x_a_eq_z_FX247573655F6F735F696E74657266_0le_hook_displUnget_Byte_1 2171 16787:5O A abi-note.S../sysdeps/i386/elf/start.Sinit.cinitfini.c/build/buildd/glibc-2.3.6/build-tree/i386-libc/csu/crti.Scall_gmon_startcrtstuff.c__CTOR_LIST____DTOR_LIST____JCR_LIST__p.0completed.1__do_global_dtors_auxframe_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_aux/build/buildd/glibc-2.3.6/build-tree/i386-libc/csu/crtn.Sobj_begin.cfailLpred1_3Lpred1_1stLpred1_2Lpred1_sub_0Lpred1_14Lpred1_sub_1Lpred1_16Lpred1_18Lpred1_5Lpred1_4fntaLpred1_7Lpred1_6Lpred1_9Lpred1_8Lpred1_11Lpred1_10Lpred1_13Lpred1_12Lpred1_15Lpred1_17Lpred1_19Lpred1_20Lpred4_1directive_1directive_2directive_3directive_4directive_5directive_6directive_7directive_8directive_9directive_10directive_11directive_12directive_13directive_14directive_15directive_16directive_17directive_18directive_19directive_20Object_InitializerSystem_DirectivesUser_Directivesatobj_chain_startobj_chain_stopLpred3_1Lpred10_1Lpred12_1Lpred13_1Lpred14_1Lpred15_1Lpred16_1Lpred17_1Lpred18_1Lpred18_2Lpred19_1Lpred20_2Lpred20_1Lpred20_4Lpred20_3Lpred20_6Lpred20_5Lpred20_7Lpred21_1Lpred22_1Lpred24_1Lpred25_1Lpred27_2Lpred27_3Lpred27_1Lpred27_sub_0Lpred27_5Lpred27_7Lpred27_4Lpred27_6Lpred28_1Lpred29_1Lpred30_1Lpred31_1Lpred31_2Lpred31_4Lpred31_3Lpred33_10Lpred33_2Lpred33_1Lpred33_5Lwork0Lpred33_3Lpred33_9Lpred33_7Lpred33_4Lpred33_6Lpred33_8Lpred34_1Lpred36_1ensure_linkedLpred10_2Lpred10_4Lpred10_3Lpred10_6Lpred10_5Lpred10_7Lpred12_13Lpred12_3Lpred12_2Lpred12_5Lpred12_4Lpred12_7Lpred12_6Lpred12_9Lpred12_8Lpred12_11Lpred12_10Lpred12_12Lpred12_14Lpred13_2Lpred13_4Lpred13_3Lpred18_4Lpred18_3Lpred18_6Lpred18_5Lpred18_8Lpred18_7Lpred18_10Lpred18_9Lpred18_11Lpred21_2Lpred23_1Lpred26_1Lpred29_2Lpred29_4Lpred29_3Lpred32_1Lpred35_1Lpred36_8Lpred36_2Lpred36_3Lpred36_5Lpred36_7Lpred36_4Lpred36_6Lpred36_9Lpred37_1Lpred37_2Lpred37_3Lpred38_1Lpred39_1Lpred39_2Lpred40_1Lpred41_23Lpred41_3Lpred41_1Lpred41_2Lpred41_5Lpred41_4Lpred41_7Lpred41_6Lpred41_9Lpred41_8Lpred41_11Lpred41_10Lpred41_13Lpred41_12Lpred41_15Lpred41_14Lpred41_17Lpred41_16Lpred41_19Lpred41_18Lpred41_21Lpred41_20Lpred41_22Lpred42_1Lpred42_2Lpred42_4Lpred42_3Lpred43_1Lpred43_2Lpred44_1Lpred46_1Lpred47_1Lpred50_1Lpred51_1Lpred52_4Lpred52_1Lpred52_3Lpred52_2Lpred52_sub_0Lpred52_7Lpred52_9Lpred52_6Lpred52_5Lpred52_8Lpred52_10Lpred52_12Lpred52_11Lpred52_14Lpred52_13Lpred52_15Lpred53_1Lpred54_1Lpred55_1Lpred57_1Lpred60_1Lpred60_66Lpred60_6Lpred60_2Lpred60_3Lpred60_sub_0Lpred60_11Lpred60_13Lpred60_4Lpred60_sub_1Lpred60_17Lpred60_19Lpred60_5Lpred60_sub_2Lpred60_21Lpred60_23Lpred60_8Lpred60_7Lpred60_10Lpred60_9Lpred60_12Lpred60_14Lpred60_16Lpred60_15Lpred60_18Lpred60_20Lpred60_22Lpred60_24Lpred60_26Lpred60_25Lpred60_28Lpred60_27Lpred60_30Lpred60_29Lpred60_32Lpred60_31Lpred60_34Lpred60_33Lpred60_36Lpred60_35Lpred60_38Lpred60_37Lpred60_40Lpred60_39Lpred60_42Lpred60_41Lpred60_44Lpred60_43Lpred60_46Lpred60_45Lpred60_48Lpred60_47Lpred60_50Lpred60_49Lpred60_52Lpred60_51Lpred60_54Lpred60_53Lpred60_56Lpred60_55Lpred60_58Lpred60_57Lpred60_60Lpred60_59Lpred60_62Lpred60_61Lpred60_64Lpred60_63Lpred60_65Lpred61_1Lpred62_1Lpred63_1Lpred64_1Lpred65_1Lpred66_1Lpred67_2Lpred67_1Lpred67_4Lpred67_3Lpred67_6Lpred67_5Lpred67_7Lpred69_1Lpred70_2Lpred70_1Lpred70_4Lpred70_3Lpred70_6Lpred70_5Lpred70_8Lpred70_7Lpred70_10Lpred70_9Lpred70_12Lpred70_11Lpred70_13Lpred72_1Lpred72_2Lpred72_4Lpred72_3Lpred74_1Lpred74_2Lpred74_4Lpred74_3Lpred75_1Lpred76_1Lpred76_2Lpred76_8Lpred76_4Lpred76_3Lpred76_6Lpred76_5Lpred76_7Lpred76_9Lpred77_1Lpred78_1Lpred81_1Lpred11_1Lpred14_2Lpred14_4Lpred14_3Lpred15_11Lpred15_3Lpred15_2Lpred15_5Lpred15_4Lpred15_7Lpred15_6Lpred15_9Lpred15_8Lpred15_10Lpred16_2Lpred16_4Lpred16_3Lpred16_5Lpred17_2Lpred17_4Lpred17_3Lpred17_6Lpred17_5Lpred17_8Lpred17_7Lpred17_10Lpred17_9Lpred17_11Lpred18_12Lpred18_14Lpred18_13Lpred18_16Lpred18_15Lpred18_17Indomain_MinIndomain_MaxIndomain_MiddleIndomain_LimitsIndomain_RandomCmp_First_FailCmp_Most_ConstrainedCmp_SmallestCmp_LargestCmp_Max_Regretfd_domain_bloc_1fd_domain_r_bloc_1x_plus_c_eq_y_bloc_1x_plus_c_eq_y_bloc_2x_plus_c_eq_y_F_bloc_1x_plus_c_eq_y_F_bloc_2x_plus_c_neq_y_bloc_1x_plus_c_neq_y_bloc_2x_plus_c_lte_y_bloc_1x_plus_c_lte_y_bloc_2x_plus_c_gte_y_bloc_1x_plus_c_gte_y_bloc_2ax_eq_y_bloc_1ax_eq_y_bloc_2x_plus_y_eq_z_bloc_1x_plus_y_eq_z_bloc_2x_plus_y_eq_z_bloc_3ax_plus_y_eq_z_bloc_1ax_plus_y_eq_z_bloc_2ax_plus_y_eq_z_bloc_3ax_plus_by_eq_z_bloc_1ax_plus_by_eq_z_bloc_2ax_plus_by_eq_z_bloc_3x_plus_y_plus_z_eq_t_bloc_1x_plus_y_plus_z_eq_t_bloc_2x_plus_y_plus_z_eq_t_bloc_3x_plus_y_plus_z_eq_t_bloc_4ax_plus_y_plus_z_eq_t_bloc_1ax_plus_y_plus_z_eq_t_bloc_2ax_plus_y_plus_z_eq_t_bloc_3ax_plus_y_plus_z_eq_t_bloc_4ax_plus_by_plus_z_eq_t_bloc_1ax_plus_by_plus_z_eq_t_bloc_2ax_plus_by_plus_z_eq_t_bloc_3ax_plus_by_plus_z_eq_t_bloc_4ax_eq_y_F_bloc_1ax_eq_y_F_bloc_2x_plus_y_eq_z_F_bloc_1x_plus_y_eq_z_F_bloc_2x_plus_y_eq_z_F_bloc_3ax_plus_y_eq_z_F_bloc_1ax_plus_y_eq_z_F_bloc_2ax_plus_y_eq_z_F_bloc_3ax_plus_by_eq_z_F_bloc_1ax_plus_by_eq_z_F_bloc_2ax_plus_by_eq_z_F_bloc_3x_plus_y_plus_z_eq_t_F_bloc_1x_plus_y_plus_z_eq_t_F_bloc_2x_plus_y_plus_z_eq_t_F_bloc_3x_plus_y_plus_z_eq_t_F_bloc_4ax_plus_y_plus_z_eq_t_F_bloc_1ax_plus_y_plus_z_eq_t_F_bloc_2ax_plus_y_plus_z_eq_t_F_bloc_3ax_plus_y_plus_z_eq_t_F_bloc_4ax_plus_by_plus_z_eq_t_F_bloc_1ax_plus_by_plus_z_eq_t_F_bloc_2ax_plus_by_plus_z_eq_t_F_bloc_3ax_plus_by_plus_z_eq_t_F_bloc_4a_power_n_eq_y_bloc_1a_power_n_eq_y_bloc_2x_power_a_eq_y_bloc_1x_power_a_eq_y_bloc_2xy_eq_z_bloc_1xy_eq_z_bloc_2xy_eq_z_bloc_3a_power_n_eq_y_F_bloc_1a_power_n_eq_y_F_bloc_2x_power_a_eq_y_F_bloc_1x_power_a_eq_y_F_bloc_2xy_eq_z_F_bloc_1xy_eq_z_F_switch_1_instmin_x_y_eq_z_bloc_1min_x_y_eq_z_bloc_2min_x_y_eq_z_bloc_3min_x_y_eq_z_bloc_4min_x_y_eq_z_bloc_5min_x_y_eq_z_switch_1_instmin_x_a_eq_z_bloc_1min_x_a_eq_z_bloc_2min_x_a_eq_z_bloc_3min_x_a_eq_z_bloc_4min_x_a_eq_z_switch_1min_x_a_eq_z_case_group_1min_x_y_eq_z_F_bloc_1min_x_y_eq_z_F_bloc_2min_x_y_eq_z_F_bloc_3min_x_y_eq_z_F_bloc_4min_x_y_eq_z_F_bloc_5min_x_y_eq_z_F_switch_1_instmin_x_a_eq_z_F_bloc_1min_x_a_eq_z_F_bloc_2min_x_a_eq_z_F_bloc_3min_x_a_eq_z_F_bloc_4min_x_a_eq_z_F_switch_1min_x_a_eq_z_F_case_group_1max_x_y_eq_z_bloc_1max_x_y_eq_z_bloc_2max_x_y_eq_z_bloc_3max_x_y_eq_z_bloc_4max_x_y_eq_z_bloc_5max_x_y_eq_z_switch_1_instmax_x_a_eq_z_bloc_1max_x_a_eq_z_bloc_2max_x_a_eq_z_bloc_3max_x_a_eq_z_bloc_4max_x_a_eq_z_switch_1max_x_a_eq_z_case_group_1max_x_y_eq_z_F_bloc_1max_x_y_eq_z_F_bloc_2max_x_y_eq_z_F_bloc_3max_x_y_eq_z_F_bloc_4max_x_y_eq_z_F_bloc_5max_x_y_eq_z_F_switch_1_instmax_x_a_eq_z_F_bloc_1max_x_a_eq_z_F_bloc_2max_x_a_eq_z_F_bloc_3max_x_a_eq_z_F_bloc_4max_x_a_eq_z_F_switch_1max_x_a_eq_z_F_case_group_1abs_x_minus_y_eq_z_bloc_1abs_x_minus_y_eq_z_bloc_2abs_x_minus_y_eq_z_bloc_3abs_x_minus_y_eq_z_switch_1_instabs_x_minus_a_eq_z_bloc_1abs_x_minus_a_eq_z_bloc_2abs_x_minus_a_eq_z_switch_1abs_x_minus_a_eq_z_case_group_2abs_x_minus_a_eq_z_case_group_1abs_x_minus_y_eq_z_F_bloc_1abs_x_minus_y_eq_z_F_bloc_2abs_x_minus_y_eq_z_F_bloc_3abs_x_minus_y_eq_z_F_switch_1_instabs_x_minus_a_eq_z_F_bloc_1abs_x_minus_a_eq_z_F_bloc_2abs_x_minus_a_eq_z_F_switch_1abs_x_minus_a_eq_z_F_case_group_2abs_x_minus_a_eq_z_F_case_group_1quot_rem_x_y_r_eq_z_bloc_1quot_rem_x_y_r_eq_z_bloc_2quot_rem_x_y_r_eq_z_bloc_3quot_rem_x_y_r_eq_z_bloc_4quot_rem_x_y_r_eq_z_bloc_5quot_rem_x_y_r_eq_z_bloc_6quot_rem_x_y_r_eq_z_bloc_7quot_rem_x_y_r_eq_z_switch_1quot_rem_x_y_r_eq_z_bloc_8_instquot_rem_a_y_r_eq_z_bloc_1quot_rem_a_y_r_eq_z_bloc_2quot_rem_a_y_r_eq_z_bloc_3quot_rem_a_y_r_eq_z_bloc_4quot_rem_a_y_r_eq_z_bloc_5quot_rem_a_y_r_eq_z_switch_1quot_rem_a_y_r_eq_z_bloc_6_instquot_rem_x_a_r_eq_z_bloc_1quot_rem_x_a_r_eq_z_bloc_2quot_rem_x_a_r_eq_z_bloc_3quot_rem_x_a_r_eq_z_bloc_4quot_rem_x_a_r_eq_z_bloc_5quot_rem_x_y_r_eq_z_F_bloc_1quot_rem_x_y_r_eq_z_F_bloc_2quot_rem_x_y_r_eq_z_F_bloc_3quot_rem_x_y_r_eq_z_F_bloc_4quot_rem_x_y_r_eq_z_F_bloc_5quot_rem_x_y_r_eq_z_F_bloc_6quot_rem_x_y_r_eq_z_F_bloc_7quot_rem_x_y_r_eq_z_F_switch_1quot_rem_x_y_r_eq_z_F_bloc_8_instquot_rem_a_y_r_eq_z_F_bloc_1quot_rem_a_y_r_eq_z_F_bloc_2quot_rem_a_y_r_eq_z_F_bloc_3quot_rem_a_y_r_eq_z_F_bloc_4quot_rem_a_y_r_eq_z_F_bloc_5quot_rem_a_y_r_eq_z_F_switch_1quot_rem_a_y_r_eq_z_F_bloc_6_instquot_rem_x_a_r_eq_z_F_bloc_1quot_rem_x_a_r_eq_z_F_bloc_2quot_rem_x_a_r_eq_z_F_bloc_3quot_rem_x_a_r_eq_z_F_bloc_4quot_rem_x_a_r_eq_z_F_bloc_5x_eq_y_bloc_1x_eq_y_bloc_2x_eq_y_F_bloc_1x_eq_y_F_bloc_2x_neq_y_bloc_1_instx_neq_y_bloc_2_instx_lt_y_bloc_1x_lt_y_bloc_2x_lte_c_bloc_1x_lte_y_bloc_1x_lte_y_bloc_2x_gte_c_bloc_1zero_power_n_eq_y_bloc_1zero_power_n_eq_y_bloc_2x2_eq_y_bloc_1x2_eq_y_bloc_2x2_eq_y_F_bloc_1x2_eq_y_F_bloc_2x_neq_y_bloc_1x_neq_y_bloc_2xy_eq_z_F_switch_1min_x_y_eq_z_switch_1min_x_y_eq_z_case_group_2min_x_y_eq_z_case_group_1min_x_a_eq_z_bloc_5min_x_a_eq_z_bloc_6min_x_y_eq_z_F_switch_1min_x_a_eq_z_F_bloc_5min_x_a_eq_z_F_bloc_6max_x_y_eq_z_switch_1max_x_y_eq_z_case_group_2max_x_y_eq_z_case_group_1max_x_a_eq_z_bloc_5max_x_a_eq_z_bloc_6max_x_y_eq_z_F_switch_1max_x_a_eq_z_F_bloc_5max_x_a_eq_z_F_bloc_6abs_x_minus_y_eq_z_switch_1abs_x_minus_y_eq_z_case_group_2abs_x_minus_y_eq_z_case_group_1abs_x_minus_a_eq_z_bloc_3abs_x_minus_a_eq_z_bloc_4abs_x_minus_a_eq_z_bloc_5abs_x_minus_a_eq_z_bloc_6abs_x_minus_y_eq_z_F_switch_1abs_x_minus_y_eq_z_F_case_group_2abs_x_minus_y_eq_z_F_case_group_1abs_x_minus_a_eq_z_F_bloc_3abs_x_minus_a_eq_z_F_bloc_4abs_x_minus_a_eq_z_F_bloc_5abs_x_minus_a_eq_z_F_bloc_6quot_rem_x_y_r_eq_z_bloc_8quot_rem_a_y_r_eq_z_bloc_6quot_rem_x_y_r_eq_z_F_bloc_8quot_rem_a_y_r_eq_z_F_bloc_6xy_eq_z_F_case_group_1xy_eq_z_F_bloc_5xy_eq_z_F_bloc_6min_x_y_eq_z_bloc_6min_x_y_eq_z_bloc_7min_x_y_eq_z_bloc_8min_x_y_eq_z_bloc_9min_x_y_eq_z_F_case_group_1min_x_y_eq_z_F_case_group_2max_x_y_eq_z_bloc_6max_x_y_eq_z_bloc_7max_x_y_eq_z_bloc_8max_x_y_eq_z_bloc_9max_x_y_eq_z_F_case_group_1max_x_y_eq_z_F_case_group_2abs_x_minus_y_eq_z_bloc_4abs_x_minus_y_eq_z_bloc_5abs_x_minus_y_eq_z_bloc_6abs_x_minus_y_eq_z_bloc_7abs_x_minus_y_eq_z_bloc_8abs_x_minus_y_eq_z_bloc_9abs_x_minus_y_eq_z_F_bloc_4abs_x_minus_y_eq_z_F_bloc_5abs_x_minus_y_eq_z_F_bloc_6abs_x_minus_y_eq_z_F_bloc_7abs_x_minus_y_eq_z_F_bloc_8abs_x_minus_y_eq_z_F_bloc_9xy_eq_z_F_bloc_2xy_eq_z_F_bloc_3xy_eq_z_F_bloc_4min_x_y_eq_z_F_bloc_6min_x_y_eq_z_F_bloc_7min_x_y_eq_z_F_bloc_8min_x_y_eq_z_F_bloc_9max_x_y_eq_z_F_bloc_6max_x_y_eq_z_F_bloc_7max_x_y_eq_z_F_bloc_8max_x_y_eq_z_F_bloc_9Fd_Bool_Initializerbool_tblbool_xorSet_Notfunc_tblSet_EquivSet_NequivSet_ImplySet_NimplySet_AndSet_NandSet_OrSet_NorSet_EqSet_NeqSet_LtSet_LteSet_ZeroSet_Onestackspvars_tblvars_spSimplifyLoad_Bool_Into_WordAdd_Fd_VariablesSet_Varx_equiv_y_eq_b_bloc_1x_equiv_y_eq_b_bloc_2x_equiv_y_eq_b_bloc_3x_nequiv_y_eq_b_bloc_1x_nequiv_y_eq_b_bloc_2x_nequiv_y_eq_b_bloc_3x_imply_y_eq_b_bloc_1x_imply_y_eq_b_bloc_2x_imply_y_eq_b_bloc_3x_nimply_y_eq_b_bloc_1x_nimply_y_eq_b_bloc_2x_nimply_y_eq_b_bloc_3x_and_y_eq_b_bloc_1x_and_y_eq_b_bloc_2x_and_y_eq_b_bloc_3x_nand_y_eq_b_bloc_1x_nand_y_eq_b_bloc_2x_nand_y_eq_b_bloc_3x_or_y_eq_b_bloc_1x_or_y_eq_b_bloc_2x_or_y_eq_b_bloc_3x_nor_y_eq_b_bloc_1x_nor_y_eq_b_bloc_2x_nor_y_eq_b_bloc_3truth_x_eq_c_switch_1_insttruth_x_eq_y_switch_1_insttruth_x_plus_c_eq_y_switch_1_insttruth_x_eq_c_F_switch_1_insttruth_x_eq_y_F_switch_1_insttruth_x_plus_c_eq_y_F_switch_1_insttruth_x_neq_c_switch_1_insttruth_x_neq_y_switch_1_insttruth_x_plus_c_neq_y_switch_1_insttruth_x_neq_c_F_switch_1_insttruth_x_neq_y_F_switch_1_insttruth_x_plus_c_neq_y_F_switch_1_insttruth_x_lt_y_switch_1_insttruth_x_lte_c_switch_1_insttruth_x_lte_y_switch_1_insttruth_x_plus_c_lte_y_switch_1_insttruth_x_gte_c_switch_1_insttruth_x_plus_c_gte_y_switch_1_instnot_x_eq_b_bloc_1_instnot_x_eq_b_bloc_2_instx_imply_y_eq_1_bloc_1x_imply_y_eq_1_bloc_2x_and_y_eq_0_bloc_1x_and_y_eq_0_bloc_2x_or_y_eq_1_bloc_1x_or_y_eq_1_bloc_2not_x_eq_b_bloc_1not_x_eq_b_bloc_2truth_x_eq_c_switch_1truth_x_eq_y_switch_1truth_x_plus_c_eq_y_switch_1truth_x_eq_c_F_switch_1truth_x_eq_y_F_switch_1truth_x_plus_c_eq_y_F_switch_1truth_x_neq_c_switch_1truth_x_neq_y_switch_1truth_x_plus_c_neq_y_switch_1truth_x_neq_c_F_switch_1truth_x_neq_y_F_switch_1truth_x_plus_c_neq_y_F_switch_1truth_x_lt_y_switch_1truth_x_lte_c_switch_1truth_x_lte_y_switch_1truth_x_plus_c_lte_y_switch_1truth_x_gte_c_switch_1truth_x_plus_c_gte_y_switch_1truth_x_eq_c_bloc_3truth_x_eq_c_bloc_4truth_x_eq_c_bloc_2truth_x_eq_c_bloc_1truth_x_eq_y_bloc_5truth_x_eq_y_bloc_6truth_x_eq_y_case_group_2truth_x_eq_y_case_group_1truth_x_plus_c_eq_y_bloc_5truth_x_plus_c_eq_y_bloc_6truth_x_plus_c_eq_y_case_group_2truth_x_plus_c_eq_y_case_group_1truth_x_eq_c_F_bloc_4truth_x_eq_c_F_bloc_3truth_x_eq_c_F_bloc_2truth_x_eq_c_F_bloc_1truth_x_eq_y_F_bloc_6truth_x_eq_y_F_bloc_5truth_x_eq_y_F_case_group_2truth_x_eq_y_F_case_group_1truth_x_plus_c_eq_y_F_bloc_6truth_x_plus_c_eq_y_F_bloc_5truth_x_plus_c_eq_y_F_case_group_2truth_x_plus_c_eq_y_F_case_group_1truth_x_neq_c_bloc_4truth_x_neq_c_bloc_3truth_x_neq_c_bloc_2truth_x_neq_c_bloc_1truth_x_neq_y_bloc_6truth_x_neq_y_bloc_5truth_x_neq_y_case_group_2truth_x_neq_y_case_group_1truth_x_plus_c_neq_y_bloc_6truth_x_plus_c_neq_y_bloc_5truth_x_plus_c_neq_y_case_group_2truth_x_plus_c_neq_y_case_group_1truth_x_neq_c_F_bloc_4truth_x_neq_c_F_bloc_3truth_x_neq_c_F_bloc_2truth_x_neq_c_F_bloc_1truth_x_neq_y_F_bloc_6truth_x_neq_y_F_bloc_5truth_x_neq_y_F_case_group_2truth_x_neq_y_F_case_group_1truth_x_plus_c_neq_y_F_bloc_6truth_x_plus_c_neq_y_F_bloc_5truth_x_plus_c_neq_y_F_case_group_2truth_x_plus_c_neq_y_F_case_group_1truth_x_lt_y_bloc_6truth_x_lt_y_bloc_5truth_x_lt_y_case_group_2truth_x_lt_y_case_group_1truth_x_lte_c_bloc_4truth_x_lte_c_bloc_3truth_x_lte_c_bloc_2truth_x_lte_c_bloc_1truth_x_lte_y_bloc_6truth_x_lte_y_bloc_5truth_x_lte_y_case_group_2truth_x_lte_y_case_group_1truth_x_plus_c_lte_y_bloc_6truth_x_plus_c_lte_y_bloc_5truth_x_plus_c_lte_y_case_group_2truth_x_plus_c_lte_y_case_group_1truth_x_gte_c_bloc_4truth_x_gte_c_bloc_3truth_x_gte_c_bloc_2truth_x_gte_c_bloc_1truth_x_plus_c_gte_y_bloc_6truth_x_plus_c_gte_y_bloc_5truth_x_plus_c_gte_y_case_group_2truth_x_plus_c_gte_y_case_group_1truth_x_eq_y_bloc_1_insttruth_x_eq_y_bloc_2_insttruth_x_eq_y_bloc_3truth_x_eq_y_bloc_4truth_x_plus_c_eq_y_bloc_1_insttruth_x_plus_c_eq_y_bloc_2_insttruth_x_plus_c_eq_y_bloc_3truth_x_plus_c_eq_y_bloc_4truth_x_eq_y_F_bloc_1_insttruth_x_eq_y_F_bloc_2_insttruth_x_eq_y_F_bloc_3truth_x_eq_y_F_bloc_4truth_x_plus_c_eq_y_F_bloc_1_insttruth_x_plus_c_eq_y_F_bloc_2_insttruth_x_plus_c_eq_y_F_bloc_3truth_x_plus_c_eq_y_F_bloc_4truth_x_neq_y_bloc_1truth_x_neq_y_bloc_2truth_x_neq_y_bloc_3_insttruth_x_neq_y_bloc_4_insttruth_x_plus_c_neq_y_bloc_1truth_x_plus_c_neq_y_bloc_2truth_x_plus_c_neq_y_bloc_3_insttruth_x_plus_c_neq_y_bloc_4_insttruth_x_neq_y_F_bloc_1truth_x_neq_y_F_bloc_2truth_x_neq_y_F_bloc_3_insttruth_x_neq_y_F_bloc_4_insttruth_x_plus_c_neq_y_F_bloc_1truth_x_plus_c_neq_y_F_bloc_2truth_x_plus_c_neq_y_F_bloc_3_insttruth_x_plus_c_neq_y_F_bloc_4_insttruth_x_lt_y_bloc_1truth_x_lt_y_bloc_2truth_x_lt_y_bloc_3truth_x_lt_y_bloc_4truth_x_lte_y_bloc_1truth_x_lte_y_bloc_2truth_x_lte_y_bloc_3truth_x_lte_y_bloc_4truth_x_plus_c_lte_y_bloc_1truth_x_plus_c_lte_y_bloc_2truth_x_plus_c_lte_y_bloc_3truth_x_plus_c_lte_y_bloc_4truth_x_plus_c_gte_y_bloc_1truth_x_plus_c_gte_y_bloc_2truth_x_plus_c_gte_y_bloc_3truth_x_plus_c_gte_y_bloc_4truth_x_eq_y_bloc_1truth_x_eq_y_bloc_2truth_x_plus_c_eq_y_bloc_1truth_x_plus_c_eq_y_bloc_2truth_x_eq_y_F_bloc_1truth_x_eq_y_F_bloc_2truth_x_plus_c_eq_y_F_bloc_1truth_x_plus_c_eq_y_F_bloc_2truth_x_neq_y_bloc_3truth_x_neq_y_bloc_4truth_x_plus_c_neq_y_bloc_3truth_x_plus_c_neq_y_bloc_4truth_x_neq_y_F_bloc_3truth_x_neq_y_F_bloc_4truth_x_plus_c_neq_y_F_bloc_3truth_x_plus_c_neq_y_F_bloc_4prime_x_bloc_1not_prime_x_bloc_1Lpred11_2Lpred11_4Lpred11_3Fd_All_Different_Recfd_element_bloc_1fd_element_bloc_2fd_element_bloc_3fd_element_var_bloc_1fd_element_var_bloc_2fd_element_var_bloc_3fd_element_var_bloc_4fd_atmost_bloc_1_instfd_atleast_bloc_1_instfd_exactly_bloc_1_instfd_atmost_bloc_1fd_atleast_bloc_1fd_exactly_bloc_1Lpred5_1Math_Supp_Initializerdelay_cstr_stackdelay_spLoad_Delay_Cstr_PartNormalizearith_tblsortLoad_Term_Into_WordLoad_PolyLoad_Poly_RecLoad_Left_Right_RecCompar_Monomtxp.0Find_Expon_Generalprime_vec_sizeCompute_Prime_Rangeprime_rangenot_prime_rangealways_datenever_dateAll_Propagationsdummy_fd_varbuff.0nb_bits_in_byte.1unify_x_y_bloc_1unify_x_y_bloc_2Error_Supp_Initializerlast_err_filec_bip_func_strc_bip_aritycur_bip_funccur_bip_aritylast_err_collast_err_linelast_err_msgInit_Stream_Suppstatic_str_stream_rdstatic_str_stream_wrtty_ptrstream_1atom_constant_term_streamword_current_input_streamword_current_output_streamTTY_GetcTTY_ClearerrFind_Free_Streamtty_linedit_depth.0tty_bufftty_first_buffStr_Stream_GetcStr_Stream_Putch.1Lpred2_1Lpred3_9Lpred3_3Lpred3_2Lpred3_5Lpred3_4Lpred3_7Lpred3_6Lpred3_8Lpred5_2Lpred6_1Lpred7_1Lpred8_1Lpred8_6Lpred8_2Lpred8_3Lpred8_5Lpred8_4Lpred9_1Lpred9_2Lpred7_2Clause_Altlast_clauseRetract_AltLpred9_4Lpred9_3Lpred10_13Lpred10_9Lpred10_8Lpred10_11Lpred10_10Lpred10_12Lpred11_5Lpred15_19Lpred15_13Lpred15_12Lpred15_15Lpred15_14Lpred15_17Lpred15_16Lpred15_18Lpred19_2Lpred19_4Lpred19_3Lpred19_5Lpred21_4Lpred21_3Lpred21_5Lpred4_2Lpred4_4Lpred4_3Oper_Initializeratom_specif_tblDetect_Oper_SpecifLpred10_24Lpred10_14Lpred10_16Lpred10_15Lpred10_18Lpred10_17Lpred10_20Lpred10_19Lpred10_22Lpred10_21Lpred10_23Lpred11_7Lpred11_6Lpred11_9Lpred11_8Lpred11_11Lpred11_10Lpred11_13Lpred11_12Lpred11_15Lpred11_14Lpred11_17Lpred11_16Lpred11_19Lpred11_18Lpred11_21Lpred11_20Lpred11_22Lpred23_18Lpred23_4Lpred23_2Lpred23_3Lpred23_6Lpred23_5Lpred23_8Lpred23_7Lpred23_10Lpred23_9Lpred23_12Lpred23_11Lpred23_14Lpred23_13Lpred23_16Lpred23_15Lpred23_17Lpred24_3Lpred24_2Lpred24_5Lpred24_4Lpred24_7Lpred24_6Lpred24_9Lpred24_8Lpred24_11Lpred24_10Lpred24_13Lpred24_12Lpred24_15Lpred24_14Lpred24_16Create_Malloc_AtomCompute_Next_BLAString_To_NumberLpred13_21Lpred13_5Lpred13_7Lpred13_6Lpred13_9Lpred13_8Lpred13_11Lpred13_10Lpred13_13Lpred13_12Lpred13_15Lpred13_14Lpred13_17Lpred13_16Lpred13_19Lpred13_18Lpred13_20Call_With_ArgsFlag_Initializeratom_flag_tblatom_downatom_toward_zeroatom_onatom_offatom_erroratom_warningatom_failatom_charsatom_codesatom_atomatom_chars_no_escapeatom_codes_no_escapeatom_atom_no_escapeatom_prologUnif_Flagcv.0Arith_InitializerLoad_Math_Expressionfix_bug.0G_Var_InitializerG_Assign_ArrayG_Alloc_ArrayG_Assign_ElementG_Free_ElementG_Copy_ElementGet_Target_From_SelectorGet_Target_From_GvarGet_Int_From_WordGet_Term_Addr_From_TargetGet_Int_Addr_From_Gvarg_targetatom_g_arrayG_Trail_For_BacktrackG_UntrailG_Read_Elementatom_g_array_autoatom_g_array_extendg_var_tblAll_Solut_InitializerdummysolExistential_Variablesexist_2Bound_Varkey_var_ptrHandle_Key_Variablessave_key_var_ptrnext_key_var_ptrLink_Key_VarGroupbound_var_ptrFree_Varnew_gen_wordfree_var_baseSort_InitializerMerge_SortKeysort_Cmpminus_2Lpred2_2Lpred2_4Lpred2_3Lpred7_4Lpred7_3Lpred9_sub_0Lpred9_5Lpred9_7Lpred9_6Lpred15_sub_0Lpred23_sub_0Lpred25_2Lpred25_3Lpred25_sub_0Lpred25_5Lpred25_7Lpred25_4Lpred25_6Lpred5_21Lpred5_3Lpred5_5Lpred5_4Lpred5_7Lpred5_6Lpred5_9Lpred5_8Lpred5_11Lpred5_10Lpred5_13Lpred5_12Lpred5_15Lpred5_14Lpred5_17Lpred5_16Lpred5_19Lpred5_18Lpred5_20Lpred6_3Lpred6_2Lpred6_5Lpred6_4Lpred6_7Lpred6_6Lpred6_9Lpred6_8Lpred6_11Lpred6_10Lpred6_13Lpred6_12Lpred6_15Lpred6_14Lpred6_16last_user_timelast_system_timelast_cpu_timelast_real_timen.0Stack_SizeLpred21_6Lpred21_7Lpred22_2Lpred22_4Lpred22_3Lpred22_6Lpred22_5Lpred22_7Lpred26_2Lpred26_4Lpred26_3Lpred32_2Lpred38_2Lpred38_4Lpred38_3Lpred38_5Lpred44_2Lpred44_4Lpred44_3Lpred44_6Lpred44_5Lpred44_7Lpred45_1Lpred53_28Lpred53_4Lpred53_2Lpred53_3Lpred53_6Lpred53_5Lpred53_8Lpred53_7Lpred53_10Lpred53_9Lpred53_12Lpred53_11Lpred53_14Lpred53_13Lpred53_16Lpred53_15Lpred53_18Lpred53_17Lpred53_20Lpred53_19Lpred53_22Lpred53_21Lpred53_24Lpred53_23Lpred53_26Lpred53_25Lpred53_27Lpred54_3Lpred54_2Lpred54_5Lpred54_4Lpred54_7Lpred54_6Lpred54_9Lpred54_8Lpred54_11Lpred54_10Lpred54_13Lpred54_12Lpred54_15Lpred54_14Lpred54_17Lpred54_16Lpred54_19Lpred54_18Lpred54_21Lpred54_20Lpred54_23Lpred54_22Lpred54_25Lpred54_24Lpred54_26Lpred58_1Lpred2_11Lpred2_sub_0Lpred2_8Lpred2_5Lpred2_7Lpred2_6Lpred2_9Lpred2_10Lpred2_12FormatArg_AtomArg_IntegerArg_FloatRead_ArgLpred14_6Lpred14_5Lpred14_8Lpred14_7Lpred14_10Lpred14_9Lpred14_12Lpred14_11Lpred14_14Lpred14_13Lpred14_16Lpred14_15Lpred14_17Os_Interf_Initializeratom_dtatom_readatom_writeatom_executeatom_searchatom_regularatom_directoryatom_fifoatom_socketatom_character_deviceatom_block_deviceatom_unknowntsignb_sigGet_Path_NameFlag_Of_PermissionDate_Time_To_Prologatom_host_name.0Select_Init_SetSelect_Init_Ready_ListExpand_Initializerdcg_2topopt_term_unifDcg_HeadDcg_Bodyatom_clauseDcg_Body_On_StackDcg_Term_List_On_StackDcg_Compound2atom_phraseatom_ifLpred30_2Lpred30_4Lpred30_3Pretty_InitializerCheck_Structureprec.0Show_BodyStart_Lineequal_2atom_dollar_varnamenb_to_tryCollect_Excluded_RecVar_Name_To_Var_NumberExclude_A_Var_NumberBind_Variabledollar_var_1dollar_varname_1Portray_ClauseCollect_Singletonsingl_var_ptrnb_singl_varatom_dcgatom_dollar_varCtrl_C_ManagerDebug_Initializerenvir_namechoice_nametrail_tag_namepstm_ipstm_odbg_jumperDebugger_Signal_HandlerScan_CommandFind_Functionnb_read_argread_argcmd.0Write_Data_ModifyWhereWhatDereferenceEnvironmentBacktrackHelpRead_Bank_Adrreg_copyPrint_Bank_Name_OffsetPrint_Wam_WordModify_Wam_WordRead_An_IntegerDetect_StackDetect_Pred_From_CodeMy_System_DirectivesLpred8_14Lpred8_8Lpred8_7Lpred8_10Lpred8_9Lpred8_12Lpred8_11Lpred8_13Lpred28_2Lpred28_4Lpred28_3Lpred28_6Lpred28_5Lpred28_8Lpred28_7Lpred28_10Lpred28_9Lpred28_12Lpred28_11Lpred28_14Lpred28_13Lpred28_16Lpred28_15Lpred28_17Lpred32_4Lpred32_3Lpred32_6Lpred32_5Lpred32_8Lpred32_7Lpred32_10Lpred32_9Lpred32_12Lpred32_11Lpred32_14Lpred32_13Lpred32_15Lpred56_1Lpred58_8Lpred58_2Lpred58_4Lpred58_3Lpred58_6Lpred58_5Lpred58_7Lpred61_7Lpred61_3Lpred61_2Lpred61_sub_0Lpred61_4Lpred61_6Lpred61_5sr_tblsr_tbl_sizesr_last_usedcur_srGet_DescriptorCommon_CleanExec_One_DirectiveUndo_DirectivesClose_Current_ModuleWrite_LocationSocket_Initializeratom_AF_UNIXatom_AF_INETCreate_Socket_Streamsend_varsvarsCopy_Term_Recbase_copytop_varsParse_Supp_Initializerjumpertok_presentbuff_save_machine_regsParse_TermParse_ErrorLookup_In_Dico_VarCreate_StructureParse_Args_Of_FunctorParse_Bracketed_TermParse_Listatom_varatom_stringatom_back_quotesatom_punctatom_full_stopatom_extendWrite_Supp_Initializerlast_prefix_opShow_TermShow_Global_Varignore_opShow_List_ArgShow_StructureShow_AtomShow_FloatShow_Fd_VariableShow_IntegerTry_Portrayatom_dotsquotedspace_argsname_varsnumber_varscurly_brackets_1try_portray_code.1portrayedOut_Charerase_stampfirst_dyn_with_erasesize_of_erasedAdd_To_2ChainIndex_From_First_ArgAlloc_Init_Dyn_InfoUnlink_ClauseFree_ClauseGet_Scan_Choice_PointScan_Dynamic_Pred_NextClean_Erased_Clausessave_call_infoByte_Code_Initializerop_tblCompar_Inst_Code_Opnb_opbc_nb_blockbcatom_dynamicatom_publicatom_built_inatom_built_in_fdcaller_aritycaller_funcbc_spBC_Arg_X_Or_YBC_Arg_Func_Aritydebug_callBC_Emulate_Pred_AltBC_Emulate_Clauseglob_funcglob_dynBC_Emulate_Byte_CodePrep_Debug_Callerr_msgcc_origc_typeScan_QuotedScan_NumberScan_Quoted_Charobj_end.cstart_user_timestart_system_timestart_real_timecur_seedpage_sizeSIGSEGV_Handlerbuff.1cur_work_dir.2msg.3buff.4arg.0nb_arg.1value.2letters.3arg.4Hash_Locatenb_objobj_tblnb_user_directivesinit_buff_regsheap_actual_startCall_Prolog_FailCall_Prolog_SuccessCall_Nextp_buff_savep_jumpercont_jmpCheck_If_Var_Occurshash_weight_tblhash_inv_tblstr_charLocate_AtomHash_Stringgen_sym_buffFd_Solver_Missingseparatorsins_modeclipboardhist_starthist_endcomp_startprompt_lengthglobal_strTab_To_SpacesHistory_Add_Lineglobal_posglobal_endDisplay_HelpNew_CharCompletion_Print_AllSkipCompletion_Do_Matchcomp_last_matchcomp_first_matchHistory_Update_LineHistory_Get_Linehist_tblIs_A_Separatorctrl_c_ret_valcomp_nb_matchcomp_match_max_lgcomp_cur_matchuse_guiuse_ansifd_infd_outinitialized.0le_hook_present.1Parse_Env_VarChoose_Fd_OutLE_Get_Char0BackdForwdDisplEraseDispl_Strposnb_colsold_stty_inold_stty_outis_tty_inis_tty_outinterrupt_keynew_stty_outnb_rowsnew_stty_infrom_callbackret_valWrapper_Handlerctrl_c_handlerinside_ctrl_c_DYNAMIC__fini_array_end__fini_array_start__init_array_end_GLOBAL_OFFSET_TABLE___init_array_startX736B6970_1Fct_ShrX6765745F63686172_2Fd_Eq_2X24696E646F6D61696E5F6C696D6974735F616C74_0stm_debugger_inputWrite_1Wait_2Nth_Root_UpX72656E616D655F66696C65_2Remove_Stream_Mirror_2X2473686F775F6C65617368696E675F696E666F31_1X247573655F6F706572_0domain_socket_addressfd_domainX636861725F636F6465_2X242473725F74726561745F7465726D2F325F2461757832_4Write_Pl_State_FileX756E6765745F636F6465_2Vector_Sub_VectorFull_Coeff_Power_VarWrite_Canonical_To_Chars_2Math_Fast_Load_ValueX757365725F74696D65_1evluation_int_overflowFd_Tell_Int_RangeX2424636865636B5F73747265616D5F6F725F7661722F325F2461757831_1Fd_Reset_SolverX247573655F657870616E64_0X246C696E65735F746F5F636F6C756D6E73_2Read_Token_1Copy_Term_2X666F726D6174_3X246765745F7072656469636174655F66696C655F696E666F_3X24247265696E69745F61667465725F657863657074696F6E2F305F2461757831_0max_x_a_eq_z_FPrint_2atom_curly_bracketsFd_Lt_2quot_rem_x_y_r_eq_z_FX2463757272656E745F6F705F616C74_0X63616C6C5F776974685F61726773_10Os_Version_1Blt_Fd_VarRd_Number_CheckPut_Atom_TaggedInit_OperAdd_Stream_For_Stdio_DescX74656C6C_1X233C_2X6F6E6365_1X777269746571_2Fd_Element_V_To_Xipred_tblx_nand_y_eq_bX24636F6E73756C7431_1X247365745F73725F64656661756C7473_0Vector_Mod_ValueX242464656275675F63616C6C312F385F2461757831_3Blt_G_Dec_2Un_TermX235C5C3D23_2X2464656275675F69735F6E6F745F6C656173686564_1usleep@@GLIBC_2.0BC_Start_Emit_0mkdir@@GLIBC_2.0X6E6F6465627567_0Read_1Blt_Fast_GtX61746F6D5F70726F7065727479_2Blt_Ltefd_reset_solverttyname@@GLIBC_2.0X247465726D5F746F5F676F616C31_2Current_Predicate_Alt_0x2_eq_y_FX61746F6D5F6C656E677468_2cos@@GLIBC_2.0Fct_MinInit_PredX247465726D5F746F5F676F616C_3X6C6F7765725F7570706572_2X2424706F72747261795F636C617573652F325F2461757832_1X2464656275675F706F72745F6D61736B_2X66756E63746F72_3X6D656D626572_2Create_OperInit_Machine1Install_Ctrl_C_HandlerX7365745F6F7574707574_1type_listSwitch_On_Term_Var_AtmX6E65775F61746F6D_2Call_With_Args_4X2466645F73656C5F61727261795F66726F6D5F6C697374_2Mk_AtomVector_Next_BeforeX2464656275675F646973705F616C7465726E61746976657331_2SR_Get_File_Name_2Fct_AbsSys_Var_Dec_1X24657865632F355F2461757831_1Full_Var_Power_CoeffFd_Variable_Size0X247365746172675F696E5F6C6173745F666F756E64_2CutX73725F77726974655F6572726F72_6X2473725F64697265637469766531_2domain_not_less_than_zeroLE_Initializeexistence_source_sinkLoad_Call_Info_Arg_1X2463616C6C31_2X246C697374696E675F616C6C_1X73725F6765745F73747265616D_2X24246765745F726561645F6F7074696F6E73322F315F2461757831_1Read_Term_5File_Prop_Date_2def_trail_sizerename@@GLIBC_2.0X235C5C2F5C5C_2Put_Structure_TaggedX247573655F7772697465_0X242473746F72655F736F6C7574696F6E732F345F2461757831_3X24636F6E73756C7433_2Set_Predicate_File_Info_3Write_Term_2X726561645F746F6B656E_1Vector_ComplFd_Tell_Not_ValueOs_ErrorX2464656275675F7370795F7265736574_1Set_Debug_Call_Code_0X77726974655F746F5F61746F6D_2Aux_Name_1Exec_5atom_appenddomain_term_stream_or_aliasX2464656275675F6C6973745F6F665F70726564_2X756E6765745F62797465_1Mk_CharsX246765745F726561645F6F7074696F6E7331_1Check_For_Un_Compoundax_plus_by_eq_zDelete_Choice_Point1Unget_Char_1fd_unify_with_fd_varatom_falsenot_prime_xX247573655F736F636B657473_0LE_Compl_Add_WordVector_Add_VectorBlt_Fast_Ltx_lte_cInit_MachineTest_Alias_Not_Assigned_1X68616C74_1X66645F6D696E696D697A65_2X2466645F6D696E696D697A652F325F2461757831_5X246765745F6C6162656C696E675F6F7074696F6E7332_1X66645F616C6C5F646966666572656E74_1vsprintf@@GLIBC_2.0strchr@@GLIBC_2.0Fd_Unify_With_Fd_Var0Blt_UnivX756E6765745F636F6465_1truth_x_plus_c_lte_yX2424706F72747261795F636C617573652F325F2461757831_1Create_Atom_TaggedX63616C6C5F776974685F61726773_2X2472656D6F76655F756E64657273636F72655F76617273_2X646562756767696E67_0Rd_In_CharX756E6765745F63686172_1Fd_Variable_To_String0Unget_Code_2Blt_G_Readx_eq_y_FStream_PutsRd_Codes_StrX24246765745F726561645F6F7074696F6E73322F315F2461757832_1X24706C5F6572725F726570726573656E746174696F6E_1X6C6173745F726561645F73746172745F6C696E655F636F6C756D6E_2X24706C5F6572725F73796E746178_1X7075745F636F6465_1Range_Nb_ElemNth_Root_DnCurrent_Atom_Alt_0Pred_Prop_Public_1Atom_Property_6fdopen@@GLIBC_2.1Stream_PutcX6E6F737079_1X66645F6F6E6C795F6F6E65_1Unget_Char_2System_Time_1X233E23_2Name_Singleton_Vars_1X246765745F726561645F6F7074696F6E73_4X2463616C6C5F696E7465726E616C31_2X246C6F61645F70726564_2X706F72747261795F636C61757365_1Read_AtomX242477726974655F696E64696361746F722F305F2461757831_2Blt_Compoundpermission_type_past_end_of_streamSys_Var_Inc_1SR_Get_Stm_For_Read_Term_1X2477726974655F736F6C7574696F6E_3X24627265616B2F305F2461757831_1Write_Canonical_2Open_Output_Term_Stream_1Rd_Proper_ListStatistics_Global_Stack_2Get_Char_1alias_tblCurrent_Bip_Name_2Halt_1X2473747265616D5F70726F70657274792F325F2461757831_3Blt_G_Reset_BitX24247370795F746573745F636F6E646974696F6E2F335F2461757831_2X73725F7365745F6572726F725F636F756E74657273_3atan@@GLIBC_2.0X246C6F61645F66696C65_1Fct_Fast_SignX3D3A3D_2X737061776E_3X247365745F746F705F6C6576656C5F73747265616D73_2X7065656B5F62797465_1X7065656B5F636F6465_1Retractall_If_Empty_Head_1type_byteevluation_zero_divisorFind_Linked_ObjectsRead_Integer_1x_imply_y_eq_bDelete_Choice_Point3X726561645F7465726D_2X24706C5F6572725F696E7374616E74696174696F6E_0fd_init_solverX666F726D61745F746F5F61746F6D_3X66645F6C6162656C696E676666_1reg_tblM_Real_TimeFd_Unify_With_Integer0X72657665727365_2SR_Write_Message_8X746162_1atom_debugger_outputX247573655F66645F6F7074696D_0Malloc_CheckNth_Root_ExactX246765745F6C696E656469745F70726F6D7074_1X6E6F6E5F67656E657269635F766172_1X2424636F6E73756C74322F315F2461757831_2X24696E646F6D61696E5F72616E646F6D5F616C74_0getpid@@GLIBC_2.0X666F726D61745F746F5F636F646573_3X246D696E5F6C69737431_3Blt_NumberFatal_ErrorRange_Test_Null_InterRd_String_CheckOpen_Input_Term_Stream_2X246765745F636C6F73655F6F7074696F6E73_1Nl_1Rd_FloatFork_Prolog_1X2463617463685F696E7465726E616C31_5X2424636865636B5F686561642F315F2461757831_1X2463757272656E745F6D6972726F72_2X247573655F73746174_0__ctype_tolower_loc@@GLIBC_2.3domain_stream_positionCreate_Choice_Point3X2464656275675F63616C6C_2X246164645F636C617573655F7465726D_1init_stream_suppRange_ComplSR_Init_Open_2X242464656275675F657865635F636D642F365F2461757833_2Read_Number_1Un_In_CodeVector_UnionLE_Get_Current_WordX2473725F63757272656E745F64657363726970746F725F616C74_0atom_bofWrite_Term_To_Atom_2X66645F646F6D61696E_3X246D656D6265722F325F2461757831_3X66645F656C656D656E745F766172_3Put_NilX66645F6D6178_2Switch_On_Term_Var_StcX7365745F73747265616D5F6C696E655F636F6C756D6E_3X675F696E63_1Fct_Truncatelast_writingMath_Load_Valuele_hook_exit_processSet_Seed_1Hash_Alloc_TableX2463616C6C_4X66645F72656C6174696F6E_2X6F70656E5F696E7075745F636F6465735F73747265616D_2X247365745F73747265616D5F627566666572696E672F325F2461757831_1Stream_CloseFct_Fast_Ortype_fd_evaluablePut_X_VariableX247468726F77_4X24696E646F6D61696E5F6D61785F616C74_0X247365745F7072656469636174655F66696C655F696E666F_3stm_last_usedatom_streamX246765745F77726974655F6F7074696F6E73_1x_equiv_y_eq_brepresentation_min_integerFd_Stop_ConstraintX66645F63617264696E616C697479_2X736F7274_1Reset_PrologUn_Boolean_Checktype_evaluableRange_From_VectorX2472657472616374_2domain_stream_propertyRd_In_CodeRange_Div_ValueFct_Fast_DecSys_Var_Get_Bit_3X776F726B696E675F6469726563746F7279_1Blt_G_AssignbM_Create_Shell_CommandRead_Token_From_Atom_2Un_Code_CheckX6C696E655F636F756E74_2X72616E646F6D_3Argument_List_1write@@GLIBC_2.0X2424636F6E73756C74322F315F2461757832_2localtime@@GLIBC_2.0Scan_Peek_CharX2462635F656D756C6174655F636F6E74_0Flush_Output_1Update_Water_MarkFct_SignX24246765745F77726974655F6F7074696F6E73322F315F2461757833_1Pred_Prop_User_1X2464656275675F726561645F636D64_1X242466645F6C6162656C696E672F325F2461757832_1Exit_With_Exceptionfileno@@GLIBC_2.0X403E3D_2Set_Stream_Eof_Action_2Statistics_Trail_Stack_2Op_3X66645F6D6178696D697A65_2X5C5C3D3D_2SR_Get_Position_3X7365745F73747265616D5F627566666572696E67_2X6370755F74696D65_1X2424636865636B5F6F776E65725F66696C65732F335F2461757831_6strcmp@@GLIBC_2.0X6F70656E5F6F75747075745F61746F6D5F73747265616D_1Choice_Point_Info_4Fd_ExactlySet_Stream_Buffering_2stm_tblCurrent_Stream_1representation_character_codeX24657870616E645F7465726D31_2X726561645F66726F6D5F61746F6D_2base_fdX24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757831_1use_le_promptFd_Prolog_To_ValueSwitch_On_Term_Var_Atm_LstX666F72_3X246361746368_6X2473725F6765745F666F726D61745F617267735F6572726F72_6last_output_soraStore_Solution_1close@@GLIBC_2.0asin@@GLIBC_2.0Range_Mul_ValueFd_Check_For_Bool_Varx_plus_c_lte_yFd_Math_Unify_X_YX2466645F6C6162656C696E675F737464_2Fd_Tell_Interv_IntervStream_Getc_fp_hwPeek_Char_2fd_domain_rRead_Term_From_Codes_5byte_codeFd_Sel_Array_From_List_2X24246765745F73725F6F7074696F6E73322F315F2461757832_1Unify_IntegerCheck_Stream_TypeX246861735F6E6F5F7370795F706F696E74_1X246C6F61645F6469726563746976655F657863657074696F6E_3Fd_Element_V_To_IX6E756D6265725F6368617273_2Fd_Element_Var_V_To_IX66645F61746C65617374_3Read_IntegerFd_Element_I_To_VX242464656275675F6C6973745F6F665F70726564312F345F2461757831_4Rd_Chars_Checkatom_lineX242464656275675F657865635F636D642F365F2461757836_1X6E616D655F73696E676C65746F6E5F76617273_1X73725F6765745F6D6F64756C65_3Rd_In_Char_CheckX246765745F6F70656E5F6F7074696F6E7332_1X73756D5F6C697374_2permission_type_streamSleep_1X247573655F675F7661725F696E6C_0SR_Current_Descriptor_1X2463757272656E745F7072656469636174655F616E79_1fprintf@@GLIBC_2.0X2473725F6572726F725F66726F6D5F657863657074696F6E_2fork@@GLIBC_2.0M_TempnamX246765745F73725F6F7074696F6E7331_1Unify_Structure_TaggedFct_Fast_NegDelete_Choice_Point4Father_Pred_Of_Auxgetenv@@GLIBC_2.0M_Random_FloatX63757272656E745F61746F6D_1X6765745F73656564_1X6B6579736F7274_1signal@@GLIBC_2.0X6765745F6C696E656469745F70726F6D7074_1Fd_New_Variablefmod@@GLIBC_2.0Range_Becomes_SparseRd_Float_CheckFct_Fast_IncX2464656275675F7370795F736574_2fd_variable_to_stringX246765745F636C6F73655F6F7074696F6E7332_1Atom_Length_2Fd_Use_Vectorfflush@@GLIBC_2.0X247573655F636F6E73756C74_0Stream_Prop_Type_2domain_g_argument_selectorBlt_G_Inc_2X247365745F71756572795F766172735F6E616D6573_2pclose@@GLIBC_2.1SR_Get_Error_Counters_3X2473725F726561645F7465726D2F345F2461757832_2Display_To_Atom_2Range_Mul_RangeX2473725F6E65775F706173732F315F2461757831_1Write_SimpleRead_Atom_2X233D3C23_2Fct_CeilingX7075745F62797465_2X6C697374696E67_1Call_Info_Bip_Name_1X247573655F666C6167_0X24247468726F775F696E7465726E616C2F325F2461757831_2X247573655F747970655F696E6C_0Blt_G_LinkMk_In_CharX403C_2Get_Predicate_File_Info_3Bind_Variables_4Fd_Before_Add_CstrGet_Pred_Indic_3Range_Next_Beforequot_rem_x_a_r_eq_z_FFct_AddFd_Element_IX247573655F63616C6C_0mallopt@@GLIBC_2.0X24746F705F6C6576656C31_0ax_plus_by_eq_z_FX686F73745F6E616D65_1Pl_Err_Instantiationunlink@@GLIBC_2.0Pred_Prop_Built_In_Fd_1Decompose_File_Name_4Fd_Init_Solver0M_Cmd_Line_To_Argvdomain_source_sinkX63757272656E745F707265646963617465_1Un_AtomFd_Init_SolverX617267756D656E745F636F756E746572_1X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757832_1Current_Stream_Alt_0X247365745F73747265616D5F747970652F325F2461757832_2X66645F72656C6174696F6E63_2Arith_Eval_2Fd_Prolog_To_Fd_Vargetrusage@@GLIBC_2.0Delete_File_1X636F6D70617265_3Name_2Mk_ListRd_CodeAtom_Concat_Alt_0X2462635F656D6974_1X24246765745F6F70656E5F6F7074696F6E73322F315F2461757835_1X24636865636B5F61746F6D5F6F725F61746F6D5F6C69737431_1X247573655F63616C6C5F61726773_0X6173736572747A_1X247573655F66696C65_0Current_Alias_2X246C6F616432_1Stream_Prop_Buffering_2X242464656275675F6C6973745F6F665F70726564312F345F2461757832_5Update_Choice_Point3X2473725F6572726F725F66726F6D5F657863657074696F6E2F325F2461757831_1Set_Stream_Position_2Un_Byte_CheckX3D3D_2Retract_2fd_exactlyle_initializeX66645F7573655F766563746F72_1X68616C74_0X6765745F6B6579_1X77726974655F63616E6F6E6963616C5F746F5F61746F6D_2X247365656E2F305F2461757831_1X2467726F75705F736F6C7574696F6E73_3X24246765745F73725F6F7074696F6E73322F315F2461757833_1X73725F6E65775F70617373_1X6F735F76657273696F6E_1BC_Start_Pred_7X24246C6F6164322F315F2461757832_2Check_For_Un_BooleanX247265696E69745F61667465725F657863657074696F6E_0permission_operation_openLast_Read_Start_Line_Column_2Mk_VariableX24737079706F696E745F636F6E646974696F6E31_3x_imply_y_eq_1X63616C6C5F776974685F61726773_5Stream_UngetcUn_Float_CheckMk_In_ByteStream_Position_2Writeq_1Remove_One_Choice_Point_1select@@GLIBC_2.0type_fd_variableVector_From_IntervalX756E6765745F62797465_2X247573655F66645F6D617468_0X24247465726D5F746F5F676F616C322F325F2461757831_3Line_Position_2X7465726D5F726566_2Mk_NumberLower_Upper_2x_plus_y_plus_z_eq_t_FPred_Without_AuxX235C5C_1query_exceptionX24246C6F61645F66696C652F315F2461757831_3Pl_Err_SyntaxX6D616B655F6469726563746F7279_1Remove_Predicate_2wmark_countX72657472616374_1X77726974655F746F5F6368617273_2domain_socket_domainBlt_G_Dec_3x_and_y_eq_bUn_IntegerSqrt_UpAllocateX24696E646F6D61696E_2File_Permission_2vsnprintf@@GLIBC_2.0X24246765745F77726974655F6F7074696F6E73322F315F2461757834_1X246765745F6C6162656C696E675F6F7074696F6E7331_1strerror@@GLIBC_2.0X707574_1Execute_DirectiveCpu_Time_1Term_Math_LoadingBC_Emit_Inst_1Check_For_Un_NumberFct_Fast_Shr__dso_handleStream_Get_PositionCheck_For_Un_AtomRd_Code_Checkrepresentation_max_integerX247573655F66645F696E666F73_0Set_Linedit_Prompt_1Stream_Prop_Input_1x_plus_y_eq_z_FGlobal_Push_FloatHash_DeletePut_Integer_TaggedCall_With_Args_3SR_Current_Descriptor_Alt_0X636C6F73655F696E7075745F636F6465735F73747265616D_1Fd_New_Bool_VariableX706F72747261795F636C61757365_2Call_With_Args_9truth_x_gte_cBlt_G_Decobase_flX246164645F6D6972726F72735F746F5F73747265616D_2X2472656D6F76655F707265646963617465_2X63757272656E745F636861725F636F6E76657273696F6E_2mmap@@GLIBC_2.0X24636865636B5F61746F6D5F70726F70_1X6E6F737079616C6C_0Check_For_Un_VariableUnify_Occurs_Check__libc_csu_finiX2461746F6D5F636F6E6361745F616C74_0Fd_After_Add_CstrSet_Prolog_Flag_2Reassign_AliasCheck_For_Un_CharX61746F6D5F636F6E636174_3X24706C5F6572725F646F6D61696E_2Call_PrologX2473747265616D5F706F736974696F6E_2Get_Key_2X246765742F315F2461757831_2tcsetattr@@GLIBC_2.0Add_Stream_For_Stdio_Filepermission_type_flagobj_chain_beginArgument_Counter_1Pred_Prop_Prolog_Line_2Sys_Var_Write_2X2474656C6C2F315F2461757831_2Blt_Generic_VarFct_Fast_NotPut_Unsafe_Valuesetlocale@@GLIBC_2.0wmarkX2466645F6C6162656C696E6731_4query_top_bX66645F6861735F65787472615F63737472_1X2473725F7365745F74726561745F706173735F62697473_3X73656C656374_3Extend_Table_If_NeededX242464656275675F706F72745F70726F6D70742F365F2461757831_5X70726F6C6F675F706964_1X2467726F75705F736F6C7574696F6E735F616C74_0X6469726563746F72795F66696C6573_2X2464656275675F646973705F616C74_2X242464656275675F657865635F636D642F365F2461757835_3X61745F656E645F6F665F73747265616D_0X2473686F775F7370795F706F696E7473_0Fct_ShlX24746F705F6C6576656C5F657863657074696F6E_1Hash_Realloc_Tabledomain_operator_priorityX686F73746E616D655F61646472657373_2Fd_New_Int_VariableFree_Variables_4X2473686F775F64656275676765725F6D6F646531_1X247365745F73747265616D5F627566666572696E672F325F2461757832_2Fd_Neq_2X676574_1representation_in_character_codeProlog_File_Name_2X2473746174_3Fd_Add_Dependencybuff_signal_regtruth_x_neq_y_FUn_Compound_CheckX73725F77726974655F6D657373616765_8X242473725F74726561745F7465726D2F325F2461757833_2Un_Atom_CheckTerm_Write_Str_StreamX2466645F63617264696E616C69747931_2Make_Stream_Tagged_WordX246661746865725F6F665F6175785F6E616D65_3Scan_Choice_Point_PredWrite_2X7365745F6269705F6E616D65_2X2464656275675F646973705F616C7431_3Fct_Float_DivX242463617463685F73796E635F666F725F6661696C5F61742F315F2461757831_2X247573655F7072696E74_0unify_x_y__errno_location@@GLIBC_2.0pow@@GLIBC_2.0quot_rem_x_y_r_eq_zWrite_A_CharX2466696C655F70726F70_2environ@@GLIBC_2.0X726561645F61746F6D_1xy_eq_z_Fexistence_streamresource_too_big_fd_constraintX246D616B655F6175785F6E616D65_4X2473686F775F64656275676765725F6D6F6465_0X6F70656E5F6F75747075745F636F6465735F73747265616D_1Check_For_Un_CodesX6E65775F61746F6D_1X63757272656E745F6D6972726F72_2X242477726974655F736F6C7574696F6E2F335F2461757831_2x2_eq_yGet_Stream_Or_AliasIndomain_Middle_Alt_0X7265616C5F74696D65_1X24627265616B2F305F2461757832_1Find_Next_AtomUpdate_Dynamic_PredVector_Next_AfterHostname_Address_2BC_Emulate_Cont_0X707265666978_2X63757272656E745F6F7574707574_1Fd_Has_Vector_1ftell@@GLIBC_2.0SR_Write_Message_6max_x_y_eq_zList_LengthX246F7032_3X2473725F6F70656E2F335F2461757831_1Shell_2SR_Get_Include_List_2X6765745F6B65795F6E6F5F6563686F_2Stdio_Is_RepositionableX246463675F7472616E735F72756C65_2X2464656275675F706F7274_5X233C3D3E_2Consult_2Blt_G_Array_Sizerepresentation_characterWrite_Canonical_To_Codes_2X24696E646F6D61696E5F6D6964646C655F616C74_0System_2domain_non_empty_listRange_UnionWriteq_2domain_g_array_indexFd_Use_Vector_1accept@@GLIBC_2.0gethostbyaddr@@GLIBC_2.0Random_1Blt_Eqsystem@@GLIBC_2.0zero_power_n_eq_yX247379735F7661725F7365745F626974_2X242466696E645F6578697374696E675F73747265616D2F335F2461757831_3X675F696E63_2Read_Number_2Mk_Callabledomain_read_optionX247573655F617373657274_0LE_Is_Interrupt_KeyX2473725F73746F705F6D6F64756C65_3X66645F61745F6C656173745F6F6E65_1X2463757272656E745F616C6961732F325F2461757831_2X247379735F7661725F72656164_2Set_Current_B_1Get_IntegerX63757272656E745F70726F6C6F675F666C6167_2X247573655F736F7274_0SR_Get_Size_Counters_3X2464656275675F726561645F696E7465676572_1X66645F646F6D61696E5F626F6F6C_1Blt_AtomX247573655F7465726D5F696E6C_0access@@GLIBC_2.0Prolog_Pid_1X736F636B6574_2X72656D6F76655F73747265616D5F6D6972726F72_2Stream_Flushsetvbuf@@GLIBC_2.0X73725F6765745F696E636C7564655F73747265616D5F6C697374_2X246765745F73725F6F7074696F6E7332_1X242464656275675F657865635F636D642F365F2461757837_3Put_Byte_2os_argcWriteq_To_Chars_2X233E3D_2Rd_Chars_Strinet_ntoa@@GLIBC_2.0Pl_Err_SystemWrite_To_Codes_2X63757272656E745F73747265616D_1X2461726974685F6576616C_2LE_Compl_Find_Matchdomain_streamX7075745F63686172_2X3E3D_2Current_Op_3M_Set_SeedX6F70656E5F6F75747075745F63686172735F73747265616D_1X63616C6C_2Blt_CallableX66645F6C6162656C696E67_1Pred_Prop_Dynamic_1Load_Cut_LevelChange_Directory_1Sys_Var_Get_2type_floatputs@@GLIBC_2.0X24636865636B5F73747265616D5F6F725F766172_2le_promptSelect_5Term_Compare_initX6E6C_1X5C5C3D_2X2466645F656C656D656E74_3Setarg_Of_Last_Found_2X247573655F73747265616D_0popen@@GLIBC_2.1X247573655F756E696679_0Current_Mirror_2truth_x_plus_c_neq_y_FRd_Positive_CheckCreate_Pipe_2X246462675F696E64696361746F72_2Call_CompiledX247379735F7661725F707574_2Switch_On_AtomX2462635F73746F705F656D6974_0X6261676F66_3Write_Term_To_Chars_2x_neq_cX24657865635F636D645F657272_2X2466645F73656C5F61727261795F7069636B5F766172_4Architecture_1listen@@GLIBC_2.0X74656C6C696E67_1Current_Output_1Unlink_1stk_tblX706F70656E_3Print_To_Codes_2Indomain_Random_Alt_0permission_type_static_procedureCreate_Choice_Point1X73725F6368616E67655F6F7074696F6E73_2X247573655F7468726F77_0X7365745F73747265616D5F656F665F616374696F6E_2X7065656B5F62797465_2nb_atomX675F61737369676E_2type_compoundX2473725F657865635F646972656374697665_2Seek_4ax_plus_y_eq_zScan_Next_Atomstm_top_level_inputX736C656570_1Get_Atomx_nequiv_y_eq_bmalloc@@GLIBC_2.0type_predicate_indicatorX726561645F706C5F73746174655F66696C65_1X7072696E745F746F5F61746F6D_2X24246765745F6F70656E5F6F7074696F6E73322F315F2461757836_1X6E65775F61746F6D_3last_read_lineFct_MulX5C5C2B_1Random_3X246C6F61642F315F2461757831_1X242464656275675F657865635F636D642F365F2461757834_2Socket_Accept_4Call_With_Args_6Pl_Err_Existencedomain_prolog_flagX646973706C6179_2X2473756D5F6C69737431_3X3D3C_2Range_InterRename_File_2glob_buffX247465726D5F746F5F676F616C32_2domain_selectable_itemX7065656B5F63686172_2X246765745F77726974655F6F7074696F6E7332_1Rd_List_CheckX24696E7374616E63655F666F725F736574617267_2debug_call_codeDate_Time_1Fct_IdentityX737079706F696E745F636F6E646974696F6E_3X73725F726561645F7465726D_4X63757272656E745F616C696173_2X61745F656E645F6F665F73747265616D_1abs_x_minus_y_eq_z_FCreate_Water_MarkX24657865635F636D645F6C696E655F656E7472795F676F616C73_1X242464656275675F657865635F636D642F365F2461757832_1Vector_Mul_Vectorabs_x_minus_a_eq_z_FDelete_Predatom_user_inputmunmap@@GLIBC_2.0M_Get_StatusFct_MaxRetract_Last_Found_0X746F6C64_0X6368616E67655F6469726563746F7279_1prime_xRd_Integer_CheckX77726974655F7465726D5F746F5F6368617273_3Blt_VarFind_Stream_By_Aliaspermission_type_private_procedureX247365745F6C696E656469745F70726F6D7074_1X24726561645F72657475726E_1pipe@@GLIBC_2.0not_x_eq_bGroup_Solutions_3Setarg_4Blt_Functorx_and_y_eq_0Get_Integer_TaggedUnify_ListX24617373657274_3X246765745F6C6162656C696E675F6F7074696F6E73_2X737061776E_2Rd_Charax_plus_by_plus_z_eq_t_FX7772697465715F746F5F6368617273_2Un_BooleanX646973706C6179_1X2477726974655F736F6C7574696F6E31_1fread@@GLIBC_2.0Check_For_Un_CharsRd_Compoundquot_rem_a_y_r_eq_zLE_FGetsGet_ListX77726974655F7465726D5F746F5F61746F6D_3Rd_ByteAtom_Chars_2clearerr@@GLIBC_2.0X617267_3Keep_Rest_For_PrologStatistics_Real_Time_2At_End_Of_Stream_0X2473725F6F705F74797065_2X766172_1X2462635F656D69745F696E7374_1M_Absolute_Path_NameCurrent_Predicate_2Extra_Cstr_Alt_0Fd_Reset_Solver0X63616C6C5F776974685F61726773_8X246F702F335F2461757831_3X656E7669726F6E_2X247573655F666F726D6174_0Create_Swt_Stc_ElementCreate_Swt_Atm_ElementX6E756D6265725F76617273_0Put_Y_Variableatom_textwmpX242463616C6C5F696E7465726E616C5F6F722F345F2461757831_6X3D5C5C3D_2Un_NumberX746F705F6C6576656C_0X6C6973745F6F725F7061727469616C5F6C697374_1X72656164_2X63616C6C61626C65_1X242464656275675F646973705F616C74312F335F2461757832_3Host_Name_1X77726974655F7465726D_2x_power_a_eq_yX246D656D62657263686B2F325F2461757831_4X246164645F616C69617365735F746F5F73747265616D_2Atom_Hash_2X2463757272656E745F61746F6D_1Character_Count_2X2424737461742F335F2461757831_2Call_With_Args_5Reset_Debug_Call_Code_0rint@@GLIBC_2.0X657870616E645F7465726D_2X2464656275675F646973705F616E635F6C7374_1X242464656275675F6C6973745F6F665F70726564312F345F2461757833_4X247370795F746573745F636F6E646974696F6E_3LE_Get_Current_Positionfixed_sizesX6164645F73747265616D5F6D6972726F72_2X247072656469636174655F70726F70657274795F616E79_2X73725F63757272656E745F64657363726970746F72_1Switch_On_Structureatom_atX6E6F6E766172_1X24246765745F73725F6F7074696F6E73322F315F2461757834_1Indomain_Limits_Alt_0Name_Query_Vars_2X66645F61745F6D6F73745F6F6E65_1X247573655F72656164_0X7772697465_2X6E756D62657276617273_1X247375625F61746F6D5F616C74_0Recover_Solutions_2X726561645F746F6B656E5F66726F6D5F636F646573_2Add_StreamX726561645F66726F6D5F636F646573_2X6765745F6B6579_2X246765745F726561645F6F7074696F6E7332_1Range_Add_ValueX247365745F73747265616D5F747970652F325F2461757831_1X2464656275675F6C6973745F6F665F7072656431_4Un_Chars_CheckLE_Close_TerminalBlt_Term_GtFd_Domain_3X6465636F6D706F73655F66696C655F6E616D65_4X63757272656E745F696E707574_1Peek_Code_1le_hook_set_line_bufferingpermission_type_binary_streamstm_tbl_sizeX2473725F77726974655F6572726F722F365F2461757831_4X666C7573685F6F7574707574_1stdout@@GLIBC_2.0Current_Prolog_Flag_Alt_0Fd_Tell_Valuestderr@@GLIBC_2.0Blt_G_Set_BitX2424746F705F6C6576656C322F305F2461757835_1def_local_sizeRead_TokenCheck_For_Un_In_ByteUnify_Integer_TaggedDelete_Choice_Point2X24706C5F6572725F7265736F75726365_1truth_x_plus_c_eq_y_FX66645F7072696D65_1Indomain_Max_Alt_0X66645F61746D6F7374_3Indomain_Min_Alt_0SR_Get_Stm_2Fct_AndX247573655F616C6C5F736F6C7574_0Delete_Directory_1X666F726B5F70726F6C6F67_1atom_repositionX24246765745F6F70656E5F6F7074696F6E73322F315F2461757834_1Rd_PositiveBlt_Fast_LteGet_Floatdomain_flag_valueX2461746F6D5F70726F706572747932_7Fct_Powmprotect@@GLIBC_2.0Close_StmX2465787472615F637374725F616C74_0X636C6F7365_1Read_Termle_hook_backdX73725F77726974655F6D657373616765_4X77726974655F706C5F73746174655F66696C65_1X73746F70_0le_hook_forwdMk_PositiveUn_CodesUn_In_Byte_Checkstm_debugger_outputX246261676F66_4Blt_NeqX63616C6C5F776974685F61726773_6X242463617463685F696E7465726E616C312F355F2461757831_3File_Prop_Real_File_Name_2Unget_Code_1min_x_y_eq_z_FX6E6F7472616365_0SR_Change_Options_0atom_eofRange_Div_RangeX2463757272656E745F616C6961735F616C74_0__xstat@@GLIBC_2.0X617070656E64_1Fd_Prolog_To_Array_IntX6F70656E_3Fct_LogX77726974655F63616E6F6E6963616C5F746F5F636F646573_2Un_In_ByteDelete_Choice_PointEnviron_2X675F72656164_2getpagesize@@GLIBC_2.0For_Alt_0X2463616C6C5F696E7465726E616C5F776974685F637574_3type_atomSend_Signal_2X247379735F7661725F646563_1X726561645F61746F6D_2X6765745F7072696E745F73747265616D_1X706872617365_3Prop_And_Stdio_Modeexecv@@GLIBC_2.0inet_aton@@GLIBC_2.0For_3X247573655F636F6E74726F6C_0Fd_Max_2X2461746F6D5F70726F70657274795F616E79_2Get_Pred_IndicatorX66645F6D696E_2Init_AtomDATEDisplay_To_Codes_2X777269746571_1X247072656469636174655F70726F706572747931_2stm_stdoutX6C697374696E67_0Vector_Div_VectorFormat_To_Atom_3X24636865636B5F73747265616D5F70726F70_1Read_Term_4Define_Math_Bip_2Update_Choice_PointStream_Prop_End_Of_Stream_2X2464656275675F63616C6C5F706F7274_5LE_Set_SeparatorsX627265616B_0abs_x_minus_a_eq_zAdd_Stream_Alias_2domain_write_optionX2462635F73746172745F70726564_7fseek@@GLIBC_2.0waitpid@@GLIBC_2.0x_lte_yX675F61727261795F73697A65_2X61737365727461_1Check_For_Un_CallableX247573655F616C6C5F66645F62697073_0X2463757272656E745F6D6972726F725F616C74_0X73797374656D_1X24726561645F7175657279_2Fct_Fast_DivRd_AtomX247573655F70726564_0Statistics_System_Time_2X24726561645F7465726D_3Abolish_1Fct_NotScan_Dynamic_PredSR_EOF_Reached_1Read_Integer_2Un_FloatTreat_Vars_Of_TermX646973706C61795F746F5F61746F6D_2Read_From_Codes_2Get_Byte_1Un_Callable_CheckFlush_Output_0Pred_Prop_Native_Code_1X24657865635F636D645F6C696E655F676F616C_1X6D696E5F6C697374_2ax_plus_y_plus_z_eq_tX7061727469616C5F6C697374_1X24706C5F6572726F72_1time@@GLIBC_2.0X7772697465_1X726561645F746F6B656E5F66726F6D5F61746F6D_2Check_For_Un_CodeGet_Seed_1X6E756D6265725F61746F6D_2X2323_2X2464656275675F657863657074696F6E5F706F7274_5X2464656275675F77726974655F676F616C_4X66645F6E6F745F7072696D65_1Fct_Fast_AddX636C6F73655F6F75747075745F636F6465735F73747265616D_2Un_In_Char_CheckUn_StringFull_Var_Power_2X235C5C3D_2Pl_Err_Evaluation_startVector_Nb_Elemle_hook_ins_modeX24246765745F77726974655F6F7074696F6E73322F315F2461757831_1X247573655F61746F6D_0x_gte_cUn_ListX247379735F7661725F676574_2Stream_GetsX2424746F705F6C6576656C322F305F2461757831_2Un_Positivex_nor_y_eq_bBlt_Fast_NeqObtain_FloatX636C6F73655F696E7075745F61746F6D5F73747265616D_1X246E746831_3SR_Is_Bit_Set_1Spawn_3Vector_Ith_ElemX636C6F73655F6F75747075745F61746F6D5F73747265616D_2Blt_Term_LteX24706C5F6572725F7065726D697373696F6E_3M_Host_Name_From_NameX247573655F72616E646F6D_0Lookup_PredFct_SqrtPrint_To_Atom_2Number_Chars_2X6E756D6265725F636F646573_2X242464656275675F7370795F72657365742F315F2461757831_3le_hook_flushdomain_stream_optionBlt_IntegerX24636865636B5F737461745F6B6579_1SR_New_Pass_1Pl_Err_PermissionRange_Add_Rangeevluation_undefinedRead_Atom_1Create_Choice_PointDebug_WamX246765745F62696E645F7661726961626C65735F6F7074696F6E7331_1X66645F7365745F766563746F725F6D6178_1Gen_New_AtomWrite_Canonical_1X2463757272656E745F7072656469636174655F616C74_0le_hook_put_charFind_Expon_DnX2424657865635F71756572792F325F2461757832_2X247072656469636174655F70726F706572747932_2Find_Atomdef_cstr_sizeX66645F63617264696E616C697479_3X24636865636B5F66696C655F70726F70_1X245C5C2B2F315F2461757831_1le_hook_startPut_Code_1chdir@@GLIBC_2.0Scan_Choice_Point_Info_3M_Allocate_StacksVector_CopyX61746F6D5F68617368_2X77726974655F746F5F636F646573_2X77726974655F7465726D_3Throw_2pi_name_wordSet_Stream_BufferingX66645F6D61785F696E7465676572_1Fct_Fast_AndX737079_1LE_Get_Prompt_LengthSort_List_2Check_Prop_Perm_And_File_2Pl_Err_DomainBlt_List_Or_Partial_ListX6C656E677468_2X24706C5F6572725F6578697374656E6365_2Make_Aux_NameX2424636865636B5F707265645F747970652F335F2461757831_4File_Exists_1le_hook_confirm_boxUpdate_Choice_Point1Socket_Close_1X6E756D626572_1LE_Get_Ctrl_C_Return_Valuestrstr@@GLIBC_2.0permission_type_source_sinkstrlen@@GLIBC_2.0X247365745F63757272656E745F42_1longjmp@@GLIBC_2.0X72657472616374616C6C_1permission_operation_outputX24706C5F6572725F73797374656D_1Rd_Atom_CheckX73797374656D5F74696D65_1SR_Write_Message_4From_Alias_To_Stream_2X2464656275675F646973705F616C7432_1X2463616C6C2F325F2461757831_1X24246C6F61645F707265642F325F2461757831_3LE_Get_Charsigaddset@@GLIBC_2.0Rd_BooleanX233D3C_2obj_chain_endle_hook_get_line_bufferingAdd_Linedit_Completion_1Set_Stream_Line_Column_3Assert_4X2466645F63617264696E616C697479_2X24636F6E73756C742F315F2461757831_1X6F70656E_4X6D61785F6C697374_2type_atomicSet_Heap_Actual_Startle_hook_screen_sizePut_FloatX2466645F6D6178696D697A652F325F2461757831_6Term_SizeX66645F766172_1X706872617365_2X6D656D62657263686B_2Atom_Codes_2Range_Copy__lxstat@@GLIBC_2.0X636C61757365_2Pred_Prop_Private_1X66645F766563746F725F6D6178_1X246765745F6F70656E5F73746D_2Fct_Float_Fract_PartX73747265616D5F706F736974696F6E_2Put_Char_1atom_noneX6765745F6B65795F6E6F5F6563686F_1UnifyX246F70656E_4X73747265616D5F6C696E655F636F6C756D6E_3X246F7031_3Least_Significant_BitX2464656275675F656E645F63616C6C_6uname@@GLIBC_2.0oper_tblX2466696E645F6578697374696E675F73747265616D_3Fct_Xoratom_blockUn_Positive_Check__strtol_internal@@GLIBC_2.0Current_Char_Conversion_2Blt_Partial_ListX61746F6D5F6368617273_2X242464656275675F646973705F616C74312F335F2461757831_2qsort@@GLIBC_2.0Statistics_Cstr_Stack_2X242473725F646972656374697665312F325F2461757832_2X666C7573685F6F7574707574_0x_plus_y_plus_z_eq_tHash_Nb_ElementsMk_IntegerX2424737079706F696E745F636F6E646974696F6E312F335F2461757831_5X24246261676F662F345F2461757831_2X6164645F6C696E656469745F636F6D706C6574696F6E_1BC_Stop_Emit_0Rd_CodesX2473725F74726561745F706173735F6E6F_3Number_Atom_2M_Random_IntegerX24706872617365_4X73725F6765745F66696C655F6E616D65_2X61746F6D6963_1domain_date_timeX2474727574685F6F66_2X2461746F6D5F70726F706572747931_2Fct_ModDisplay_To_Chars_2X2463617463685F73796E635F666F725F6661696C5F6174_1Close_1LE_Get_Separatorsevluation_float_overflowX7375625F61746F6D_5X726570656174_0Make_Aux_Name_4representation_max_arityX233E_2X736F636B65745F616363657074_4X7072696E745F746F5F636F646573_2last_input_soraX736F636B65745F636C6F7365_1Mk_CharFd_Set_Full_Ac_Flag_1Fd_Has_Extra_Cstr_1X6164645F73747265616D5F616C696173_2LE_GetsRange_Ith_ElemX24746F6C642F305F2461757831_1xy_eq_zX246164645F636C617573655F7465726D5F616E645F6263_2X675F61737369676E62_2x_plus_y_eq_zX67657430_1Find_Expon_UpX2473746F72655F736F6C7574696F6E73_4X24246C6F61645F707265642F325F2461757832_3Lookup_Operexecvp@@GLIBC_2.0X24636865636B5F707265645F74797065_3X247265766572736531_3le_hook_emit_beepGet_StructureX636861725F636F6E76657273696F6E_2tzset@@GLIBC_2.0Find_Linedit_Completion_2X675F7365745F626974_2Stream_Prop_Mode_2X24246C6F6164322F315F2461757831_3X61746F6D_1X736F7274_2X246765745F6F70656E5F6F7074696F6E7331_1Execute_A_ContinuationBlt_G_AssignSet_Stream_Type_2Stream_PeekcX2463616C6C2F325F2461757832_3char_convX2466645F6C6162656C696E675F6D7468_4X2464656275675F7377697463685F6F6666_0setlinebuf@@GLIBC_2.0X6E616D655F71756572795F76617273_2X246765745F73725F6F7074696F6E73_2X7065656B5F63686172_1x_plus_c_eq_y_FM_Get_Working_Diratom_notX242473725F646972656374697665312F325F2461757831_4m_os_versionX246175785F6E616D65_1max_x_y_eq_z_FX246D616B655F6C697374_2Update_Choice_Point4X64656C657465_3atom_currentX7772697465715F746F5F61746F6D_2Choice_Point_Arg_3Fct_Fast_XorX2477726974655F696E64696361746F72_0sigprocmask@@GLIBC_2.0X246C697374696E675F6F6E65_1Get_Code_2Range_Mod_Valueatom_eof_codeX242464656275675F63616C6C2F325F2461757831_2strncmp@@GLIBC_2.0X242473725F73746F705F6D6F64756C652F335F2461757831_2Popen_3Fct_OrFct_Fast_ShlX24636865636B5F61746F6D5F6F725F61746F6D5F6C697374_1X66696E64616C6C_3Get_Current_B_1atom_resetX7075745F63686172_1Fd_Copy_Variable0DeallocateSR_Open_File_2X2464656275675F646973705F616C7465726E617469766573_2X6C617374_2Stream_Prop_Eof_Action_2last_read_colX7365745F73747265616D5F74797065_2Clause_3fputc@@GLIBC_2.0User_Time_1__libc_csu_initTemporary_Name_2truth_x_eq_yvec_max_integerNumber_Codes_2X247573655F66645F626F6F6C_0Working_Directory_1X242463617463685F615F7468726F772F355F2461757831_2Mk_In_CodeRd_Byte_CheckVector_Div_ValueBlt_Fast_Eqstm_inputX242473725F73746172745F6D6F64756C652F335F2461757831_2X2473725F74726561745F7465726D_2X74656D706F726172795F6E616D65_2Unget_Byte_2X6765745F63686172_1Set_Output_1X7365745F696E707574_1Fd_Display_Extra_CstrX737566666978_2X24246765745F6F70656E5F6F7074696F6E73322F315F2461757832_1Argument_Value_2Char_Code_2Unify_ValueX2424746F705F6C6576656C322F305F2461757833_3X247573655F616C6C5F706C5F62697073_0Write_TermX247573655F66645F73796D626F6C6963_0Add_Dynamic_ClauseSR_Add_Directive_7type_character__bss_startUnify_Local_ValueX242464656275675F7370795F7365742F325F2461757831_3X63616C6C5F776974685F61726773_1Assoc_Socket_Streams_3Write_Term_To_Codes_2Stream_Prop_Output_1Mk_BooleanX6765745F636F6465_2mainTry_Execute_Top_LevelM_Set_Working_DirRead_Token_2Check_For_Un_ListVector_EmptyUn_List_CheckX246E756D6265725F766172732F305F2461757831_1X7075745F636F6465_2Statistics_Cpu_Time_2X636F6D706F756E64_1X2466645F72656C6174696F6E6331_3Set_Top_Level_Streams_2X233C23_2X7072696E74_1Pred_Without_Aux_4Rd_In_ByteX646973706C61795F746F5F636F646573_2type_in_characterSyntax_Error_Info_4X2463757272656E745F707265646963617465_1type_variableFct_Fast_Moddomain_operator_specifierX24707265645F776974686F75745F617578_4X63616C6C5F776974685F61726773_11X233E3D23_2Socket_Bind_2Switch_On_Term_Var_Atm_StcX247573655F6465633130696F_0os_argvX77726974655F63616E6F6E6963616C_2domain_format_control_sequencea_power_n_eq_yHalt_If_No_Top_Level_1X246765745F63757272656E745F42_1Fct_RemX63757272656E745F6269705F6E616D65_2Un_In_Code_CheckHash_Delete_AllVector_Test_Null_Interfd_elementLE_Compl_Init_MatchGet_Code_1Write_Canonical_To_Atom_2X675F646563_3X6C697374_1Fd_AtmostPortray_Clause_1X235C5C3C3D3E_2Fct_CosX246861735F7370795F706F696E74_2X675F6465636F_2__libc_start_main@@GLIBC_2.0X73656C656374_5permission_type_text_streamGet_Atom_TaggedX247468726F7731_2X2463617463685F6661696C5F6E6F77_1Call_With_Args_11Fd_Sel_Array_Pick_Var_4Find_Linedit_Completion_Alt_0X64656C6574655F66696C65_1Blt_FloatX247365745F6C6162656C696E675F64656661756C7473_0X7072696E74_2X73746174697374696373_0Sqrt_DnM_User_TimeX63616C6C5F776974685F61726773_9X24246765745F73725F6F7074696F6E73322F315F2461757831_1X2424737461742F335F2461757832_1Put_StructureX6E6F6E5F66645F766172_1New_ObjectFd_Max_Integer_1Blt_Non_Generic_VarX61626F7274_0Set_Input_1X24246C697374696E675F616C6C2F315F2461757831_2X242463616C6C5F696E7465726E616C2F325F2461757831_1X2473747265616D5F70726F706572747931_2truth_x_eq_c_Ftype_callableClose_Input_Term_Stream_1X66645F656C656D656E74_3X726561645F7465726D5F66726F6D5F61746F6D_3Add_Str_StreamBC_Call_Terminal_Pred_3File_Prop_Absolute_File_Name_2exp@@GLIBC_2.0X73725F77726974655F6572726F72_2X246C656173685F6D616B655F6D61736B_2X2466645F6C6162656C696E67_2X6E756D62657276617273_3Display_2X7472616365_0permission_operation_accessatom_pastX2466696C655F70726F705F7065726D_2fd_atleastX24636C6F7365_2Fct_FloorPut_Byte_1X2463757272656E745F61746F6D5F616E79_1Mk_CodeNew_Atom_3x_nimply_y_eq_breg_bankCurrent_Alias_Alt_0Rd_Compound_CheckX2464656275675F706F727432_6M_Host_Name_From_AdrSR_Close_1dup2@@GLIBC_2.0X7368656C6C_0ax_plus_by_plus_z_eq_tX7065656B5F636F6465_2X2464656275675F646973705F616E635F6C737431_1X246765745F707265645F696E646963_3Read_Token_From_Chars_2SR_Update_Position_0M_RandomizeFct_RoundX675F6C696E6B_2truth_x_neq_yRd_Charsrealloc@@GLIBC_2.0Statistics_User_Time_2X6465627567_0Statistics_0M_Get_SeedX246765745F77726974655F6F7074696F6E7331_1X24746F705F6C6576656C5F61626F7274_0strcat@@GLIBC_2.0Print_1Get_Linedit_Prompt_1permission_operation_closeDel_Mirror_From_Stream__environ@@GLIBC_2.0permission_operation_repositionX73725F636C6F7365_1Close_Output_Term_Stream_2fd_variable_sizeX675F696E636F_2X636F70795F7465726D_2Check_For_Un_Positivetruth_x_neq_cExit_With_ValueX24736F636B65745F6163636570742F345F2461757831_1Rd_Boolean_Checkdata_startFct_Fast_MulX73725F77726974655F6D657373616765_6File_Prop_Type_2Fct_AcosX2466696E64616C6C_4Stream_End_Of_StreamPl_Err_RepresentationX7075745F62797465_1X7072656469636174655F70726F7065727479_2existence_procedureFct_DivFd_Min_2Fct_Fast_RemCurrent_Atom_2PowerScan_TokenDelete_StreamPut_AtomX2473725F6F70656E2F335F2461757832_1X6F70656E5F696E7075745F63686172735F73747265616D_2Extend_ArrayVector_Add_ValueX7065726D75746174696F6E_2max_x_a_eq_zax_eq_yX66645F65786163746C79_3Pl_Err_ResourceX736F727430_2X403D3C_2X66645F646F6D61696E_2truth_x_neq_c_FPeek_Byte_1X726561645F7465726D5F66726F6D5F6368617273_3X6162736F6C7574655F66696C655F6E616D65_2Write_To_Chars_2bind@@GLIBC_2.0X736574617267_4Format_2X24246765745F77726974655F6F7074696F6E73322F315F2461757832_1fd_element_varX24666F726B5F70726F6C6F672F315F2461757831_1Check_For_Un_In_Code_finiX24636865636B5F61746F6D5F6F725F61746F6D5F6C69737432_1X2473686F775F6C65617368696E675F696E666F_0lseek@@GLIBC_2.0fcntl@@GLIBC_2.0Put_IntegerX24636F6E73756C7432_1memcpy@@GLIBC_2.0Get_Byte_2Unknown_Pred_Errorsqrt@@GLIBC_2.0def_global_sizeStream_Get_Keytype_booleantruth_x_plus_c_gte_yx_or_y_eq_bX73725F6572726F725F66726F6D5F657863657074696F6E_2X24636865636B5F696E5F6368617261637465725F636F6465_1permission_operation_createX24746F705F6C6576656C32_0Set_C_Bip_NameX66696C655F70726F7065727479_2X2473725F77726974655F6572726F722F325F2461757831_6X2424657865635F71756572792F325F2461757831_3X2473725F726561645F7465726D2F345F2461757831_3Lookup_Oper_Any_TypeX7365746F66_3ax_eq_y_FX73725F6765745F696E636C7564655F6C697374_2Blt_G_Test_Set_BitFd_Element_Var_I_To_VBC_Emulate_Predfclose@@GLIBC_2.1Rd_CallableX24747261696C5F68616E646C6572_1Fd_Domain_Bool_1X65786563_4X247365745F77726974655F64656661756C7473_0Blt_Term_LtM_MktempX242477726974655F696E64696361746F722F305F2461757832_2__ctype_toupper_loc@@GLIBC_2.3Socket_Connect_4LE_Printfle_hook_displ_strgetsockname@@GLIBC_2.0strrchr@@GLIBC_2.0Unify_Nila_power_n_eq_y_FX24706C5F6572725F74797065_2X736565696E67_1Delete_Str_StreamX2473686F775F6C65617368696E675F696E666F32_1Unify_VariablePred_Prop_Prolog_File_2Rd_In_Byte_CheckX726561645F6E756D626572_1Unify_Atom_TaggedCreate_Choice_Point4X696E7465676572_1ensure_reservedX2473686F775F756E646566696E65645F616374696F6E_0Current_Char_Conversion_Alt_0__strdup@@GLIBC_2.0Read_Numberx_eq_yX675F746573745F7365745F626974_2X675F646563_2X24246765745F636C6F73655F6F7074696F6E73322F315F2461757831_1Open_3Stream_Set_Position_LCStrdup_Checkrmdir@@GLIBC_2.0Pred_Prop_Static_1Temporary_File_3X74656D706F726172795F66696C65_3Stdio_Set_BufferingFd_Element_Var_IX233D23_2X6765745F636F6465_1le_hook_kbd_is_not_emptyMk_CodesX6372656174655F70697065_2type_integerCurrent_Mirror_Alt_0Stream_Line_Column_3truth_x_eq_y_FRead_Term_From_Chars_5Check_For_Un_In_CharSys_Var_Put_2Delete_Dynamic_Clausedomain_io_modeclosedir@@GLIBC_2.0X6B6579736F7274_2domain_close_optionX2463616C6C5F696E7465726E616C_2Call_With_Args_7gettimeofday@@GLIBC_2.0X7365745F73656564_1Make_Directory_1Blt_Term_EqFct_ExpM_System_TimeAdd_Stream_Mirror_2X24706C5F6572725F6576616C756174696F6E_1X726561645F6E756D626572_2m_os_typeX736F636B65745F6C697374656E_2X247573655F6361746368_0Blt_G_IncoX247379735F7661725F72657365745F626974_2srand@@GLIBC_2.0Display_1Fd_Prolog_To_Array_FdvX247365745F64656275676765725F73747265616D73_2Range_Mod_RangeLE_Emit_Beepx_neq_yBlt_G_DecX247379735F7661725F696E63_1X246463675F7472616E735F626F6479_4X2473686F775F756E646566696E65645F616374696F6E31_1X7368656C6C_2X247573655F6C697374_0Stream_Gets_PromptX2473725F73696D706C5F6572726F72_5opendir@@GLIBC_2.0Rd_Callable_CheckX77726974655F7465726D5F746F5F636F646573_3domain_stream_or_aliasX6F70656E5F696E7075745F61746F6D5F73747265616D_2X235C5C5C5C2F_2gethostname@@GLIBC_2.0Get_Char_2Hash_FindFd_Create_C_FrameX24246261676F662F345F2461757832_2open@@GLIBC_2.0Mk_StringX24656E7669726F6E5F616C74_0X736F636B65745F636F6E6E656374_4Write_To_Atom_2X242464656275675F706F72745F69676E6F72652F345F2461757831_3X66645F6861735F766563746F72_1X2463757272656E745F616C696173_2type_in_byteX73747265616D5F70726F7065727479_2atom_top_level_inputX2473725F77726974655F6572726F722F345F2461757831_4X246C656E677468_3Un_In_Charabs_x_minus_y_eq_zx_eq_cX246173736F635F736F636B65745F73747265616D73_3vec_sizeX7772697465715F746F5F636F646573_2m_architectureX72616E646F6D_1X6E616D65_2Stream_Prop_Reposition_2LE_Compl_Del_WordX24636865636B5F68656164_1Rd_Proper_List_CheckMk_FloatX24756E77696E64_1X247365745F62696E645F7661726961626C65735F64656661756C7473_0LE_Get_KeyX6F70_3M_Spawn_Redirectstm_stdingethostbyname@@GLIBC_2.0atom_binarysigemptyset@@GLIBC_2.0atom_debugger_inputFct_AsinUn_Integer_CheckAt_End_Of_Stream_1Blt_G_IncRd_StringLE_Open_TerminalNl_0Stream_Prop_File_Name_2X2463757272656E745F73747265616D5F616C74_0X24636C61757365_3X232F5C5C_2X6E7468_3X242464656275675F657865635F636D642F365F2461757831_1X7365745F6C696E656469745F70726F6D7074_1Switch_On_IntegerFct_Float_Integ_PartFd_Assign_ValueX24706F72747261795F636C61757365_2X242466645F6C6162656C696E672F325F2461757831_4Full_Var_Div_VarStream_PrintfX24246765745F77726974655F6F7074696F6E73322F315F2461757836_1byte_lenHash_Table_SizeCurrent_Op_Alt_0Blt_Non_Fd_VarCopy_Termgetpwnam@@GLIBC_2.0X2464656275675F69735F64656275675F707265646963617465_1Stop_PrologX247573655F7372635F726472_0X73725F6765745F6572726F725F636F756E74657273_3X6E6C_0exit@@GLIBC_2.0Format_To_Codes_3X24246765745F6F70656E5F6F7074696F6E73322F315F2461757831_1atom_top_level_outputX2463616C6C5F696E7465726E616C5F6F72_4X24746F705F6C6576656C5F73746F70_0Fct_AtanMk_Proper_ListAdd_Alias_To_StreamX242473725F74726561745F7465726D2F325F2461757831_2X66645F73697A65_2X24617070656E642F315F2461757831_2Check_For_Un_FloatGet_Print_Stm_1X73656E645F7369676E616C_2X73725F6F70656E_3X247365652F315F2461757831_2calloc@@GLIBC_2.0Read_Pl_State_FileX6973_2X247573655F66645F76616C756573_0X246D61785F6C69737431_3Vector_FullX2464656275675F706F72745F707265747479_2atom_stream_positionX2463686F6963655F706F696E745F696E666F_4Environ_Alt_0Rd_Codes_CheckFather_Of_Aux_Name_3Get_Key_No_Echo_1ax_plus_y_eq_z_FX6C696E655F706F736974696F6E_2Un_String_CheckFull_Nth_RootX65786563_5Create_Allocate_AtomX247573655F707265747479_0X736F727430_1Line_Count_2Mk_ByteX2464656275675F706F72745F69676E6F7265_4X666C6F6174_1X2464656275675F7377697463685F6F6E_1Hash_FirstDefine_Vector_SizeUn_CharsAtom_Concat_3Range_To_Stringsscanf@@GLIBC_2.0X70726F6C6F675F66696C655F6E616D65_2Get_Current_Bip_edataX3E_2X246765745F636C6F73655F6F7074696F6E7331_1X247363616E5F64796E5F6A756D705F616C74_0atom_tblmin_x_y_eq_z__i686.get_pc_thunk.bx_IO_putc@@GLIBC_2.0Sub_Atom_Alt_0Sqrt_ExactX66645F6C6162656C696E67_2Switch_On_TermSys_Var_Set_Bit_2X736F636B65745F62696E64_2fd_atmostfree@@GLIBC_2.0Create_AtomRead_2Fd_Add_List_Dependency_endX2E_2Get_Key_1ioctl@@GLIBC_2.0X2463757272656E745F7072656469636174655F62697073_1X66696E645F6C696E656469745F636F6D706C6574696F6E_2X675F72657365745F626974_2Start_PrologX63616C6C5F776974685F61726773_4Prime_RangeX756E6765745F63686172_2X61626F6C697368_1truth_x_lt_yX73725F6765745F706F736974696F6E_3Stream_Set_PositionCheck_For_Un_StringX72616E646F6D697A65_0X2465786563_5X3C_2min_x_a_eq_zUn_CallableX675F746573745F72657365745F626974_2X2463757272656E745F61746F6D5F616C74_0Blt_Non_VarX24636865636B5F707265645F70726F70_1getcwd@@GLIBC_2.0X24726574726163745F6C6173745F666F756E64_0X24246765745F77726974655F6F7074696F6E73322F315F2461757835_1Copy_Clause_To_HeapFd_AtleastUn_Proper_List_CheckX2424657870616E645F7465726D312F325F2461757831_2Peek_Byte_2Blt_GteRealloc_Checkisatty@@GLIBC_2.0X24246765745F6F70656E5F73746D2F325F2461757831_2stm_top_level_outputUn_CharRange_Sub_RangeX77726974655F666F66_1Create_Swt_Tableacos@@GLIBC_2.0memset@@GLIBC_2.0X726561645F696E7465676572_1Un_CodeX24246765745F6F70656E5F6F7074696F6E73322F315F2461757833_1connect@@GLIBC_2.0Rd_ListX233D3D3E_2stdin@@GLIBC_2.0X2463686F6963655F706F696E745F617267_3X247573655F636F6E73745F696F_0X2464656275675F636865636B5F626970_2X66696C655F7065726D697373696F6E_2X235C5C2F_2Un_Proper_ListX736565_1X666F726D6174_2Create_PredX62696E645F7661726961626C6573_2resource_print_object_not_linkedUnify_VoidWrite_Term_1X6C6F6164_1X2466696E645F6C696E656469745F636F6D706C6574696F6E5F616C74_0Call_With_Args_10X72656164_1X617267756D656E745F76616C7565_2Detect_If_Aux_NameX6C65617368_1atom_trueX246E746832_4existence_sr_descriptorMost_Significant_BitReset_Prolog_In_SignalCreate_Functor_Arity_TaggedX246C61737431_3Format_To_Chars_3Full_Sqrt_VarX617263686974656374757265_1X247468726F775F696E7465726E616C_2Globalize_If_In_LocalX66645F646F6D_2X2463757272656E745F636861725F636F6E76657273696F6E5F616C74_0Sys_Var_Read_2Vector_Mul_ValueSR_Set_Error_Counters_3Range_Next_AfterX247365745F6F70656E5F64656661756C7473_0Calloc_CheckRd_Chars_Str_CheckSub_Atom_5truth_x_lte_cX73725F77726974655F6572726F72_4Fd_All_Different_1X246C6F616431_1X242464656275675F706F72745F69676E6F72652F345F2461757833_3Syntax_ErrorBlt_AtomicX726561645F696E7465676572_2M_SpawnFct_Fast_AbsStatistics_Local_Stack_2X246765745F686561645F616E645F626F6479_3X2464656275675F63616C6C31_8strncpy@@GLIBC_2.0Range_Set_ValueX24636865636B5F6C697374_1domain_character_code_listUn_Number_CheckX2424636F6E73756C74322F315F2461757833_2X247573655F6C655F696E74657266_0Group_Solutions_Alt_0Writeq_To_Codes_2X24636174636831_4Set_Last_Syntax_ErrorX24657865635F636D6431_1X24726561645F72657475726E_0X636C6F73655F696E7075745F63686172735F73747265616D_1Fct_Decx_plus_c_eq_yDcg_Trans_Body_4Format_3Blt_CompareFct_Sinfopen@@GLIBC_2.1dup@@GLIBC_2.0Call_With_Args_2type_fd_bool_evaluableFct_IncX3D_2domain_os_pathpermission_operation_inputCall_With_Args_8Put_ListX67656E657269635F766172_1X61746F6D5F636F646573_2Mk_CompoundX2424657865635F636D645F6C696E655F676F616C2F315F2461757831_1_setjmp@@GLIBC_2.0X24666F725F616C74_0Fct_Subtruth_x_plus_c_neq_yX675F696E63_3X6765745F62797465_2Put_Char_2SR_Get_Include_Stream_List_2Context_Error_1Vector_Mod_VectorX242473725F646972656374697665312F325F2461757833_2X7368656C6C_1X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757833_1X2464656275675F646973705F68656C70_0M_ShellX646973706C61795F746F5F6368617273_2le_hook_get_char0Hash_NextSR_Stop_Module_3X7375626C697374_2M_Sys_Err_Stringtag_tblCheck_For_Un_IntegerSR_Get_Module_3Fd_Bool_Meta_3X726561645F7465726D5F66726F6D5F636F646573_3X24636865636B5F6C6973745F6F725F7061727469616C5F6C697374_1X63616C6C5F776974685F61726773_3Peek_Code_2Rd_In_Code_Checkescape_charBlt_G_Test_Reset_BitUn_CompoundSet_Debugger_Streams_2_IO_stdin_usedX7365745F73747265616D5F706F736974696F6E_2X726561645F746F6B656E5F66726F6D5F6368617273_2X726561645F746F6B656E_2Directory_Files_2X2463616C6C5F7465726D5F657870616E73696F6E_2Put_Code_2Stdio_Desc_Of_Streamchar_typeX233D_2X756E6C696E6B_1Blt_Term_GteFd_Tell_Range_RangeX247363616E5F64796E5F746573745F616C74_0Blt_Term_NeqX2464656275675F706F72745F70726F6D7074_6X242472656D6F76655F756E64657273636F72655F766172732F325F2461757831_2X247472795F706F7274726179_1Unset_C_Bip_NameX726561645F7465726D_3Call_Prolog_Next_SolX247573655F636861725F696F_0strtok@@GLIBC_2.0X2473725F73746172745F6D6F64756C65_3sys_varkill@@GLIBC_2.0X77726974655F63616E6F6E6963616C_1X246765745F62696E645F7661726961626C65735F6F7074696F6E73_4X2424726561645F71756572792F325F2461757831_1permission_type_operatorDelete_Opertruth_x_lte_yUpdate_Choice_Point2SR_Check_Descriptor_1Blt_Fast_GteX2463617463685F615F7468726F77_5X77616974_2getc@@GLIBC_2.0SR_Start_Module_3domain_os_file_permissionle_hook_message_boxtruth_x_plus_c_eq_yparse_dico_vartokenX2463757272656E745F70726F6C6F675F666C61675F616C74_0Un_Char_CheckDcg_Trans_Rule_2permission_operation_modifyX24737461746973746963732F325F2461757831_3Check_For_Un_ByteBlt_G_Inc_3X756E6966795F776974685F6F63637572735F636865636B_2Set_Bip_Name_2X247365745F726561645F64656661756C7473_0Add_Mirror_To_Streamatom_end_of_filex_power_a_eq_y_FX63757272656E745F6F70_3Set_Ctrl_C_Handler_0Hash_Insertstm_outputBlt_ListFlush_All_StreamsX7365656B_4Find_Stream_From_PStmparse_nb_varX7072696E745F746F5F6368617273_2domain_stream_seek_methodX726561645F66726F6D5F6368617273_2Rd_NumberFull_Find_ExponFloat_To_Stringatom_user_outputRd_IntegerLoad_Left_RightX2464656275675F706F727431_6sprintf@@GLIBC_2.0X403E_2Fd_Lte_2x_lt_yUntrailRead_From_Chars_2fwrite@@GLIBC_2.0Scan_Dynamic_Pred_Alt_0X6368617261637465725F636F756E74_2X247573655F66645F7072696D65_0Fd_Size_2Unify_AtomFct_Fast_SubX77726974655F63616E6F6E6963616C5F746F5F6368617273_2X246372656174655F636F6C756D6E_3__data_startScan_Next_NumberBlt_GtFd_Dom_2realpath@@GLIBC_2.3sin@@GLIBC_2.0X617267756D656E745F6C697374_1Read_Term_From_Atom_5Fd_Domain_2X706F7274726179_1X2462696E645F7661726961626C6573_4Fd_Prolog_To_Array_AnyX73725F6765745F73697A655F636F756E74657273_3socket@@GLIBC_2.0Current_Prolog_Flag_2X24636865636B5F6F776E65725F66696C6573_3Fd_Set_Vector_Max_1Term_Ref_2Not_Prime_RangeX617070656E64_3X247365745F73747265616D5F656F665F616374696F6E2F325F2461757831_1X646174655F74696D65_1File_Prop_Size_2Un_Byte_IO_getc@@GLIBC_2.0Vector_Interreaddir@@GLIBC_2.0X246765745F62696E645F7661726961626C65735F6F7074696F6E7332_1Check_Valid_Mirror_1X24636865636B5F6C6973745F617267_2_Jv_RegisterClasses__ctype_b_loc@@GLIBC_2.3X2463616C6C5F66726F6D5F6465627567676572_2Fct_Floatle_hook_eraseX247379735F7661725F6765745F626974_3X736574617267_3Unify_StructureFind_Expon_ExactX2462635F73746172745F656D6974_0Pl_Err_TypeX7365656E_0Socket_2rand@@GLIBC_2.0Fd_List_Int_To_Rangetruth_x_eq_cX6765745F62797465_1Recover_Generator_1X2473725F6F70656E5F6E65775F70726F6C6F675F66696C65_1X73796E7461785F6572726F725F696E666F_4Read_Token_From_Codes_2evluation_underflowx_plus_c_neq_yfull_acHash_Free_TableFct_NegX235C5C3D3D3E_2X247573655F61726974685F696E6C_0Blt_ArgRd_Codes_Str_CheckX2464656275675F657865635F636D64_6X636C6F7365_2X242464656275675F63616C6C5F706F72742F355F2461757831_3Writeq_To_Atom_2Save_Call_Info_3X636F6E73756C74_1Rd_Char_Checkbsearch@@GLIBC_2.0log@@GLIBC_2.0fd_copy_variableX2424746F705F6C6576656C322F305F2461757832_1X7365745F70726F6C6F675F666C6167_2X73797374656D_2quot_rem_x_a_r_eq_zX77616D5F6465627567_0Real_Time_1fd_unify_with_integerX3D2E2E_2X242464656275675F706F72745F69676E6F72652F345F2461757832_5X242464656275675F77726974655F676F616C2F345F2461757831_2Emit_Ctrl_CX24696E69745F6465627567676572_0X247365745F73747265616D5F656F665F616374696F6E2F325F2461757832_2Call_With_Args_1Fd_Prolog_To_Rangeescape_symbolChar_Conversion_2tcgetattr@@GLIBC_2.0LE_Put_CharUn_Codes_CheckX2424636865636B5F696E5F6368617261637465725F636F64652F315F2461757831_1read@@GLIBC_2.0Print_To_Chars_2representation_too_many_variablesIndomain_2quot_rem_a_y_r_eq_z_FX736F636B65745F616363657074_3Blt_Ltglob_dico_varX247379735F7661725F7772697465_2X24696E646F6D61696E5F6D696E5F616C74_0Stop_Mark_1Copy_Contiguous_TermTPX24657865635F7175657279_2Current_Input_1X2463617463685F696E7465726E616C_4x_plus_c_gte_yX675F646563_1Get_Structure_TaggedLE_Ins_ModeRange_Reset_Valuepi_arity_wordPortray_Clause_2X2463757272656E745F73747265616D_1Io_Fileno_Of_StreamX63616C6C5F776974685F61726773_7X246765745F6F70656E5F6F7074696F6E73_1X666F726D61745F746F5F6368617273_3Create_Choice_Point2Peek_Char_1LE_Kbd_Is_Not_EmptyGet_Key_No_Echo_2Sys_Var_Reset_Bit_2Range_Test_ValueX64656C6574655F6469726563746F7279_1X2466645F646F6D61696E_3Socket_Listen_2X247375626C69737431_3X66696C655F657869737473_1X2424746F705F6C6576656C322F305F2461757834_3ax_plus_y_plus_z_eq_t_FGet_Nilx_or_y_eq_1LE_Screen_SizePred_Prop_Built_In_1Read_From_Atom_2X73746174697374696373_2X636C6F73655F6F75747075745F63686172735F73747265616D_2Absolute_File_Name_2type_numberFd_Vector_Max_1Sort_List_1atom_void__gmon_start__strcpy@@GLIBC_2.0Recover_After_Errormin_x_a_eq_z_FX247573655F6F735F696E74657266_0le_hook_displUnget_Byte_1 2171 61940:5O A abi-note.S../sysdeps/i386/elf/start.Sinit.cinitfini.c/build/buildd/glibc-2.3.6/build-tree/i386-libc/csu/crti.Scall_gmon_startcrtstuff.c__CTOR_LIST____DTOR_LIST____JCR_LIST__p.0completed.1__do_global_dtors_auxframe_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_aux/build/buildd/glibc-2.3.6/build-tree/i386-libc/csu/crtn.Sobj_begin.cfailLpred1_3Lpred1_1stLpred1_2Lpred1_sub_0Lpred1_14Lpred1_sub_1Lpred1_16Lpred1_18Lpred1_5Lpred1_4fntaLpred1_7Lpred1_6Lpred1_9Lpred1_8Lpred1_11Lpred1_10Lpred1_13Lpred1_12Lpred1_15Lpred1_17Lpred1_19Lpred1_20Lpred4_1directive_1directive_2directive_3directive_4directive_5directive_6directive_7directive_8directive_9directive_10directive_11directive_12directive_13directive_14directive_15directive_16directive_17directive_18directive_19directive_20Object_InitializerSystem_DirectivesUser_Directivesatobj_chain_startobj_chain_stopLpred3_1Lpred10_1Lpred12_1Lpred13_1Lpred14_1Lpred15_1Lpred16_1Lpred17_1Lpred18_1Lpred18_2Lpred19_1Lpred20_2Lpred20_1Lpred20_4Lpred20_3Lpred20_6Lpred20_5Lpred20_7Lpred21_1Lpred22_1Lpred24_1Lpred25_1Lpred27_2Lpred27_3Lpred27_1Lpred27_sub_0Lpred27_5Lpred27_7Lpred27_4Lpred27_6Lpred28_1Lpred29_1Lpred30_1Lpred31_1Lpred31_2Lpred31_4Lpred31_3Lpred33_10Lpred33_2Lpred33_1Lpred33_5Lwork0Lpred33_3Lpred33_9Lpred33_7Lpred33_4Lpred33_6Lpred33_8Lpred34_1Lpred36_1ensure_linkedLpred10_2Lpred10_4Lpred10_3Lpred10_6Lpred10_5Lpred10_7Lpred12_13Lpred12_3Lpred12_2Lpred12_5Lpred12_4Lpred12_7Lpred12_6Lpred12_9Lpred12_8Lpred12_11Lpred12_10Lpred12_12Lpred12_14Lpred13_2Lpred13_4Lpred13_3Lpred18_4Lpred18_3Lpred18_6Lpred18_5Lpred18_8Lpred18_7Lpred18_10Lpred18_9Lpred18_11Lpred21_2Lpred23_1Lpred26_1Lpred29_2Lpred29_4Lpred29_3Lpred32_1Lpred35_1Lpred36_8Lpred36_2Lpred36_3Lpred36_5Lpred36_7Lpred36_4Lpred36_6Lpred36_9Lpred37_1Lpred37_2Lpred37_3Lpred38_1Lpred39_1Lpred39_2Lpred40_1Lpred41_23Lpred41_3Lpred41_1Lpred41_2Lpred41_5Lpred41_4Lpred41_7Lpred41_6Lpred41_9Lpred41_8Lpred41_11Lpred41_10Lpred41_13Lpred41_12Lpred41_15Lpred41_14Lpred41_17Lpred41_16Lpred41_19Lpred41_18Lpred41_21Lpred41_20Lpred41_22Lpred42_1Lpred42_2Lpred42_4Lpred42_3Lpred43_1Lpred43_2Lpred44_1Lpred46_1Lpred47_1Lpred50_1Lpred51_1Lpred52_4Lpred52_1Lpred52_3Lpred52_2Lpred52_sub_0Lpred52_7Lpred52_9Lpred52_6Lpred52_5Lpred52_8Lpred52_10Lpred52_12Lpred52_11Lpred52_14Lpred52_13Lpred52_15Lpred53_1Lpred54_1Lpred55_1Lpred57_1Lpred60_1Lpred60_66Lpred60_6Lpred60_2Lpred60_3Lpred60_sub_0Lpred60_11Lpred60_13Lpred60_4Lpred60_sub_1Lpred60_17Lpred60_19Lpred60_5Lpred60_sub_2Lpred60_21Lpred60_23Lpred60_8Lpred60_7Lpred60_10Lpred60_9Lpred60_12Lpred60_14Lpred60_16Lpred60_15Lpred60_18Lpred60_20Lpred60_22Lpred60_24Lpred60_26Lpred60_25Lpred60_28Lpred60_27Lpred60_30Lpred60_29Lpred60_32Lpred60_31Lpred60_34Lpred60_33Lpred60_36Lpred60_35Lpred60_38Lpred60_37Lpred60_40Lpred60_39Lpred60_42Lpred60_41Lpred60_44Lpred60_43Lpred60_46Lpred60_45Lpred60_48Lpred60_47Lpred60_50Lpred60_49Lpred60_52Lpred60_51Lpred60_54Lpred60_53Lpred60_56Lpred60_55Lpred60_58Lpred60_57Lpred60_60Lpred60_59Lpred60_62Lpred60_61Lpred60_64Lpred60_63Lpred60_65Lpred61_1Lpred62_1Lpred63_1Lpred64_1Lpred65_1Lpred66_1Lpred67_2Lpred67_1Lpred67_4Lpred67_3Lpred67_6Lpred67_5Lpred67_7Lpred69_1Lpred70_2Lpred70_1Lpred70_4Lpred70_3Lpred70_6Lpred70_5Lpred70_8Lpred70_7Lpred70_10Lpred70_9Lpred70_12Lpred70_11Lpred70_13Lpred72_1Lpred72_2Lpred72_4Lpred72_3Lpred74_1Lpred74_2Lpred74_4Lpred74_3Lpred75_1Lpred76_1Lpred76_2Lpred76_8Lpred76_4Lpred76_3Lpred76_6Lpred76_5Lpred76_7Lpred76_9Lpred77_1Lpred78_1Lpred81_1Lpred11_1Lpred14_2Lpred14_4Lpred14_3Lpred15_11Lpred15_3Lpred15_2Lpred15_5Lpred15_4Lpred15_7Lpred15_6Lpred15_9Lpred15_8Lpred15_10Lpred16_2Lpred16_4Lpred16_3Lpred16_5Lpred17_2Lpred17_4Lpred17_3Lpred17_6Lpred17_5Lpred17_8Lpred17_7Lpred17_10Lpred17_9Lpred17_11Lpred18_12Lpred18_14Lpred18_13Lpred18_16Lpred18_15Lpred18_17Indomain_MinIndomain_MaxIndomain_MiddleIndomain_LimitsIndomain_RandomCmp_First_FailCmp_Most_ConstrainedCmp_SmallestCmp_LargestCmp_Max_Regretfd_domain_bloc_1fd_domain_r_bloc_1x_plus_c_eq_y_bloc_1x_plus_c_eq_y_bloc_2x_plus_c_eq_y_F_bloc_1x_plus_c_eq_y_F_bloc_2x_plus_c_neq_y_bloc_1x_plus_c_neq_y_bloc_2x_plus_c_lte_y_bloc_1x_plus_c_lte_y_bloc_2x_plus_c_gte_y_bloc_1x_plus_c_gte_y_bloc_2ax_eq_y_bloc_1ax_eq_y_bloc_2x_plus_y_eq_z_bloc_1x_plus_y_eq_z_bloc_2x_plus_y_eq_z_bloc_3ax_plus_y_eq_z_bloc_1ax_plus_y_eq_z_bloc_2ax_plus_y_eq_z_bloc_3ax_plus_by_eq_z_bloc_1ax_plus_by_eq_z_bloc_2ax_plus_by_eq_z_bloc_3x_plus_y_plus_z_eq_t_bloc_1x_plus_y_plus_z_eq_t_bloc_2x_plus_y_plus_z_eq_t_bloc_3x_plus_y_plus_z_eq_t_bloc_4ax_plus_y_plus_z_eq_t_bloc_1ax_plus_y_plus_z_eq_t_bloc_2ax_plus_y_plus_z_eq_t_bloc_3ax_plus_y_plus_z_eq_t_bloc_4ax_plus_by_plus_z_eq_t_bloc_1ax_plus_by_plus_z_eq_t_bloc_2ax_plus_by_plus_z_eq_t_bloc_3ax_plus_by_plus_z_eq_t_bloc_4ax_eq_y_F_bloc_1ax_eq_y_F_bloc_2x_plus_y_eq_z_F_bloc_1x_plus_y_eq_z_F_bloc_2x_plus_y_eq_z_F_bloc_3ax_plus_y_eq_z_F_bloc_1ax_plus_y_eq_z_F_bloc_2ax_plus_y_eq_z_F_bloc_3ax_plus_by_eq_z_F_bloc_1ax_plus_by_eq_z_F_bloc_2ax_plus_by_eq_z_F_bloc_3x_plus_y_plus_z_eq_t_F_bloc_1x_plus_y_plus_z_eq_t_F_bloc_2x_plus_y_plus_z_eq_t_F_bloc_3x_plus_y_plus_z_eq_t_F_bloc_4ax_plus_y_plus_z_eq_t_F_bloc_1ax_plus_y_plus_z_eq_t_F_bloc_2ax_plus_y_plus_z_eq_t_F_bloc_3ax_plus_y_plus_z_eq_t_F_bloc_4ax_plus_by_plus_z_eq_t_F_bloc_1ax_plus_by_plus_z_eq_t_F_bloc_2ax_plus_by_plus_z_eq_t_F_bloc_3ax_plus_by_plus_z_eq_t_F_bloc_4a_power_n_eq_y_bloc_1a_power_n_eq_y_bloc_2x_power_a_eq_y_bloc_1x_power_a_eq_y_bloc_2xy_eq_z_bloc_1xy_eq_z_bloc_2xy_eq_z_bloc_3a_power_n_eq_y_F_bloc_1a_power_n_eq_y_F_bloc_2x_power_a_eq_y_F_bloc_1x_power_a_eq_y_F_bloc_2xy_eq_z_F_bloc_1xy_eq_z_F_switch_1_instmin_x_y_eq_z_bloc_1min_x_y_eq_z_bloc_2min_x_y_eq_z_bloc_3min_x_y_eq_z_bloc_4min_x_y_eq_z_bloc_5min_x_y_eq_z_switch_1_instmin_x_a_eq_z_bloc_1min_x_a_eq_z_bloc_2min_x_a_eq_z_bloc_3min_x_a_eq_z_bloc_4min_x_a_eq_z_switch_1min_x_a_eq_z_case_group_1min_x_y_eq_z_F_bloc_1min_x_y_eq_z_F_bloc_2min_x_y_eq_z_F_bloc_3min_x_y_eq_z_F_bloc_4min_x_y_eq_z_F_bloc_5min_x_y_eq_z_F_switch_1_instmin_x_a_eq_z_F_bloc_1min_x_a_eq_z_F_bloc_2min_x_a_eq_z_F_bloc_3min_x_a_eq_z_F_bloc_4min_x_a_eq_z_F_switch_1min_x_a_eq_z_F_case_group_1max_x_y_eq_z_bloc_1max_x_y_eq_z_bloc_2max_x_y_eq_z_bloc_3max_x_y_eq_z_bloc_4max_x_y_eq_z_bloc_5max_x_y_eq_z_switch_1_instmax_x_a_eq_z_bloc_1max_x_a_eq_z_bloc_2max_x_a_eq_z_bloc_3max_x_a_eq_z_bloc_4max_x_a_eq_z_switch_1max_x_a_eq_z_case_group_1max_x_y_eq_z_F_bloc_1max_x_y_eq_z_F_bloc_2max_x_y_eq_z_F_bloc_3max_x_y_eq_z_F_bloc_4max_x_y_eq_z_F_bloc_5max_x_y_eq_z_F_switch_1_instmax_x_a_eq_z_F_bloc_1max_x_a_eq_z_F_bloc_2max_x_a_eq_z_F_bloc_3max_x_a_eq_z_F_bloc_4max_x_a_eq_z_F_switch_1max_x_a_eq_z_F_case_group_1abs_x_minus_y_eq_z_bloc_1abs_x_minus_y_eq_z_bloc_2abs_x_minus_y_eq_z_bloc_3abs_x_minus_y_eq_z_switch_1_instabs_x_minus_a_eq_z_bloc_1abs_x_minus_a_eq_z_bloc_2abs_x_minus_a_eq_z_switch_1abs_x_minus_a_eq_z_case_group_2abs_x_minus_a_eq_z_case_group_1abs_x_minus_y_eq_z_F_bloc_1abs_x_minus_y_eq_z_F_bloc_2abs_x_minus_y_eq_z_F_bloc_3abs_x_minus_y_eq_z_F_switch_1_instabs_x_minus_a_eq_z_F_bloc_1abs_x_minus_a_eq_z_F_bloc_2abs_x_minus_a_eq_z_F_switch_1abs_x_minus_a_eq_z_F_case_group_2abs_x_minus_a_eq_z_F_case_group_1quot_rem_x_y_r_eq_z_bloc_1quot_rem_x_y_r_eq_z_bloc_2quot_rem_x_y_r_eq_z_bloc_3quot_rem_x_y_r_eq_z_bloc_4quot_rem_x_y_r_eq_z_bloc_5quot_rem_x_y_r_eq_z_bloc_6quot_rem_x_y_r_eq_z_bloc_7quot_rem_x_y_r_eq_z_switch_1quot_rem_x_y_r_eq_z_bloc_8_instquot_rem_a_y_r_eq_z_bloc_1quot_rem_a_y_r_eq_z_bloc_2quot_rem_a_y_r_eq_z_bloc_3quot_rem_a_y_r_eq_z_bloc_4quot_rem_a_y_r_eq_z_bloc_5quot_rem_a_y_r_eq_z_switch_1quot_rem_a_y_r_eq_z_bloc_6_instquot_rem_x_a_r_eq_z_bloc_1quot_rem_x_a_r_eq_z_bloc_2quot_rem_x_a_r_eq_z_bloc_3quot_rem_x_a_r_eq_z_bloc_4quot_rem_x_a_r_eq_z_bloc_5quot_rem_x_y_r_eq_z_F_bloc_1quot_rem_x_y_r_eq_z_F_bloc_2quot_rem_x_y_r_eq_z_F_bloc_3quot_rem_x_y_r_eq_z_F_bloc_4quot_rem_x_y_r_eq_z_F_bloc_5quot_rem_x_y_r_eq_z_F_bloc_6quot_rem_x_y_r_eq_z_F_bloc_7quot_rem_x_y_r_eq_z_F_switch_1quot_rem_x_y_r_eq_z_F_bloc_8_instquot_rem_a_y_r_eq_z_F_bloc_1quot_rem_a_y_r_eq_z_F_bloc_2quot_rem_a_y_r_eq_z_F_bloc_3quot_rem_a_y_r_eq_z_F_bloc_4quot_rem_a_y_r_eq_z_F_bloc_5quot_rem_a_y_r_eq_z_F_switch_1quot_rem_a_y_r_eq_z_F_bloc_6_instquot_rem_x_a_r_eq_z_F_bloc_1quot_rem_x_a_r_eq_z_F_bloc_2quot_rem_x_a_r_eq_z_F_bloc_3quot_rem_x_a_r_eq_z_F_bloc_4quot_rem_x_a_r_eq_z_F_bloc_5x_eq_y_bloc_1x_eq_y_bloc_2x_eq_y_F_bloc_1x_eq_y_F_bloc_2x_neq_y_bloc_1_instx_neq_y_bloc_2_instx_lt_y_bloc_1x_lt_y_bloc_2x_lte_c_bloc_1x_lte_y_bloc_1x_lte_y_bloc_2x_gte_c_bloc_1zero_power_n_eq_y_bloc_1zero_power_n_eq_y_bloc_2x2_eq_y_bloc_1x2_eq_y_bloc_2x2_eq_y_F_bloc_1x2_eq_y_F_bloc_2x_neq_y_bloc_1x_neq_y_bloc_2xy_eq_z_F_switch_1min_x_y_eq_z_switch_1min_x_y_eq_z_case_group_2min_x_y_eq_z_case_group_1min_x_a_eq_z_bloc_5min_x_a_eq_z_bloc_6min_x_y_eq_z_F_switch_1min_x_a_eq_z_F_bloc_5min_x_a_eq_z_F_bloc_6max_x_y_eq_z_switch_1max_x_y_eq_z_case_group_2max_x_y_eq_z_case_group_1max_x_a_eq_z_bloc_5max_x_a_eq_z_bloc_6max_x_y_eq_z_F_switch_1max_x_a_eq_z_F_bloc_5max_x_a_eq_z_F_bloc_6abs_x_minus_y_eq_z_switch_1abs_x_minus_y_eq_z_case_group_2abs_x_minus_y_eq_z_case_group_1abs_x_minus_a_eq_z_bloc_3abs_x_minus_a_eq_z_bloc_4abs_x_minus_a_eq_z_bloc_5abs_x_minus_a_eq_z_bloc_6abs_x_minus_y_eq_z_F_switch_1abs_x_minus_y_eq_z_F_case_group_2abs_x_minus_y_eq_z_F_case_group_1abs_x_minus_a_eq_z_F_bloc_3abs_x_minus_a_eq_z_F_bloc_4abs_x_minus_a_eq_z_F_bloc_5abs_x_minus_a_eq_z_F_bloc_6quot_rem_x_y_r_eq_z_bloc_8quot_rem_a_y_r_eq_z_bloc_6quot_rem_x_y_r_eq_z_F_bloc_8quot_rem_a_y_r_eq_z_F_bloc_6xy_eq_z_F_case_group_1xy_eq_z_F_bloc_5xy_eq_z_F_bloc_6min_x_y_eq_z_bloc_6min_x_y_eq_z_bloc_7min_x_y_eq_z_bloc_8min_x_y_eq_z_bloc_9min_x_y_eq_z_F_case_group_1min_x_y_eq_z_F_case_group_2max_x_y_eq_z_bloc_6max_x_y_eq_z_bloc_7max_x_y_eq_z_bloc_8max_x_y_eq_z_bloc_9max_x_y_eq_z_F_case_group_1max_x_y_eq_z_F_case_group_2abs_x_minus_y_eq_z_bloc_4abs_x_minus_y_eq_z_bloc_5abs_x_minus_y_eq_z_bloc_6abs_x_minus_y_eq_z_bloc_7abs_x_minus_y_eq_z_bloc_8abs_x_minus_y_eq_z_bloc_9abs_x_minus_y_eq_z_F_bloc_4abs_x_minus_y_eq_z_F_bloc_5abs_x_minus_y_eq_z_F_bloc_6abs_x_minus_y_eq_z_F_bloc_7abs_x_minus_y_eq_z_F_bloc_8abs_x_minus_y_eq_z_F_bloc_9xy_eq_z_F_bloc_2xy_eq_z_F_bloc_3xy_eq_z_F_bloc_4min_x_y_eq_z_F_bloc_6min_x_y_eq_z_F_bloc_7min_x_y_eq_z_F_bloc_8min_x_y_eq_z_F_bloc_9max_x_y_eq_z_F_bloc_6max_x_y_eq_z_F_bloc_7max_x_y_eq_z_F_bloc_8max_x_y_eq_z_F_bloc_9Fd_Bool_Initializerbool_tblbool_xorSet_Notfunc_tblSet_EquivSet_NequivSet_ImplySet_NimplySet_AndSet_NandSet_OrSet_NorSet_EqSet_NeqSet_LtSet_LteSet_ZeroSet_Onestackspvars_tblvars_spSimplifyLoad_Bool_Into_WordAdd_Fd_VariablesSet_Varx_equiv_y_eq_b_bloc_1x_equiv_y_eq_b_bloc_2x_equiv_y_eq_b_bloc_3x_nequiv_y_eq_b_bloc_1x_nequiv_y_eq_b_bloc_2x_nequiv_y_eq_b_bloc_3x_imply_y_eq_b_bloc_1x_imply_y_eq_b_bloc_2x_imply_y_eq_b_bloc_3x_nimply_y_eq_b_bloc_1x_nimply_y_eq_b_bloc_2x_nimply_y_eq_b_bloc_3x_and_y_eq_b_bloc_1x_and_y_eq_b_bloc_2x_and_y_eq_b_bloc_3x_nand_y_eq_b_bloc_1x_nand_y_eq_b_bloc_2x_nand_y_eq_b_bloc_3x_or_y_eq_b_bloc_1x_or_y_eq_b_bloc_2x_or_y_eq_b_bloc_3x_nor_y_eq_b_bloc_1x_nor_y_eq_b_bloc_2x_nor_y_eq_b_bloc_3truth_x_eq_c_switch_1_insttruth_x_eq_y_switch_1_insttruth_x_plus_c_eq_y_switch_1_insttruth_x_eq_c_F_switch_1_insttruth_x_eq_y_F_switch_1_insttruth_x_plus_c_eq_y_F_switch_1_insttruth_x_neq_c_switch_1_insttruth_x_neq_y_switch_1_insttruth_x_plus_c_neq_y_switch_1_insttruth_x_neq_c_F_switch_1_insttruth_x_neq_y_F_switch_1_insttruth_x_plus_c_neq_y_F_switch_1_insttruth_x_lt_y_switch_1_insttruth_x_lte_c_switch_1_insttruth_x_lte_y_switch_1_insttruth_x_plus_c_lte_y_switch_1_insttruth_x_gte_c_switch_1_insttruth_x_plus_c_gte_y_switch_1_instnot_x_eq_b_bloc_1_instnot_x_eq_b_bloc_2_instx_imply_y_eq_1_bloc_1x_imply_y_eq_1_bloc_2x_and_y_eq_0_bloc_1x_and_y_eq_0_bloc_2x_or_y_eq_1_bloc_1x_or_y_eq_1_bloc_2not_x_eq_b_bloc_1not_x_eq_b_bloc_2truth_x_eq_c_switch_1truth_x_eq_y_switch_1truth_x_plus_c_eq_y_switch_1truth_x_eq_c_F_switch_1truth_x_eq_y_F_switch_1truth_x_plus_c_eq_y_F_switch_1truth_x_neq_c_switch_1truth_x_neq_y_switch_1truth_x_plus_c_neq_y_switch_1truth_x_neq_c_F_switch_1truth_x_neq_y_F_switch_1truth_x_plus_c_neq_y_F_switch_1truth_x_lt_y_switch_1truth_x_lte_c_switch_1truth_x_lte_y_switch_1truth_x_plus_c_lte_y_switch_1truth_x_gte_c_switch_1truth_x_plus_c_gte_y_switch_1truth_x_eq_c_bloc_3truth_x_eq_c_bloc_4truth_x_eq_c_bloc_2truth_x_eq_c_bloc_1truth_x_eq_y_bloc_5truth_x_eq_y_bloc_6truth_x_eq_y_case_group_2truth_x_eq_y_case_group_1truth_x_plus_c_eq_y_bloc_5truth_x_plus_c_eq_y_bloc_6truth_x_plus_c_eq_y_case_group_2truth_x_plus_c_eq_y_case_group_1truth_x_eq_c_F_bloc_4truth_x_eq_c_F_bloc_3truth_x_eq_c_F_bloc_2truth_x_eq_c_F_bloc_1truth_x_eq_y_F_bloc_6truth_x_eq_y_F_bloc_5truth_x_eq_y_F_case_group_2truth_x_eq_y_F_case_group_1truth_x_plus_c_eq_y_F_bloc_6truth_x_plus_c_eq_y_F_bloc_5truth_x_plus_c_eq_y_F_case_group_2truth_x_plus_c_eq_y_F_case_group_1truth_x_neq_c_bloc_4truth_x_neq_c_bloc_3truth_x_neq_c_bloc_2truth_x_neq_c_bloc_1truth_x_neq_y_bloc_6truth_x_neq_y_bloc_5truth_x_neq_y_case_group_2truth_x_neq_y_case_group_1truth_x_plus_c_neq_y_bloc_6truth_x_plus_c_neq_y_bloc_5truth_x_plus_c_neq_y_case_group_2truth_x_plus_c_neq_y_case_group_1truth_x_neq_c_F_bloc_4truth_x_neq_c_F_bloc_3truth_x_neq_c_F_bloc_2truth_x_neq_c_F_bloc_1truth_x_neq_y_F_bloc_6truth_x_neq_y_F_bloc_5truth_x_neq_y_F_case_group_2truth_x_neq_y_F_case_group_1truth_x_plus_c_neq_y_F_bloc_6truth_x_plus_c_neq_y_F_bloc_5truth_x_plus_c_neq_y_F_case_group_2truth_x_plus_c_neq_y_F_case_group_1truth_x_lt_y_bloc_6truth_x_lt_y_bloc_5truth_x_lt_y_case_group_2truth_x_lt_y_case_group_1truth_x_lte_c_bloc_4truth_x_lte_c_bloc_3truth_x_lte_c_bloc_2truth_x_lte_c_bloc_1truth_x_lte_y_bloc_6truth_x_lte_y_bloc_5truth_x_lte_y_case_group_2truth_x_lte_y_case_group_1truth_x_plus_c_lte_y_bloc_6truth_x_plus_c_lte_y_bloc_5truth_x_plus_c_lte_y_case_group_2truth_x_plus_c_lte_y_case_group_1truth_x_gte_c_bloc_4truth_x_gte_c_bloc_3truth_x_gte_c_bloc_2truth_x_gte_c_bloc_1truth_x_plus_c_gte_y_bloc_6truth_x_plus_c_gte_y_bloc_5truth_x_plus_c_gte_y_case_group_2truth_x_plus_c_gte_y_case_group_1truth_x_eq_y_bloc_1_insttruth_x_eq_y_bloc_2_insttruth_x_eq_y_bloc_3truth_x_eq_y_bloc_4truth_x_plus_c_eq_y_bloc_1_insttruth_x_plus_c_eq_y_bloc_2_insttruth_x_plus_c_eq_y_bloc_3truth_x_plus_c_eq_y_bloc_4truth_x_eq_y_F_bloc_1_insttruth_x_eq_y_F_bloc_2_insttruth_x_eq_y_F_bloc_3truth_x_eq_y_F_bloc_4truth_x_plus_c_eq_y_F_bloc_1_insttruth_x_plus_c_eq_y_F_bloc_2_insttruth_x_plus_c_eq_y_F_bloc_3truth_x_plus_c_eq_y_F_bloc_4truth_x_neq_y_bloc_1truth_x_neq_y_bloc_2truth_x_neq_y_bloc_3_insttruth_x_neq_y_bloc_4_insttruth_x_plus_c_neq_y_bloc_1truth_x_plus_c_neq_y_bloc_2truth_x_plus_c_neq_y_bloc_3_insttruth_x_plus_c_neq_y_bloc_4_insttruth_x_neq_y_F_bloc_1truth_x_neq_y_F_bloc_2truth_x_neq_y_F_bloc_3_insttruth_x_neq_y_F_bloc_4_insttruth_x_plus_c_neq_y_F_bloc_1truth_x_plus_c_neq_y_F_bloc_2truth_x_plus_c_neq_y_F_bloc_3_insttruth_x_plus_c_neq_y_F_bloc_4_insttruth_x_lt_y_bloc_1truth_x_lt_y_bloc_2truth_x_lt_y_bloc_3truth_x_lt_y_bloc_4truth_x_lte_y_bloc_1truth_x_lte_y_bloc_2truth_x_lte_y_bloc_3truth_x_lte_y_bloc_4truth_x_plus_c_lte_y_bloc_1truth_x_plus_c_lte_y_bloc_2truth_x_plus_c_lte_y_bloc_3truth_x_plus_c_lte_y_bloc_4truth_x_plus_c_gte_y_bloc_1truth_x_plus_c_gte_y_bloc_2truth_x_plus_c_gte_y_bloc_3truth_x_plus_c_gte_y_bloc_4truth_x_eq_y_bloc_1truth_x_eq_y_bloc_2truth_x_plus_c_eq_y_bloc_1truth_x_plus_c_eq_y_bloc_2truth_x_eq_y_F_bloc_1truth_x_eq_y_F_bloc_2truth_x_plus_c_eq_y_F_bloc_1truth_x_plus_c_eq_y_F_bloc_2truth_x_neq_y_bloc_3truth_x_neq_y_bloc_4truth_x_plus_c_neq_y_bloc_3truth_x_plus_c_neq_y_bloc_4truth_x_neq_y_F_bloc_3truth_x_neq_y_F_bloc_4truth_x_plus_c_neq_y_F_bloc_3truth_x_plus_c_neq_y_F_bloc_4prime_x_bloc_1not_prime_x_bloc_1Lpred11_2Lpred11_4Lpred11_3Fd_All_Different_Recfd_element_bloc_1fd_element_bloc_2fd_element_bloc_3fd_element_var_bloc_1fd_element_var_bloc_2fd_element_var_bloc_3fd_element_var_bloc_4fd_atmost_bloc_1_instfd_atleast_bloc_1_instfd_exactly_bloc_1_instfd_atmost_bloc_1fd_atleast_bloc_1fd_exactly_bloc_1Lpred5_1Math_Supp_Initializerdelay_cstr_stackdelay_spLoad_Delay_Cstr_PartNormalizearith_tblsortLoad_Term_Into_WordLoad_PolyLoad_Poly_RecLoad_Left_Right_RecCompar_Monomtxp.0Find_Expon_Generalprime_vec_sizeCompute_Prime_Rangeprime_rangenot_prime_rangealways_datenever_dateAll_Propagationsdummy_fd_varbuff.0nb_bits_in_byte.1unify_x_y_bloc_1unify_x_y_bloc_2Error_Supp_Initializerlast_err_filec_bip_func_strc_bip_aritycur_bip_funccur_bip_aritylast_err_collast_err_linelast_err_msgInit_Stream_Suppstatic_str_stream_rdstatic_str_stream_wrtty_ptrstream_1atom_constant_term_streamword_current_input_streamword_current_output_streamTTY_GetcTTY_ClearerrFind_Free_Streamtty_linedit_depth.0tty_bufftty_first_buffStr_Stream_GetcStr_Stream_Putch.1Lpred2_1Lpred3_9Lpred3_3Lpred3_2Lpred3_5Lpred3_4Lpred3_7Lpred3_6Lpred3_8Lpred5_2Lpred6_1Lpred7_1Lpred8_1Lpred8_6Lpred8_2Lpred8_3Lpred8_5Lpred8_4Lpred9_1Lpred9_2Lpred7_2Clause_Altlast_clauseRetract_AltLpred9_4Lpred9_3Lpred10_13Lpred10_9Lpred10_8Lpred10_11Lpred10_10Lpred10_12Lpred11_5Lpred15_19Lpred15_13Lpred15_12Lpred15_15Lpred15_14Lpred15_17Lpred15_16Lpred15_18Lpred19_2Lpred19_4Lpred19_3Lpred19_5Lpred21_4Lpred21_3Lpred21_5Lpred4_2Lpred4_4Lpred4_3Oper_Initializeratom_specif_tblDetect_Oper_SpecifLpred10_24Lpred10_14Lpred10_16Lpred10_15Lpred10_18Lpred10_17Lpred10_20Lpred10_19Lpred10_22Lpred10_21Lpred10_23Lpred11_7Lpred11_6Lpred11_9Lpred11_8Lpred11_11Lpred11_10Lpred11_13Lpred11_12Lpred11_15Lpred11_14Lpred11_17Lpred11_16Lpred11_19Lpred11_18Lpred11_21Lpred11_20Lpred11_22Lpred23_18Lpred23_4Lpred23_2Lpred23_3Lpred23_6Lpred23_5Lpred23_8Lpred23_7Lpred23_10Lpred23_9Lpred23_12Lpred23_11Lpred23_14Lpred23_13Lpred23_16Lpred23_15Lpred23_17Lpred24_3Lpred24_2Lpred24_5Lpred24_4Lpred24_7Lpred24_6Lpred24_9Lpred24_8Lpred24_11Lpred24_10Lpred24_13Lpred24_12Lpred24_15Lpred24_14Lpred24_16Create_Malloc_AtomCompute_Next_BLAString_To_NumberLpred13_21Lpred13_5Lpred13_7Lpred13_6Lpred13_9Lpred13_8Lpred13_11Lpred13_10Lpred13_13Lpred13_12Lpred13_15Lpred13_14Lpred13_17Lpred13_16Lpred13_19Lpred13_18Lpred13_20Call_With_ArgsFlag_Initializeratom_flag_tblatom_downatom_toward_zeroatom_onatom_offatom_erroratom_warningatom_failatom_charsatom_codesatom_atomatom_chars_no_escapeatom_codes_no_escapeatom_atom_no_escapeatom_prologUnif_Flagcv.0Arith_InitializerLoad_Math_Expressionfix_bug.0G_Var_InitializerG_Assign_ArrayG_Alloc_ArrayG_Assign_ElementG_Free_ElementG_Copy_ElementGet_Target_From_SelectorGet_Target_From_GvarGet_Int_From_WordGet_Term_Addr_From_TargetGet_Int_Addr_From_Gvarg_targetatom_g_arrayG_Trail_For_BacktrackG_UntrailG_Read_Elementatom_g_array_autoatom_g_array_extendg_var_tblAll_Solut_InitializerdummysolExistential_Variablesexist_2Bound_Varkey_var_ptrHandle_Key_Variablessave_key_var_ptrnext_key_var_ptrLink_Key_VarGroupbound_var_ptrFree_Varnew_gen_wordfree_var_baseSort_InitializerMerge_SortKeysort_Cmpminus_2Lpred2_2Lpred2_4Lpred2_3Lpred7_4Lpred7_3Lpred9_sub_0Lpred9_5Lpred9_7Lpred9_6Lpred15_sub_0Lpred23_sub_0Lpred25_2Lpred25_3Lpred25_sub_0Lpred25_5Lpred25_7Lpred25_4Lpred25_6Lpred5_21Lpred5_3Lpred5_5Lpred5_4Lpred5_7Lpred5_6Lpred5_9Lpred5_8Lpred5_11Lpred5_10Lpred5_13Lpred5_12Lpred5_15Lpred5_14Lpred5_17Lpred5_16Lpred5_19Lpred5_18Lpred5_20Lpred6_3Lpred6_2Lpred6_5Lpred6_4Lpred6_7Lpred6_6Lpred6_9Lpred6_8Lpred6_11Lpred6_10Lpred6_13Lpred6_12Lpred6_15Lpred6_14Lpred6_16last_user_timelast_system_timelast_cpu_timelast_real_timen.0Stack_SizeLpred21_6Lpred21_7Lpred22_2Lpred22_4Lpred22_3Lpred22_6Lpred22_5Lpred22_7Lpred26_2Lpred26_4Lpred26_3Lpred32_2Lpred38_2Lpred38_4Lpred38_3Lpred38_5Lpred44_2Lpred44_4Lpred44_3Lpred44_6Lpred44_5Lpred44_7Lpred45_1Lpred53_28Lpred53_4Lpred53_2Lpred53_3Lpred53_6Lpred53_5Lpred53_8Lpred53_7Lpred53_10Lpred53_9Lpred53_12Lpred53_11Lpred53_14Lpred53_13Lpred53_16Lpred53_15Lpred53_18Lpred53_17Lpred53_20Lpred53_19Lpred53_22Lpred53_21Lpred53_24Lpred53_23Lpred53_26Lpred53_25Lpred53_27Lpred54_3Lpred54_2Lpred54_5Lpred54_4Lpred54_7Lpred54_6Lpred54_9Lpred54_8Lpred54_11Lpred54_10Lpred54_13Lpred54_12Lpred54_15Lpred54_14Lpred54_17Lpred54_16Lpred54_19Lpred54_18Lpred54_21Lpred54_20Lpred54_23Lpred54_22Lpred54_25Lpred54_24Lpred54_26Lpred58_1Lpred2_11Lpred2_sub_0Lpred2_8Lpred2_5Lpred2_7Lpred2_6Lpred2_9Lpred2_10Lpred2_12FormatArg_AtomArg_IntegerArg_FloatRead_ArgLpred14_6Lpred14_5Lpred14_8Lpred14_7Lpred14_10Lpred14_9Lpred14_12Lpred14_11Lpred14_14Lpred14_13Lpred14_16Lpred14_15Lpred14_17Os_Interf_Initializeratom_dtatom_readatom_writeatom_executeatom_searchatom_regularatom_directoryatom_fifoatom_socketatom_character_deviceatom_block_deviceatom_unknowntsignb_sigGet_Path_NameFlag_Of_PermissionDate_Time_To_Prologatom_host_name.0Select_Init_SetSelect_Init_Ready_ListExpand_Initializerdcg_2topopt_term_unifDcg_HeadDcg_Bodyatom_clauseDcg_Body_On_StackDcg_Term_List_On_StackDcg_Compound2atom_phraseatom_ifLpred30_2Lpred30_4Lpred30_3Pretty_InitializerCheck_Structureprec.0Show_BodyStart_Lineequal_2atom_dollar_varnamenb_to_tryCollect_Excluded_RecVar_Name_To_Var_NumberExclude_A_Var_NumberBind_Variabledollar_var_1dollar_varname_1Portray_ClauseCollect_Singletonsingl_var_ptrnb_singl_varatom_dcgatom_dollar_varCtrl_C_ManagerDebug_Initializerenvir_namechoice_nametrail_tag_namepstm_ipstm_odbg_jumperDebugger_Signal_HandlerScan_CommandFind_Functionnb_read_argread_argcmd.0Write_Data_ModifyWhereWhatDereferenceEnvironmentBacktrackHelpRead_Bank_Adrreg_copyPrint_Bank_Name_OffsetPrint_Wam_WordModify_Wam_WordRead_An_IntegerDetect_StackDetect_Pred_From_CodeMy_System_DirectivesLpred8_14Lpred8_8Lpred8_7Lpred8_10Lpred8_9Lpred8_12Lpred8_11Lpred8_13Lpred28_2Lpred28_4Lpred28_3Lpred28_6Lpred28_5Lpred28_8Lpred28_7Lpred28_10Lpred28_9Lpred28_12Lpred28_11Lpred28_14Lpred28_13Lpred28_16Lpred28_15Lpred28_17Lpred32_4Lpred32_3Lpred32_6Lpred32_5Lpred32_8Lpred32_7Lpred32_10Lpred32_9Lpred32_12Lpred32_11Lpred32_14Lpred32_13Lpred32_15Lpred56_1Lpred58_8Lpred58_2Lpred58_4Lpred58_3Lpred58_6Lpred58_5Lpred58_7Lpred61_7Lpred61_3Lpred61_2Lpred61_sub_0Lpred61_4Lpred61_6Lpred61_5sr_tblsr_tbl_sizesr_last_usedcur_srGet_DescriptorCommon_CleanExec_One_DirectiveUndo_DirectivesClose_Current_ModuleWrite_LocationSocket_Initializeratom_AF_UNIXatom_AF_INETCreate_Socket_Streamsend_varsvarsCopy_Term_Recbase_copytop_varsParse_Supp_Initializerjumpertok_presentbuff_save_machine_regsParse_TermParse_ErrorLookup_In_Dico_VarCreate_StructureParse_Args_Of_FunctorParse_Bracketed_TermParse_Listatom_varatom_stringatom_back_quotesatom_punctatom_full_stopatom_extendWrite_Supp_Initializerlast_prefix_opShow_TermShow_Global_Varignore_opShow_List_ArgShow_StructureShow_AtomShow_FloatShow_Fd_VariableShow_IntegerTry_Portrayatom_dotsquotedspace_argsname_varsnumber_varscurly_brackets_1try_portray_code.1portrayedOut_Charerase_stampfirst_dyn_with_erasesize_of_erasedAdd_To_2ChainIndex_From_First_ArgAlloc_Init_Dyn_InfoUnlink_ClauseFree_ClauseGet_Scan_Choice_PointScan_Dynamic_Pred_NextClean_Erased_Clausessave_call_infoByte_Code_Initializerop_tblCompar_Inst_Code_Opnb_opbc_nb_blockbcatom_dynamicatom_publicatom_built_inatom_built_in_fdcaller_aritycaller_funcbc_spBC_Arg_X_Or_YBC_Arg_Func_Aritydebug_callBC_Emulate_Pred_AltBC_Emulate_Clauseglob_funcglob_dynBC_Emulate_Byte_CodePrep_Debug_Callerr_msgcc_origc_typeScan_QuotedScan_NumberScan_Quoted_Charobj_end.cstart_user_timestart_system_timestart_real_timecur_seedpage_sizeSIGSEGV_Handlerbuff.1cur_work_dir.2msg.3buff.4arg.0nb_arg.1value.2letters.3arg.4Hash_Locatenb_objobj_tblnb_user_directivesinit_buff_regsheap_actual_startCall_Prolog_FailCall_Prolog_SuccessCall_Nextp_buff_savep_jumpercont_jmpCheck_If_Var_Occurshash_weight_tblhash_inv_tblstr_charLocate_AtomHash_Stringgen_sym_buffFd_Solver_Missingseparatorsins_modeclipboardhist_starthist_endcomp_startprompt_lengthglobal_strTab_To_SpacesHistory_Add_Lineglobal_posglobal_endDisplay_HelpNew_CharCompletion_Print_AllSkipCompletion_Do_Matchcomp_last_matchcomp_first_matchHistory_Update_LineHistory_Get_Linehist_tblIs_A_Separatorctrl_c_ret_valcomp_nb_matchcomp_match_max_lgcomp_cur_matchuse_guiuse_ansifd_infd_outinitialized.0le_hook_present.1Parse_Env_VarChoose_Fd_OutLE_Get_Char0BackdForwdDisplEraseDispl_Strposnb_colsold_stty_inold_stty_outis_tty_inis_tty_outinterrupt_keynew_stty_outnb_rowsnew_stty_infrom_callbackret_valWrapper_Handlerctrl_c_handlerinside_ctrl_c_DYNAMIC__fini_array_end__fini_array_start__init_array_end_GLOBAL_OFFSET_TABLE___init_array_startX736B6970_1Fct_ShrX6765745F63686172_2Fd_Eq_2X24696E646F6D61696E5F6C696D6974735F616C74_0stm_debugger_inputWrite_1Wait_2Nth_Root_UpX72656E616D655F66696C65_2Remove_Stream_Mirror_2X2473686F775F6C65617368696E675F696E666F31_1X247573655F6F706572_0domain_socket_addressfd_domainX636861725F636F6465_2X242473725F74726561745F7465726D2F325F2461757832_4Write_Pl_State_FileX756E6765745F636F6465_2Vector_Sub_VectorFull_Coeff_Power_VarWrite_Canonical_To_Chars_2Math_Fast_Load_ValueX757365725F74696D65_1evluation_int_overflowFd_Tell_Int_RangeX2424636865636B5F73747265616D5F6F725F7661722F325F2461757831_1Fd_Reset_SolverX247573655F657870616E64_0X246C696E65735F746F5F636F6C756D6E73_2Read_Token_1Copy_Term_2X666F726D6174_3X246765745F7072656469636174655F66696C655F696E666F_3X24247265696E69745F61667465725F657863657074696F6E2F305F2461757831_0max_x_a_eq_z_FPrint_2atom_curly_bracketsFd_Lt_2quot_rem_x_y_r_eq_z_FX2463757272656E745F6F705F616C74_0X63616C6C5F776974685F61726773_10Os_Version_1Blt_Fd_VarRd_Number_CheckPut_Atom_TaggedInit_OperAdd_Stream_For_Stdio_DescX74656C6C_1X233C_2X6F6E6365_1X777269746571_2Fd_Element_V_To_Xipred_tblx_nand_y_eq_bX24636F6E73756C7431_1X247365745F73725F64656661756C7473_0Vector_Mod_ValueX242464656275675F63616C6C312F385F2461757831_3Blt_G_Dec_2Un_TermX235C5C3D23_2X2464656275675F69735F6E6F745F6C656173686564_1usleep@@GLIBC_2.0BC_Start_Emit_0mkdir@@GLIBC_2.0X6E6F6465627567_0Read_1Blt_Fast_GtX61746F6D5F70726F7065727479_2Blt_Ltefd_reset_solverttyname@@GLIBC_2.0X247465726D5F746F5F676F616C31_2Current_Predicate_Alt_0x2_eq_y_FX61746F6D5F6C656E677468_2cos@@GLIBC_2.0Fct_MinInit_PredX247465726D5F746F5F676F616C_3X6C6F7765725F7570706572_2X2424706F72747261795F636C617573652F325F2461757832_1X2464656275675F706F72745F6D61736B_2X66756E63746F72_3X6D656D626572_2Create_OperInit_Machine1Install_Ctrl_C_HandlerX7365745F6F7574707574_1type_listSwitch_On_Term_Var_AtmX6E65775F61746F6D_2Call_With_Args_4X2466645F73656C5F61727261795F66726F6D5F6C697374_2Mk_AtomVector_Next_BeforeX2464656275675F646973705F616C7465726E61746976657331_2SR_Get_File_Name_2Fct_AbsSys_Var_Dec_1X24657865632F355F2461757831_1Full_Var_Power_CoeffFd_Variable_Size0X247365746172675F696E5F6C6173745F666F756E64_2CutX73725F77726974655F6572726F72_6X2473725F64697265637469766531_2domain_not_less_than_zeroLE_Initializeexistence_source_sinkLoad_Call_Info_Arg_1X2463616C6C31_2X246C697374696E675F616C6C_1X73725F6765745F73747265616D_2X24246765745F726561645F6F7074696F6E73322F315F2461757831_1Read_Term_5File_Prop_Date_2def_trail_sizerename@@GLIBC_2.0X235C5C2F5C5C_2Put_Structure_TaggedX247573655F7772697465_0X242473746F72655F736F6C7574696F6E732F345F2461757831_3X24636F6E73756C7433_2Set_Predicate_File_Info_3Write_Term_2X726561645F746F6B656E_1Vector_ComplFd_Tell_Not_ValueOs_ErrorX2464656275675F7370795F7265736574_1Set_Debug_Call_Code_0X77726974655F746F5F61746F6D_2Aux_Name_1Exec_5atom_appenddomain_term_stream_or_aliasX2464656275675F6C6973745F6F665F70726564_2X756E6765745F62797465_1Mk_CharsX246765745F726561645F6F7074696F6E7331_1Check_For_Un_Compoundax_plus_by_eq_zDelete_Choice_Point1Unget_Char_1fd_unify_with_fd_varatom_falsenot_prime_xX247573655F736F636B657473_0LE_Compl_Add_WordVector_Add_VectorBlt_Fast_Ltx_lte_cInit_MachineTest_Alias_Not_Assigned_1X68616C74_1X66645F6D696E696D697A65_2X2466645F6D696E696D697A652F325F2461757831_5X246765745F6C6162656C696E675F6F7074696F6E7332_1X66645F616C6C5F646966666572656E74_1vsprintf@@GLIBC_2.0strchr@@GLIBC_2.0Fd_Unify_With_Fd_Var0Blt_UnivX756E6765745F636F6465_1truth_x_plus_c_lte_yX2424706F72747261795F636C617573652F325F2461757831_1Create_Atom_TaggedX63616C6C5F776974685F61726773_2X2472656D6F76655F756E64657273636F72655F76617273_2X646562756767696E67_0Rd_In_CharX756E6765745F63686172_1Fd_Variable_To_String0Unget_Code_2Blt_G_Readx_eq_y_FStream_PutsRd_Codes_StrX24246765745F726561645F6F7074696F6E73322F315F2461757832_1X24706C5F6572725F726570726573656E746174696F6E_1X6C6173745F726561645F73746172745F6C696E655F636F6C756D6E_2X24706C5F6572725F73796E746178_1X7075745F636F6465_1Range_Nb_ElemNth_Root_DnCurrent_Atom_Alt_0Pred_Prop_Public_1Atom_Property_6fdopen@@GLIBC_2.1Stream_PutcX6E6F737079_1X66645F6F6E6C795F6F6E65_1Unget_Char_2System_Time_1X233E23_2Name_Singleton_Vars_1X246765745F726561645F6F7074696F6E73_4X2463616C6C5F696E7465726E616C31_2X246C6F61645F70726564_2X706F72747261795F636C61757365_1Read_AtomX242477726974655F696E64696361746F722F305F2461757831_2Blt_Compoundpermission_type_past_end_of_streamSys_Var_Inc_1SR_Get_Stm_For_Read_Term_1X2477726974655F736F6C7574696F6E_3X24627265616B2F305F2461757831_1Write_Canonical_2Open_Output_Term_Stream_1Rd_Proper_ListStatistics_Global_Stack_2Get_Char_1alias_tblCurrent_Bip_Name_2Halt_1X2473747265616D5F70726F70657274792F325F2461757831_3Blt_G_Reset_BitX24247370795F746573745F636F6E646974696F6E2F335F2461757831_2X73725F7365745F6572726F725F636F756E74657273_3atan@@GLIBC_2.0X246C6F61645F66696C65_1Fct_Fast_SignX3D3A3D_2X737061776E_3X247365745F746F705F6C6576656C5F73747265616D73_2X7065656B5F62797465_1X7065656B5F636F6465_1Retractall_If_Empty_Head_1type_byteevluation_zero_divisorFind_Linked_ObjectsRead_Integer_1x_imply_y_eq_bDelete_Choice_Point3X726561645F7465726D_2X24706C5F6572725F696E7374616E74696174696F6E_0fd_init_solverX666F726D61745F746F5F61746F6D_3X66645F6C6162656C696E676666_1reg_tblM_Real_TimeFd_Unify_With_Integer0X72657665727365_2SR_Write_Message_8X746162_1atom_debugger_outputX247573655F66645F6F7074696D_0Malloc_CheckNth_Root_ExactX246765745F6C696E656469745F70726F6D7074_1X6E6F6E5F67656E657269635F766172_1X2424636F6E73756C74322F315F2461757831_2X24696E646F6D61696E5F72616E646F6D5F616C74_0getpid@@GLIBC_2.0X666F726D61745F746F5F636F646573_3X246D696E5F6C69737431_3Blt_NumberFatal_ErrorRange_Test_Null_InterRd_String_CheckOpen_Input_Term_Stream_2X246765745F636C6F73655F6F7074696F6E73_1Nl_1Rd_FloatFork_Prolog_1X2463617463685F696E7465726E616C31_5X2424636865636B5F686561642F315F2461757831_1X2463757272656E745F6D6972726F72_2X247573655F73746174_0__ctype_tolower_loc@@GLIBC_2.3domain_stream_positionCreate_Choice_Point3X2464656275675F63616C6C_2X246164645F636C617573655F7465726D_1init_stream_suppRange_ComplSR_Init_Open_2X242464656275675F657865635F636D642F365F2461757833_2Read_Number_1Un_In_CodeVector_UnionLE_Get_Current_WordX2473725F63757272656E745F64657363726970746F725F616C74_0atom_bofWrite_Term_To_Atom_2X66645F646F6D61696E_3X246D656D6265722F325F2461757831_3X66645F656C656D656E745F766172_3Put_NilX66645F6D6178_2Switch_On_Term_Var_StcX7365745F73747265616D5F6C696E655F636F6C756D6E_3X675F696E63_1Fct_Truncatelast_writingMath_Load_Valuele_hook_exit_processSet_Seed_1Hash_Alloc_TableX2463616C6C_4X66645F72656C6174696F6E_2X6F70656E5F696E7075745F636F6465735F73747265616D_2X247365745F73747265616D5F627566666572696E672F325F2461757831_1Stream_CloseFct_Fast_Ortype_fd_evaluablePut_X_VariableX247468726F77_4X24696E646F6D61696E5F6D61785F616C74_0X247365745F7072656469636174655F66696C655F696E666F_3stm_last_usedatom_streamX246765745F77726974655F6F7074696F6E73_1x_equiv_y_eq_brepresentation_min_integerFd_Stop_ConstraintX66645F63617264696E616C697479_2X736F7274_1Reset_PrologUn_Boolean_Checktype_evaluableRange_From_VectorX2472657472616374_2domain_stream_propertyRd_In_CodeRange_Div_ValueFct_Fast_DecSys_Var_Get_Bit_3X776F726B696E675F6469726563746F7279_1Blt_G_AssignbM_Create_Shell_CommandRead_Token_From_Atom_2Un_Code_CheckX6C696E655F636F756E74_2X72616E646F6D_3Argument_List_1write@@GLIBC_2.0X2424636F6E73756C74322F315F2461757832_2localtime@@GLIBC_2.0Scan_Peek_CharX2462635F656D756C6174655F636F6E74_0Flush_Output_1Update_Water_MarkFct_SignX24246765745F77726974655F6F7074696F6E73322F315F2461757833_1Pred_Prop_User_1X2464656275675F726561645F636D64_1X242466645F6C6162656C696E672F325F2461757832_1Exit_With_Exceptionfileno@@GLIBC_2.0X403E3D_2Set_Stream_Eof_Action_2Statistics_Trail_Stack_2Op_3X66645F6D6178696D697A65_2X5C5C3D3D_2SR_Get_Position_3X7365745F73747265616D5F627566666572696E67_2X6370755F74696D65_1X2424636865636B5F6F776E65725F66696C65732F335F2461757831_6strcmp@@GLIBC_2.0X6F70656E5F6F75747075745F61746F6D5F73747265616D_1Choice_Point_Info_4Fd_ExactlySet_Stream_Buffering_2stm_tblCurrent_Stream_1representation_character_codeX24657870616E645F7465726D31_2X726561645F66726F6D5F61746F6D_2base_fdX24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757831_1use_le_promptFd_Prolog_To_ValueSwitch_On_Term_Var_Atm_LstX666F72_3X246361746368_6X2473725F6765745F666F726D61745F617267735F6572726F72_6last_output_soraStore_Solution_1close@@GLIBC_2.0asin@@GLIBC_2.0Range_Mul_ValueFd_Check_For_Bool_Varx_plus_c_lte_yFd_Math_Unify_X_YX2466645F6C6162656C696E675F737464_2Fd_Tell_Interv_IntervStream_Getc_fp_hwPeek_Char_2fd_domain_rRead_Term_From_Codes_5byte_codeFd_Sel_Array_From_List_2X24246765745F73725F6F7074696F6E73322F315F2461757832_1Unify_IntegerCheck_Stream_TypeX246861735F6E6F5F7370795F706F696E74_1X246C6F61645F6469726563746976655F657863657074696F6E_3Fd_Element_V_To_IX6E756D6265725F6368617273_2Fd_Element_Var_V_To_IX66645F61746C65617374_3Read_IntegerFd_Element_I_To_VX242464656275675F6C6973745F6F665F70726564312F345F2461757831_4Rd_Chars_Checkatom_lineX242464656275675F657865635F636D642F365F2461757836_1X6E616D655F73696E676C65746F6E5F76617273_1X73725F6765745F6D6F64756C65_3Rd_In_Char_CheckX246765745F6F70656E5F6F7074696F6E7332_1X73756D5F6C697374_2permission_type_streamSleep_1X247573655F675F7661725F696E6C_0SR_Current_Descriptor_1X2463757272656E745F7072656469636174655F616E79_1fprintf@@GLIBC_2.0X2473725F6572726F725F66726F6D5F657863657074696F6E_2fork@@GLIBC_2.0M_TempnamX246765745F73725F6F7074696F6E7331_1Unify_Structure_TaggedFct_Fast_NegDelete_Choice_Point4Father_Pred_Of_Auxgetenv@@GLIBC_2.0M_Random_FloatX63757272656E745F61746F6D_1X6765745F73656564_1X6B6579736F7274_1signal@@GLIBC_2.0X6765745F6C696E656469745F70726F6D7074_1Fd_New_Variablefmod@@GLIBC_2.0Range_Becomes_SparseRd_Float_CheckFct_Fast_IncX2464656275675F7370795F736574_2fd_variable_to_stringX246765745F636C6F73655F6F7074696F6E7332_1Atom_Length_2Fd_Use_Vectorfflush@@GLIBC_2.0X247573655F636F6E73756C74_0Stream_Prop_Type_2domain_g_argument_selectorBlt_G_Inc_2X247365745F71756572795F766172735F6E616D6573_2pclose@@GLIBC_2.1SR_Get_Error_Counters_3X2473725F726561645F7465726D2F345F2461757832_2Display_To_Atom_2Range_Mul_RangeX2473725F6E65775F706173732F315F2461757831_1Write_SimpleRead_Atom_2X233D3C23_2Fct_CeilingX7075745F62797465_2X6C697374696E67_1Call_Info_Bip_Name_1X247573655F666C6167_0X24247468726F775F696E7465726E616C2F325F2461757831_2X247573655F747970655F696E6C_0Blt_G_LinkMk_In_CharX403C_2Get_Predicate_File_Info_3Bind_Variables_4Fd_Before_Add_CstrGet_Pred_Indic_3Range_Next_Beforequot_rem_x_a_r_eq_z_FFct_AddFd_Element_IX247573655F63616C6C_0mallopt@@GLIBC_2.0X24746F705F6C6576656C31_0ax_plus_by_eq_z_FX686F73745F6E616D65_1Pl_Err_Instantiationunlink@@GLIBC_2.0Pred_Prop_Built_In_Fd_1Decompose_File_Name_4Fd_Init_Solver0M_Cmd_Line_To_Argvdomain_source_sinkX63757272656E745F707265646963617465_1Un_AtomFd_Init_SolverX617267756D656E745F636F756E746572_1X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757832_1Current_Stream_Alt_0X247365745F73747265616D5F747970652F325F2461757832_2X66645F72656C6174696F6E63_2Arith_Eval_2Fd_Prolog_To_Fd_Vargetrusage@@GLIBC_2.0Delete_File_1X636F6D70617265_3Name_2Mk_ListRd_CodeAtom_Concat_Alt_0X2462635F656D6974_1X24246765745F6F70656E5F6F7074696F6E73322F315F2461757835_1X24636865636B5F61746F6D5F6F725F61746F6D5F6C69737431_1X247573655F63616C6C5F61726773_0X6173736572747A_1X247573655F66696C65_0Current_Alias_2X246C6F616432_1Stream_Prop_Buffering_2X242464656275675F6C6973745F6F665F70726564312F345F2461757832_5Update_Choice_Point3X2473725F6572726F725F66726F6D5F657863657074696F6E2F325F2461757831_1Set_Stream_Position_2Un_Byte_CheckX3D3D_2Retract_2fd_exactlyle_initializeX66645F7573655F766563746F72_1X68616C74_0X6765745F6B6579_1X77726974655F63616E6F6E6963616C5F746F5F61746F6D_2X247365656E2F305F2461757831_1X2467726F75705F736F6C7574696F6E73_3X24246765745F73725F6F7074696F6E73322F315F2461757833_1X73725F6E65775F70617373_1X6F735F76657273696F6E_1BC_Start_Pred_7X24246C6F6164322F315F2461757832_2Check_For_Un_BooleanX247265696E69745F61667465725F657863657074696F6E_0permission_operation_openLast_Read_Start_Line_Column_2Mk_VariableX24737079706F696E745F636F6E646974696F6E31_3x_imply_y_eq_1X63616C6C5F776974685F61726773_5Stream_UngetcUn_Float_CheckMk_In_ByteStream_Position_2Writeq_1Remove_One_Choice_Point_1select@@GLIBC_2.0type_fd_variableVector_From_IntervalX756E6765745F62797465_2X247573655F66645F6D617468_0X24247465726D5F746F5F676F616C322F325F2461757831_3Line_Position_2X7465726D5F726566_2Mk_NumberLower_Upper_2x_plus_y_plus_z_eq_t_FPred_Without_AuxX235C5C_1query_exceptionX24246C6F61645F66696C652F315F2461757831_3Pl_Err_SyntaxX6D616B655F6469726563746F7279_1Remove_Predicate_2wmark_countX72657472616374_1X77726974655F746F5F6368617273_2domain_socket_domainBlt_G_Dec_3x_and_y_eq_bUn_IntegerSqrt_UpAllocateX24696E646F6D61696E_2File_Permission_2vsnprintf@@GLIBC_2.0X24246765745F77726974655F6F7074696F6E73322F315F2461757834_1X246765745F6C6162656C696E675F6F7074696F6E7331_1strerror@@GLIBC_2.0X707574_1Execute_DirectiveCpu_Time_1Term_Math_LoadingBC_Emit_Inst_1Check_For_Un_NumberFct_Fast_Shr__dso_handleStream_Get_PositionCheck_For_Un_AtomRd_Code_Checkrepresentation_max_integerX247573655F66645F696E666F73_0Set_Linedit_Prompt_1Stream_Prop_Input_1x_plus_y_eq_z_FGlobal_Push_FloatHash_DeletePut_Integer_TaggedCall_With_Args_3SR_Current_Descriptor_Alt_0X636C6F73655F696E7075745F636F6465735F73747265616D_1Fd_New_Bool_VariableX706F72747261795F636C61757365_2Call_With_Args_9truth_x_gte_cBlt_G_Decobase_flX246164645F6D6972726F72735F746F5F73747265616D_2X2472656D6F76655F707265646963617465_2X63757272656E745F636861725F636F6E76657273696F6E_2mmap@@GLIBC_2.0X24636865636B5F61746F6D5F70726F70_1X6E6F737079616C6C_0Check_For_Un_VariableUnify_Occurs_Check__libc_csu_finiX2461746F6D5F636F6E6361745F616C74_0Fd_After_Add_CstrSet_Prolog_Flag_2Reassign_AliasCheck_For_Un_CharX61746F6D5F636F6E636174_3X24706C5F6572725F646F6D61696E_2Call_PrologX2473747265616D5F706F736974696F6E_2Get_Key_2X246765742F315F2461757831_2tcsetattr@@GLIBC_2.0Add_Stream_For_Stdio_Filepermission_type_flagobj_chain_beginArgument_Counter_1Pred_Prop_Prolog_Line_2Sys_Var_Write_2X2474656C6C2F315F2461757831_2Blt_Generic_VarFct_Fast_NotPut_Unsafe_Valuesetlocale@@GLIBC_2.0wmarkX2466645F6C6162656C696E6731_4query_top_bX66645F6861735F65787472615F63737472_1X2473725F7365745F74726561745F706173735F62697473_3X73656C656374_3Extend_Table_If_NeededX242464656275675F706F72745F70726F6D70742F365F2461757831_5X70726F6C6F675F706964_1X2467726F75705F736F6C7574696F6E735F616C74_0X6469726563746F72795F66696C6573_2X2464656275675F646973705F616C74_2X242464656275675F657865635F636D642F365F2461757835_3X61745F656E645F6F665F73747265616D_0X2473686F775F7370795F706F696E7473_0Fct_ShlX24746F705F6C6576656C5F657863657074696F6E_1Hash_Realloc_Tabledomain_operator_priorityX686F73746E616D655F61646472657373_2Fd_New_Int_VariableFree_Variables_4X2473686F775F64656275676765725F6D6F646531_1X247365745F73747265616D5F627566666572696E672F325F2461757832_2Fd_Neq_2X676574_1representation_in_character_codeProlog_File_Name_2X2473746174_3Fd_Add_Dependencybuff_signal_regtruth_x_neq_y_FUn_Compound_CheckX73725F77726974655F6D657373616765_8X242473725F74726561745F7465726D2F325F2461757833_2Un_Atom_CheckTerm_Write_Str_StreamX2466645F63617264696E616C69747931_2Make_Stream_Tagged_WordX246661746865725F6F665F6175785F6E616D65_3Scan_Choice_Point_PredWrite_2X7365745F6269705F6E616D65_2X2464656275675F646973705F616C7431_3Fct_Float_DivX242463617463685F73796E635F666F725F6661696C5F61742F315F2461757831_2X247573655F7072696E74_0unify_x_y__errno_location@@GLIBC_2.0pow@@GLIBC_2.0quot_rem_x_y_r_eq_zWrite_A_CharX2466696C655F70726F70_2environ@@GLIBC_2.0X726561645F61746F6D_1xy_eq_z_Fexistence_streamresource_too_big_fd_constraintX246D616B655F6175785F6E616D65_4X2473686F775F64656275676765725F6D6F6465_0X6F70656E5F6F75747075745F636F6465735F73747265616D_1Check_For_Un_CodesX6E65775F61746F6D_1X63757272656E745F6D6972726F72_2X242477726974655F736F6C7574696F6E2F335F2461757831_2x2_eq_yGet_Stream_Or_AliasIndomain_Middle_Alt_0X7265616C5F74696D65_1X24627265616B2F305F2461757832_1Find_Next_AtomUpdate_Dynamic_PredVector_Next_AfterHostname_Address_2BC_Emulate_Cont_0X707265666978_2X63757272656E745F6F7574707574_1Fd_Has_Vector_1ftell@@GLIBC_2.0SR_Write_Message_6max_x_y_eq_zList_LengthX246F7032_3X2473725F6F70656E2F335F2461757831_1Shell_2SR_Get_Include_List_2X6765745F6B65795F6E6F5F6563686F_2Stdio_Is_RepositionableX246463675F7472616E735F72756C65_2X2464656275675F706F7274_5X233C3D3E_2Consult_2Blt_G_Array_Sizerepresentation_characterWrite_Canonical_To_Codes_2X24696E646F6D61696E5F6D6964646C655F616C74_0System_2domain_non_empty_listRange_UnionWriteq_2domain_g_array_indexFd_Use_Vector_1accept@@GLIBC_2.0gethostbyaddr@@GLIBC_2.0Random_1Blt_Eqsystem@@GLIBC_2.0zero_power_n_eq_yX247379735F7661725F7365745F626974_2X242466696E645F6578697374696E675F73747265616D2F335F2461757831_3X675F696E63_2Read_Number_2Mk_Callabledomain_read_optionX247573655F617373657274_0LE_Is_Interrupt_KeyX2473725F73746F705F6D6F64756C65_3X66645F61745F6C656173745F6F6E65_1X2463757272656E745F616C6961732F325F2461757831_2X247379735F7661725F72656164_2Set_Current_B_1Get_IntegerX63757272656E745F70726F6C6F675F666C6167_2X247573655F736F7274_0SR_Get_Size_Counters_3X2464656275675F726561645F696E7465676572_1X66645F646F6D61696E5F626F6F6C_1Blt_AtomX247573655F7465726D5F696E6C_0access@@GLIBC_2.0Prolog_Pid_1X736F636B6574_2X72656D6F76655F73747265616D5F6D6972726F72_2Stream_Flushsetvbuf@@GLIBC_2.0X73725F6765745F696E636C7564655F73747265616D5F6C697374_2X246765745F73725F6F7074696F6E7332_1X242464656275675F657865635F636D642F365F2461757837_3Put_Byte_2os_argcWriteq_To_Chars_2X233E3D_2Rd_Chars_Strinet_ntoa@@GLIBC_2.0Pl_Err_SystemWrite_To_Codes_2X63757272656E745F73747265616D_1X2461726974685F6576616C_2LE_Compl_Find_Matchdomain_streamX7075745F63686172_2X3E3D_2Current_Op_3M_Set_SeedX6F70656E5F6F75747075745F63686172735F73747265616D_1X63616C6C_2Blt_CallableX66645F6C6162656C696E67_1Pred_Prop_Dynamic_1Load_Cut_LevelChange_Directory_1Sys_Var_Get_2type_floatputs@@GLIBC_2.0X24636865636B5F73747265616D5F6F725F766172_2le_promptSelect_5Term_Compare_initX6E6C_1X5C5C3D_2X2466645F656C656D656E74_3Setarg_Of_Last_Found_2X247573655F73747265616D_0popen@@GLIBC_2.1X247573655F756E696679_0Current_Mirror_2truth_x_plus_c_neq_y_FRd_Positive_CheckCreate_Pipe_2X246462675F696E64696361746F72_2Call_CompiledX247379735F7661725F707574_2Switch_On_AtomX2462635F73746F705F656D6974_0X6261676F66_3Write_Term_To_Chars_2x_neq_cX24657865635F636D645F657272_2X2466645F73656C5F61727261795F7069636B5F766172_4Architecture_1listen@@GLIBC_2.0X74656C6C696E67_1Current_Output_1Unlink_1stk_tblX706F70656E_3Print_To_Codes_2Indomain_Random_Alt_0permission_type_static_procedureCreate_Choice_Point1X73725F6368616E67655F6F7074696F6E73_2X247573655F7468726F77_0X7365745F73747265616D5F656F665F616374696F6E_2X7065656B5F62797465_2nb_atomX675F61737369676E_2type_compoundX2473725F657865635F646972656374697665_2Seek_4ax_plus_y_eq_zScan_Next_Atomstm_top_level_inputX736C656570_1Get_Atomx_nequiv_y_eq_bmalloc@@GLIBC_2.0type_predicate_indicatorX726561645F706C5F73746174655F66696C65_1X7072696E745F746F5F61746F6D_2X24246765745F6F70656E5F6F7074696F6E73322F315F2461757836_1X6E65775F61746F6D_3last_read_lineFct_MulX5C5C2B_1Random_3X246C6F61642F315F2461757831_1X242464656275675F657865635F636D642F365F2461757834_2Socket_Accept_4Call_With_Args_6Pl_Err_Existencedomain_prolog_flagX646973706C6179_2X2473756D5F6C69737431_3X3D3C_2Range_InterRename_File_2glob_buffX247465726D5F746F5F676F616C32_2domain_selectable_itemX7065656B5F63686172_2X246765745F77726974655F6F7074696F6E7332_1Rd_List_CheckX24696E7374616E63655F666F725F736574617267_2debug_call_codeDate_Time_1Fct_IdentityX737079706F696E745F636F6E646974696F6E_3X73725F726561645F7465726D_4X63757272656E745F616C696173_2X61745F656E645F6F665F73747265616D_1abs_x_minus_y_eq_z_FCreate_Water_MarkX24657865635F636D645F6C696E655F656E7472795F676F616C73_1X242464656275675F657865635F636D642F365F2461757832_1Vector_Mul_Vectorabs_x_minus_a_eq_z_FDelete_Predatom_user_inputmunmap@@GLIBC_2.0M_Get_StatusFct_MaxRetract_Last_Found_0X746F6C64_0X6368616E67655F6469726563746F7279_1prime_xRd_Integer_CheckX77726974655F7465726D5F746F5F6368617273_3Blt_VarFind_Stream_By_Aliaspermission_type_private_procedureX247365745F6C696E656469745F70726F6D7074_1X24726561645F72657475726E_1pipe@@GLIBC_2.0not_x_eq_bGroup_Solutions_3Setarg_4Blt_Functorx_and_y_eq_0Get_Integer_TaggedUnify_ListX24617373657274_3X246765745F6C6162656C696E675F6F7074696F6E73_2X737061776E_2Rd_Charax_plus_by_plus_z_eq_t_FX7772697465715F746F5F6368617273_2Un_BooleanX646973706C6179_1X2477726974655F736F6C7574696F6E31_1fread@@GLIBC_2.0Check_For_Un_CharsRd_Compoundquot_rem_a_y_r_eq_zLE_FGetsGet_ListX77726974655F7465726D5F746F5F61746F6D_3Rd_ByteAtom_Chars_2clearerr@@GLIBC_2.0X617267_3Keep_Rest_For_PrologStatistics_Real_Time_2At_End_Of_Stream_0X2473725F6F705F74797065_2X766172_1X2462635F656D69745F696E7374_1M_Absolute_Path_NameCurrent_Predicate_2Extra_Cstr_Alt_0Fd_Reset_Solver0X63616C6C5F776974685F61726773_8X246F702F335F2461757831_3X656E7669726F6E_2X247573655F666F726D6174_0Create_Swt_Stc_ElementCreate_Swt_Atm_ElementX6E756D6265725F76617273_0Put_Y_Variableatom_textwmpX242463616C6C5F696E7465726E616C5F6F722F345F2461757831_6X3D5C5C3D_2Un_NumberX746F705F6C6576656C_0X6C6973745F6F725F7061727469616C5F6C697374_1X72656164_2X63616C6C61626C65_1X242464656275675F646973705F616C74312F335F2461757832_3Host_Name_1X77726974655F7465726D_2x_power_a_eq_yX246D656D62657263686B2F325F2461757831_4X246164645F616C69617365735F746F5F73747265616D_2Atom_Hash_2X2463757272656E745F61746F6D_1Character_Count_2X2424737461742F335F2461757831_2Call_With_Args_5Reset_Debug_Call_Code_0rint@@GLIBC_2.0X657870616E645F7465726D_2X2464656275675F646973705F616E635F6C7374_1X242464656275675F6C6973745F6F665F70726564312F345F2461757833_4X247370795F746573745F636F6E646974696F6E_3LE_Get_Current_Positionfixed_sizesX6164645F73747265616D5F6D6972726F72_2X247072656469636174655F70726F70657274795F616E79_2X73725F63757272656E745F64657363726970746F72_1Switch_On_Structureatom_atX6E6F6E766172_1X24246765745F73725F6F7074696F6E73322F315F2461757834_1Indomain_Limits_Alt_0Name_Query_Vars_2X66645F61745F6D6F73745F6F6E65_1X247573655F72656164_0X7772697465_2X6E756D62657276617273_1X247375625F61746F6D5F616C74_0Recover_Solutions_2X726561645F746F6B656E5F66726F6D5F636F646573_2Add_StreamX726561645F66726F6D5F636F646573_2X6765745F6B6579_2X246765745F726561645F6F7074696F6E7332_1Range_Add_ValueX247365745F73747265616D5F747970652F325F2461757831_1X2464656275675F6C6973745F6F665F7072656431_4Un_Chars_CheckLE_Close_TerminalBlt_Term_GtFd_Domain_3X6465636F6D706F73655F66696C655F6E616D65_4X63757272656E745F696E707574_1Peek_Code_1le_hook_set_line_bufferingpermission_type_binary_streamstm_tbl_sizeX2473725F77726974655F6572726F722F365F2461757831_4X666C7573685F6F7574707574_1stdout@@GLIBC_2.0Current_Prolog_Flag_Alt_0Fd_Tell_Valuestderr@@GLIBC_2.0Blt_G_Set_BitX2424746F705F6C6576656C322F305F2461757835_1def_local_sizeRead_TokenCheck_For_Un_In_ByteUnify_Integer_TaggedDelete_Choice_Point2X24706C5F6572725F7265736F75726365_1truth_x_plus_c_eq_y_FX66645F7072696D65_1Indomain_Max_Alt_0X66645F61746D6F7374_3Indomain_Min_Alt_0SR_Get_Stm_2Fct_AndX247573655F616C6C5F736F6C7574_0Delete_Directory_1X666F726B5F70726F6C6F67_1atom_repositionX24246765745F6F70656E5F6F7074696F6E73322F315F2461757834_1Rd_PositiveBlt_Fast_LteGet_Floatdomain_flag_valueX2461746F6D5F70726F706572747932_7Fct_Powmprotect@@GLIBC_2.0Close_StmX2465787472615F637374725F616C74_0X636C6F7365_1Read_Termle_hook_backdX73725F77726974655F6D657373616765_4X77726974655F706C5F73746174655F66696C65_1X73746F70_0le_hook_forwdMk_PositiveUn_CodesUn_In_Byte_Checkstm_debugger_outputX246261676F66_4Blt_NeqX63616C6C5F776974685F61726773_6X242463617463685F696E7465726E616C312F355F2461757831_3File_Prop_Real_File_Name_2Unget_Code_1min_x_y_eq_z_FX6E6F7472616365_0SR_Change_Options_0atom_eofRange_Div_RangeX2463757272656E745F616C6961735F616C74_0__xstat@@GLIBC_2.0X617070656E64_1Fd_Prolog_To_Array_IntX6F70656E_3Fct_LogX77726974655F63616E6F6E6963616C5F746F5F636F646573_2Un_In_ByteDelete_Choice_PointEnviron_2X675F72656164_2getpagesize@@GLIBC_2.0For_Alt_0X2463616C6C5F696E7465726E616C5F776974685F637574_3type_atomSend_Signal_2X247379735F7661725F646563_1X726561645F61746F6D_2X6765745F7072696E745F73747265616D_1X706872617365_3Prop_And_Stdio_Modeexecv@@GLIBC_2.0inet_aton@@GLIBC_2.0For_3X247573655F636F6E74726F6C_0Fd_Max_2X2461746F6D5F70726F70657274795F616E79_2Get_Pred_IndicatorX66645F6D696E_2Init_AtomDATEDisplay_To_Codes_2X777269746571_1X247072656469636174655F70726F706572747931_2stm_stdoutX6C697374696E67_0Vector_Div_VectorFormat_To_Atom_3X24636865636B5F73747265616D5F70726F70_1Read_Term_4Define_Math_Bip_2Update_Choice_PointStream_Prop_End_Of_Stream_2X2464656275675F63616C6C5F706F7274_5LE_Set_SeparatorsX627265616B_0abs_x_minus_a_eq_zAdd_Stream_Alias_2domain_write_optionX2462635F73746172745F70726564_7fseek@@GLIBC_2.0waitpid@@GLIBC_2.0x_lte_yX675F61727261795F73697A65_2X61737365727461_1Check_For_Un_CallableX247573655F616C6C5F66645F62697073_0X2463757272656E745F6D6972726F725F616C74_0X73797374656D_1X24726561645F7175657279_2Fct_Fast_DivRd_AtomX247573655F70726564_0Statistics_System_Time_2X24726561645F7465726D_3Abolish_1Fct_NotScan_Dynamic_PredSR_EOF_Reached_1Read_Integer_2Un_FloatTreat_Vars_Of_TermX646973706C61795F746F5F61746F6D_2Read_From_Codes_2Get_Byte_1Un_Callable_CheckFlush_Output_0Pred_Prop_Native_Code_1X24657865635F636D645F6C696E655F676F616C_1X6D696E5F6C697374_2ax_plus_y_plus_z_eq_tX7061727469616C5F6C697374_1X24706C5F6572726F72_1time@@GLIBC_2.0X7772697465_1X726561645F746F6B656E5F66726F6D5F61746F6D_2Check_For_Un_CodeGet_Seed_1X6E756D6265725F61746F6D_2X2323_2X2464656275675F657863657074696F6E5F706F7274_5X2464656275675F77726974655F676F616C_4X66645F6E6F745F7072696D65_1Fct_Fast_AddX636C6F73655F6F75747075745F636F6465735F73747265616D_2Un_In_Char_CheckUn_StringFull_Var_Power_2X235C5C3D_2Pl_Err_Evaluation_startVector_Nb_Elemle_hook_ins_modeX24246765745F77726974655F6F7074696F6E73322F315F2461757831_1X247573655F61746F6D_0x_gte_cUn_ListX247379735F7661725F676574_2Stream_GetsX2424746F705F6C6576656C322F305F2461757831_2Un_Positivex_nor_y_eq_bBlt_Fast_NeqObtain_FloatX636C6F73655F696E7075745F61746F6D5F73747265616D_1X246E746831_3SR_Is_Bit_Set_1Spawn_3Vector_Ith_ElemX636C6F73655F6F75747075745F61746F6D5F73747265616D_2Blt_Term_LteX24706C5F6572725F7065726D697373696F6E_3M_Host_Name_From_NameX247573655F72616E646F6D_0Lookup_PredFct_SqrtPrint_To_Atom_2Number_Chars_2X6E756D6265725F636F646573_2X242464656275675F7370795F72657365742F315F2461757831_3le_hook_flushdomain_stream_optionBlt_IntegerX24636865636B5F737461745F6B6579_1SR_New_Pass_1Pl_Err_PermissionRange_Add_Rangeevluation_undefinedRead_Atom_1Create_Choice_PointDebug_WamX246765745F62696E645F7661726961626C65735F6F7074696F6E7331_1X66645F7365745F766563746F725F6D6178_1Gen_New_AtomWrite_Canonical_1X2463757272656E745F7072656469636174655F616C74_0le_hook_put_charFind_Expon_DnX2424657865635F71756572792F325F2461757832_2X247072656469636174655F70726F706572747932_2Find_Atomdef_cstr_sizeX66645F63617264696E616C697479_3X24636865636B5F66696C655F70726F70_1X245C5C2B2F315F2461757831_1le_hook_startPut_Code_1chdir@@GLIBC_2.0Scan_Choice_Point_Info_3M_Allocate_StacksVector_CopyX61746F6D5F68617368_2X77726974655F746F5F636F646573_2X77726974655F7465726D_3Throw_2pi_name_wordSet_Stream_BufferingX66645F6D61785F696E7465676572_1Fct_Fast_AndX737079_1LE_Get_Prompt_LengthSort_List_2Check_Prop_Perm_And_File_2Pl_Err_DomainBlt_List_Or_Partial_ListX6C656E677468_2X24706C5F6572725F6578697374656E6365_2Make_Aux_NameX2424636865636B5F707265645F747970652F335F2461757831_4File_Exists_1le_hook_confirm_boxUpdate_Choice_Point1Socket_Close_1X6E756D626572_1LE_Get_Ctrl_C_Return_Valuestrstr@@GLIBC_2.0permission_type_source_sinkstrlen@@GLIBC_2.0X247365745F63757272656E745F42_1longjmp@@GLIBC_2.0X72657472616374616C6C_1permission_operation_outputX24706C5F6572725F73797374656D_1Rd_Atom_CheckX73797374656D5F74696D65_1SR_Write_Message_4From_Alias_To_Stream_2X2464656275675F646973705F616C7432_1X2463616C6C2F325F2461757831_1X24246C6F61645F707265642F325F2461757831_3LE_Get_Charsigaddset@@GLIBC_2.0Rd_BooleanX233D3C_2obj_chain_endle_hook_get_line_bufferingAdd_Linedit_Completion_1Set_Stream_Line_Column_3Assert_4X2466645F63617264696E616C697479_2X24636F6E73756C742F315F2461757831_1X6F70656E_4X6D61785F6C697374_2type_atomicSet_Heap_Actual_Startle_hook_screen_sizePut_FloatX2466645F6D6178696D697A652F325F2461757831_6Term_SizeX66645F766172_1X706872617365_2X6D656D62657263686B_2Atom_Codes_2Range_Copy__lxstat@@GLIBC_2.0X636C61757365_2Pred_Prop_Private_1X66645F766563746F725F6D6178_1X246765745F6F70656E5F73746D_2Fct_Float_Fract_PartX73747265616D5F706F736974696F6E_2Put_Char_1atom_noneX6765745F6B65795F6E6F5F6563686F_1UnifyX246F70656E_4X73747265616D5F6C696E655F636F6C756D6E_3X246F7031_3Least_Significant_BitX2464656275675F656E645F63616C6C_6uname@@GLIBC_2.0oper_tblX2466696E645F6578697374696E675F73747265616D_3Fct_Xoratom_blockUn_Positive_Check__strtol_internal@@GLIBC_2.0Current_Char_Conversion_2Blt_Partial_ListX61746F6D5F6368617273_2X242464656275675F646973705F616C74312F335F2461757831_2qsort@@GLIBC_2.0Statistics_Cstr_Stack_2X242473725F646972656374697665312F325F2461757832_2X666C7573685F6F7574707574_0x_plus_y_plus_z_eq_tHash_Nb_ElementsMk_IntegerX2424737079706F696E745F636F6E646974696F6E312F335F2461757831_5X24246261676F662F345F2461757831_2X6164645F6C696E656469745F636F6D706C6574696F6E_1BC_Stop_Emit_0Rd_CodesX2473725F74726561745F706173735F6E6F_3Number_Atom_2M_Random_IntegerX24706872617365_4X73725F6765745F66696C655F6E616D65_2X61746F6D6963_1domain_date_timeX2474727574685F6F66_2X2461746F6D5F70726F706572747931_2Fct_ModDisplay_To_Chars_2X2463617463685F73796E635F666F725F6661696C5F6174_1Close_1LE_Get_Separatorsevluation_float_overflowX7375625F61746F6D_5X726570656174_0Make_Aux_Name_4representation_max_arityX233E_2X736F636B65745F616363657074_4X7072696E745F746F5F636F646573_2last_input_soraX736F636B65745F636C6F7365_1Mk_CharFd_Set_Full_Ac_Flag_1Fd_Has_Extra_Cstr_1X6164645F73747265616D5F616C696173_2LE_GetsRange_Ith_ElemX24746F6C642F305F2461757831_1xy_eq_zX246164645F636C617573655F7465726D5F616E645F6263_2X675F61737369676E62_2x_plus_y_eq_zX67657430_1Find_Expon_UpX2473746F72655F736F6C7574696F6E73_4X24246C6F61645F707265642F325F2461757832_3Lookup_Operexecvp@@GLIBC_2.0X24636865636B5F707265645F74797065_3X247265766572736531_3le_hook_emit_beepGet_StructureX636861725F636F6E76657273696F6E_2tzset@@GLIBC_2.0Find_Linedit_Completion_2X675F7365745F626974_2Stream_Prop_Mode_2X24246C6F6164322F315F2461757831_3X61746F6D_1X736F7274_2X246765745F6F70656E5F6F7074696F6E7331_1Execute_A_ContinuationBlt_G_AssignSet_Stream_Type_2Stream_PeekcX2463616C6C2F325F2461757832_3char_convX2466645F6C6162656C696E675F6D7468_4X2464656275675F7377697463685F6F6666_0setlinebuf@@GLIBC_2.0X6E616D655F71756572795F76617273_2X246765745F73725F6F7074696F6E73_2X7065656B5F63686172_1x_plus_c_eq_y_FM_Get_Working_Diratom_notX242473725F646972656374697665312F325F2461757831_4m_os_versionX246175785F6E616D65_1max_x_y_eq_z_FX246D616B655F6C697374_2Update_Choice_Point4X64656C657465_3atom_currentX7772697465715F746F5F61746F6D_2Choice_Point_Arg_3Fct_Fast_XorX2477726974655F696E64696361746F72_0sigprocmask@@GLIBC_2.0X246C697374696E675F6F6E65_1Get_Code_2Range_Mod_Valueatom_eof_codeX242464656275675F63616C6C2F325F2461757831_2strncmp@@GLIBC_2.0X242473725F73746F705F6D6F64756C652F335F2461757831_2Popen_3Fct_OrFct_Fast_ShlX24636865636B5F61746F6D5F6F725F61746F6D5F6C697374_1X66696E64616C6C_3Get_Current_B_1atom_resetX7075745F63686172_1Fd_Copy_Variable0DeallocateSR_Open_File_2X2464656275675F646973705F616C7465726E617469766573_2X6C617374_2Stream_Prop_Eof_Action_2last_read_colX7365745F73747265616D5F74797065_2Clause_3fputc@@GLIBC_2.0User_Time_1__libc_csu_initTemporary_Name_2truth_x_eq_yvec_max_integerNumber_Codes_2X247573655F66645F626F6F6C_0Working_Directory_1X242463617463685F615F7468726F772F355F2461757831_2Mk_In_CodeRd_Byte_CheckVector_Div_ValueBlt_Fast_Eqstm_inputX242473725F73746172745F6D6F64756C652F335F2461757831_2X2473725F74726561745F7465726D_2X74656D706F726172795F6E616D65_2Unget_Byte_2X6765745F63686172_1Set_Output_1X7365745F696E707574_1Fd_Display_Extra_CstrX737566666978_2X24246765745F6F70656E5F6F7074696F6E73322F315F2461757832_1Argument_Value_2Char_Code_2Unify_ValueX2424746F705F6C6576656C322F305F2461757833_3X247573655F616C6C5F706C5F62697073_0Write_TermX247573655F66645F73796D626F6C6963_0Add_Dynamic_ClauseSR_Add_Directive_7type_character__bss_startUnify_Local_ValueX242464656275675F7370795F7365742F325F2461757831_3X63616C6C5F776974685F61726773_1Assoc_Socket_Streams_3Write_Term_To_Codes_2Stream_Prop_Output_1Mk_BooleanX6765745F636F6465_2mainTry_Execute_Top_LevelM_Set_Working_DirRead_Token_2Check_For_Un_ListVector_EmptyUn_List_CheckX246E756D6265725F766172732F305F2461757831_1X7075745F636F6465_2Statistics_Cpu_Time_2X636F6D706F756E64_1X2466645F72656C6174696F6E6331_3Set_Top_Level_Streams_2X233C23_2X7072696E74_1Pred_Without_Aux_4Rd_In_ByteX646973706C61795F746F5F636F646573_2type_in_characterSyntax_Error_Info_4X2463757272656E745F707265646963617465_1type_variableFct_Fast_Moddomain_operator_specifierX24707265645F776974686F75745F617578_4X63616C6C5F776974685F61726773_11X233E3D23_2Socket_Bind_2Switch_On_Term_Var_Atm_StcX247573655F6465633130696F_0os_argvX77726974655F63616E6F6E6963616C_2domain_format_control_sequencea_power_n_eq_yHalt_If_No_Top_Level_1X246765745F63757272656E745F42_1Fct_RemX63757272656E745F6269705F6E616D65_2Un_In_Code_CheckHash_Delete_AllVector_Test_Null_Interfd_elementLE_Compl_Init_MatchGet_Code_1Write_Canonical_To_Atom_2X675F646563_3X6C697374_1Fd_AtmostPortray_Clause_1X235C5C3C3D3E_2Fct_CosX246861735F7370795F706F696E74_2X675F6465636F_2__libc_start_main@@GLIBC_2.0X73656C656374_5permission_type_text_streamGet_Atom_TaggedX247468726F7731_2X2463617463685F6661696C5F6E6F77_1Call_With_Args_11Fd_Sel_Array_Pick_Var_4Find_Linedit_Completion_Alt_0X64656C6574655F66696C65_1Blt_FloatX247365745F6C6162656C696E675F64656661756C7473_0X7072696E74_2X73746174697374696373_0Sqrt_DnM_User_TimeX63616C6C5F776974685F61726773_9X24246765745F73725F6F7074696F6E73322F315F2461757831_1X2424737461742F335F2461757832_1Put_StructureX6E6F6E5F66645F766172_1New_ObjectFd_Max_Integer_1Blt_Non_Generic_VarX61626F7274_0Set_Input_1X24246C697374696E675F616C6C2F315F2461757831_2X242463616C6C5F696E7465726E616C2F325F2461757831_1X2473747265616D5F70726F706572747931_2truth_x_eq_c_Ftype_callableClose_Input_Term_Stream_1X66645F656C656D656E74_3X726561645F7465726D5F66726F6D5F61746F6D_3Add_Str_StreamBC_Call_Terminal_Pred_3File_Prop_Absolute_File_Name_2exp@@GLIBC_2.0X73725F77726974655F6572726F72_2X246C656173685F6D616B655F6D61736B_2X2466645F6C6162656C696E67_2X6E756D62657276617273_3Display_2X7472616365_0permission_operation_accessatom_pastX2466696C655F70726F705F7065726D_2fd_atleastX24636C6F7365_2Fct_FloorPut_Byte_1X2463757272656E745F61746F6D5F616E79_1Mk_CodeNew_Atom_3x_nimply_y_eq_breg_bankCurrent_Alias_Alt_0Rd_Compound_CheckX2464656275675F706F727432_6M_Host_Name_From_AdrSR_Close_1dup2@@GLIBC_2.0X7368656C6C_0ax_plus_by_plus_z_eq_tX7065656B5F636F6465_2X2464656275675F646973705F616E635F6C737431_1X246765745F707265645F696E646963_3Read_Token_From_Chars_2SR_Update_Position_0M_RandomizeFct_RoundX675F6C696E6B_2truth_x_neq_yRd_Charsrealloc@@GLIBC_2.0Statistics_User_Time_2X6465627567_0Statistics_0M_Get_SeedX246765745F77726974655F6F7074696F6E7331_1X24746F705F6C6576656C5F61626F7274_0strcat@@GLIBC_2.0Print_1Get_Linedit_Prompt_1permission_operation_closeDel_Mirror_From_Stream__environ@@GLIBC_2.0permission_operation_repositionX73725F636C6F7365_1Close_Output_Term_Stream_2fd_variable_sizeX675F696E636F_2X636F70795F7465726D_2Check_For_Un_Positivetruth_x_neq_cExit_With_ValueX24736F636B65745F6163636570742F345F2461757831_1Rd_Boolean_Checkdata_startFct_Fast_MulX73725F77726974655F6D657373616765_6File_Prop_Type_2Fct_AcosX2466696E64616C6C_4Stream_End_Of_StreamPl_Err_RepresentationX7075745F62797465_1X7072656469636174655F70726F7065727479_2existence_procedureFct_DivFd_Min_2Fct_Fast_RemCurrent_Atom_2PowerScan_TokenDelete_StreamPut_AtomX2473725F6F70656E2F335F2461757832_1X6F70656E5F696E7075745F63686172735F73747265616D_2Extend_ArrayVector_Add_ValueX7065726D75746174696F6E_2max_x_a_eq_zax_eq_yX66645F65786163746C79_3Pl_Err_ResourceX736F727430_2X403D3C_2X66645F646F6D61696E_2truth_x_neq_c_FPeek_Byte_1X726561645F7465726D5F66726F6D5F6368617273_3X6162736F6C7574655F66696C655F6E616D65_2Write_To_Chars_2bind@@GLIBC_2.0X736574617267_4Format_2X24246765745F77726974655F6F7074696F6E73322F315F2461757832_1fd_element_varX24666F726B5F70726F6C6F672F315F2461757831_1Check_For_Un_In_Code_finiX24636865636B5F61746F6D5F6F725F61746F6D5F6C69737432_1X2473686F775F6C65617368696E675F696E666F_0lseek@@GLIBC_2.0fcntl@@GLIBC_2.0Put_IntegerX24636F6E73756C7432_1memcpy@@GLIBC_2.0Get_Byte_2Unknown_Pred_Errorsqrt@@GLIBC_2.0def_global_sizeStream_Get_Keytype_booleantruth_x_plus_c_gte_yx_or_y_eq_bX73725F6572726F725F66726F6D5F657863657074696F6E_2X24636865636B5F696E5F6368617261637465725F636F6465_1permission_operation_createX24746F705F6C6576656C32_0Set_C_Bip_NameX66696C655F70726F7065727479_2X2473725F77726974655F6572726F722F325F2461757831_6X2424657865635F71756572792F325F2461757831_3X2473725F726561645F7465726D2F345F2461757831_3Lookup_Oper_Any_TypeX7365746F66_3ax_eq_y_FX73725F6765745F696E636C7564655F6C697374_2Blt_G_Test_Set_BitFd_Element_Var_I_To_VBC_Emulate_Predfclose@@GLIBC_2.1Rd_CallableX24747261696C5F68616E646C6572_1Fd_Domain_Bool_1X65786563_4X247365745F77726974655F64656661756C7473_0Blt_Term_LtM_MktempX242477726974655F696E64696361746F722F305F2461757832_2__ctype_toupper_loc@@GLIBC_2.3Socket_Connect_4LE_Printfle_hook_displ_strgetsockname@@GLIBC_2.0strrchr@@GLIBC_2.0Unify_Nila_power_n_eq_y_FX24706C5F6572725F74797065_2X736565696E67_1Delete_Str_StreamX2473686F775F6C65617368696E675F696E666F32_1Unify_VariablePred_Prop_Prolog_File_2Rd_In_Byte_CheckX726561645F6E756D626572_1Unify_Atom_TaggedCreate_Choice_Point4X696E7465676572_1ensure_reservedX2473686F775F756E646566696E65645F616374696F6E_0Current_Char_Conversion_Alt_0__strdup@@GLIBC_2.0Read_Numberx_eq_yX675F746573745F7365745F626974_2X675F646563_2X24246765745F636C6F73655F6F7074696F6E73322F315F2461757831_1Open_3Stream_Set_Position_LCStrdup_Checkrmdir@@GLIBC_2.0Pred_Prop_Static_1Temporary_File_3X74656D706F726172795F66696C65_3Stdio_Set_BufferingFd_Element_Var_IX233D23_2X6765745F636F6465_1le_hook_kbd_is_not_emptyMk_CodesX6372656174655F70697065_2type_integerCurrent_Mirror_Alt_0Stream_Line_Column_3truth_x_eq_y_FRead_Term_From_Chars_5Check_For_Un_In_CharSys_Var_Put_2Delete_Dynamic_Clausedomain_io_modeclosedir@@GLIBC_2.0X6B6579736F7274_2domain_close_optionX2463616C6C5F696E7465726E616C_2Call_With_Args_7gettimeofday@@GLIBC_2.0X7365745F73656564_1Make_Directory_1Blt_Term_EqFct_ExpM_System_TimeAdd_Stream_Mirror_2X24706C5F6572725F6576616C756174696F6E_1X726561645F6E756D626572_2m_os_typeX736F636B65745F6C697374656E_2X247573655F6361746368_0Blt_G_IncoX247379735F7661725F72657365745F626974_2srand@@GLIBC_2.0Display_1Fd_Prolog_To_Array_FdvX247365745F64656275676765725F73747265616D73_2Range_Mod_RangeLE_Emit_Beepx_neq_yBlt_G_DecX247379735F7661725F696E63_1X246463675F7472616E735F626F6479_4X2473686F775F756E646566696E65645F616374696F6E31_1X7368656C6C_2X247573655F6C697374_0Stream_Gets_PromptX2473725F73696D706C5F6572726F72_5opendir@@GLIBC_2.0Rd_Callable_CheckX77726974655F7465726D5F746F5F636F646573_3domain_stream_or_aliasX6F70656E5F696E7075745F61746F6D5F73747265616D_2X235C5C5C5C2F_2gethostname@@GLIBC_2.0Get_Char_2Hash_FindFd_Create_C_FrameX24246261676F662F345F2461757832_2open@@GLIBC_2.0Mk_StringX24656E7669726F6E5F616C74_0X736F636B65745F636F6E6E656374_4Write_To_Atom_2X242464656275675F706F72745F69676E6F72652F345F2461757831_3X66645F6861735F766563746F72_1X2463757272656E745F616C696173_2type_in_byteX73747265616D5F70726F7065727479_2atom_top_level_inputX2473725F77726974655F6572726F722F345F2461757831_4X246C656E677468_3Un_In_Charabs_x_minus_y_eq_zx_eq_cX246173736F635F736F636B65745F73747265616D73_3vec_sizeX7772697465715F746F5F636F646573_2m_architectureX72616E646F6D_1X6E616D65_2Stream_Prop_Reposition_2LE_Compl_Del_WordX24636865636B5F68656164_1Rd_Proper_List_CheckMk_FloatX24756E77696E64_1X247365745F62696E645F7661726961626C65735F64656661756C7473_0LE_Get_KeyX6F70_3M_Spawn_Redirectstm_stdingethostbyname@@GLIBC_2.0atom_binarysigemptyset@@GLIBC_2.0atom_debugger_inputFct_AsinUn_Integer_CheckAt_End_Of_Stream_1Blt_G_IncRd_StringLE_Open_TerminalNl_0Stream_Prop_File_Name_2X2463757272656E745F73747265616D5F616C74_0X24636C61757365_3X232F5C5C_2X6E7468_3X242464656275675F657865635F636D642F365F2461757831_1X7365745F6C696E656469745F70726F6D7074_1Switch_On_IntegerFct_Float_Integ_PartFd_Assign_ValueX24706F72747261795F636C61757365_2X242466645F6C6162656C696E672F325F2461757831_4Full_Var_Div_VarStream_PrintfX24246765745F77726974655F6F7074696F6E73322F315F2461757836_1byte_lenHash_Table_SizeCurrent_Op_Alt_0Blt_Non_Fd_VarCopy_Termgetpwnam@@GLIBC_2.0X2464656275675F69735F64656275675F707265646963617465_1Stop_PrologX247573655F7372635F726472_0X73725F6765745F6572726F725F636F756E74657273_3X6E6C_0exit@@GLIBC_2.0Format_To_Codes_3X24246765745F6F70656E5F6F7074696F6E73322F315F2461757831_1atom_top_level_outputX2463616C6C5F696E7465726E616C5F6F72_4X24746F705F6C6576656C5F73746F70_0Fct_AtanMk_Proper_ListAdd_Alias_To_StreamX242473725F74726561745F7465726D2F325F2461757831_2X66645F73697A65_2X24617070656E642F315F2461757831_2Check_For_Un_FloatGet_Print_Stm_1X73656E645F7369676E616C_2X73725F6F70656E_3X247365652F315F2461757831_2calloc@@GLIBC_2.0Read_Pl_State_FileX6973_2X247573655F66645F76616C756573_0X246D61785F6C69737431_3Vector_FullX2464656275675F706F72745F707265747479_2atom_stream_positionX2463686F6963655F706F696E745F696E666F_4Environ_Alt_0Rd_Codes_CheckFather_Of_Aux_Name_3Get_Key_No_Echo_1ax_plus_y_eq_z_FX6C696E655F706F736974696F6E_2Un_String_CheckFull_Nth_RootX65786563_5Create_Allocate_AtomX247573655F707265747479_0X736F727430_1Line_Count_2Mk_ByteX2464656275675F706F72745F69676E6F7265_4X666C6F6174_1X2464656275675F7377697463685F6F6E_1Hash_FirstDefine_Vector_SizeUn_CharsAtom_Concat_3Range_To_Stringsscanf@@GLIBC_2.0X70726F6C6F675F66696C655F6E616D65_2Get_Current_Bip_edataX3E_2X246765745F636C6F73655F6F7074696F6E7331_1X247363616E5F64796E5F6A756D705F616C74_0atom_tblmin_x_y_eq_z__i686.get_pc_thunk.bx_IO_putc@@GLIBC_2.0Sub_Atom_Alt_0Sqrt_ExactX66645F6C6162656C696E67_2Switch_On_TermSys_Var_Set_Bit_2X736F636B65745F62696E64_2fd_atmostfree@@GLIBC_2.0Create_AtomRead_2Fd_Add_List_Dependency_endX2E_2Get_Key_1ioctl@@GLIBC_2.0X2463757272656E745F7072656469636174655F62697073_1X66696E645F6C696E656469745F636F6D706C6574696F6E_2X675F72657365745F626974_2Start_PrologX63616C6C5F776974685F61726773_4Prime_RangeX756E6765745F63686172_2X61626F6C697368_1truth_x_lt_yX73725F6765745F706F736974696F6E_3Stream_Set_PositionCheck_For_Un_StringX72616E646F6D697A65_0X2465786563_5X3C_2min_x_a_eq_zUn_CallableX675F746573745F72657365745F626974_2X2463757272656E745F61746F6D5F616C74_0Blt_Non_VarX24636865636B5F707265645F70726F70_1getcwd@@GLIBC_2.0X24726574726163745F6C6173745F666F756E64_0X24246765745F77726974655F6F7074696F6E73322F315F2461757835_1Copy_Clause_To_HeapFd_AtleastUn_Proper_List_CheckX2424657870616E645F7465726D312F325F2461757831_2Peek_Byte_2Blt_GteRealloc_Checkisatty@@GLIBC_2.0X24246765745F6F70656E5F73746D2F325F2461757831_2stm_top_level_outputUn_CharRange_Sub_RangeX77726974655F666F66_1Create_Swt_Tableacos@@GLIBC_2.0memset@@GLIBC_2.0X726561645F696E7465676572_1Un_CodeX24246765745F6F70656E5F6F7074696F6E73322F315F2461757833_1connect@@GLIBC_2.0Rd_ListX233D3D3E_2stdin@@GLIBC_2.0X2463686F6963655F706F696E745F617267_3X247573655F636F6E73745F696F_0X2464656275675F636865636B5F626970_2X66696C655F7065726D697373696F6E_2X235C5C2F_2Un_Proper_ListX736565_1X666F726D6174_2Create_PredX62696E645F7661726961626C6573_2resource_print_object_not_linkedUnify_VoidWrite_Term_1X6C6F6164_1X2466696E645F6C696E656469745F636F6D706C6574696F6E5F616C74_0Call_With_Args_10X72656164_1X617267756D656E745F76616C7565_2Detect_If_Aux_NameX6C65617368_1atom_trueX246E746832_4existence_sr_descriptorMost_Significant_BitReset_Prolog_In_SignalCreate_Functor_Arity_TaggedX246C61737431_3Format_To_Chars_3Full_Sqrt_VarX617263686974656374757265_1X247468726F775F696E7465726E616C_2Globalize_If_In_LocalX66645F646F6D_2X2463757272656E745F636861725F636F6E76657273696F6E5F616C74_0Sys_Var_Read_2Vector_Mul_ValueSR_Set_Error_Counters_3Range_Next_AfterX247365745F6F70656E5F64656661756C7473_0Calloc_CheckRd_Chars_Str_CheckSub_Atom_5truth_x_lte_cX73725F77726974655F6572726F72_4Fd_All_Different_1X246C6F616431_1X242464656275675F706F72745F69676E6F72652F345F2461757833_3Syntax_ErrorBlt_AtomicX726561645F696E7465676572_2M_SpawnFct_Fast_AbsStatistics_Local_Stack_2X246765745F686561645F616E645F626F6479_3X2464656275675F63616C6C31_8strncpy@@GLIBC_2.0Range_Set_ValueX24636865636B5F6C697374_1domain_character_code_listUn_Number_CheckX2424636F6E73756C74322F315F2461757833_2X247573655F6C655F696E74657266_0Group_Solutions_Alt_0Writeq_To_Codes_2X24636174636831_4Set_Last_Syntax_ErrorX24657865635F636D6431_1X24726561645F72657475726E_0X636C6F73655F696E7075745F63686172735F73747265616D_1Fct_Decx_plus_c_eq_yDcg_Trans_Body_4Format_3Blt_CompareFct_Sinfopen@@GLIBC_2.1dup@@GLIBC_2.0Call_With_Args_2type_fd_bool_evaluableFct_IncX3D_2domain_os_pathpermission_operation_inputCall_With_Args_8Put_ListX67656E657269635F766172_1X61746F6D5F636F646573_2Mk_CompoundX2424657865635F636D645F6C696E655F676F616C2F315F2461757831_1_setjmp@@GLIBC_2.0X24666F725F616C74_0Fct_Subtruth_x_plus_c_neq_yX675F696E63_3X6765745F62797465_2Put_Char_2SR_Get_Include_Stream_List_2Context_Error_1Vector_Mod_VectorX242473725F646972656374697665312F325F2461757833_2X7368656C6C_1X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757833_1X2464656275675F646973705F68656C70_0M_ShellX646973706C61795F746F5F6368617273_2le_hook_get_char0Hash_NextSR_Stop_Module_3X7375626C697374_2M_Sys_Err_Stringtag_tblCheck_For_Un_IntegerSR_Get_Module_3Fd_Bool_Meta_3X726561645F7465726D5F66726F6D5F636F646573_3X24636865636B5F6C6973745F6F725F7061727469616C5F6C697374_1X63616C6C5F776974685F61726773_3Peek_Code_2Rd_In_Code_Checkescape_charBlt_G_Test_Reset_BitUn_CompoundSet_Debugger_Streams_2_IO_stdin_usedX7365745F73747265616D5F706F736974696F6E_2X726561645F746F6B656E5F66726F6D5F6368617273_2X726561645F746F6B656E_2Directory_Files_2X2463616C6C5F7465726D5F657870616E73696F6E_2Put_Code_2Stdio_Desc_Of_Streamchar_typeX233D_2X756E6C696E6B_1Blt_Term_GteFd_Tell_Range_RangeX247363616E5F64796E5F746573745F616C74_0Blt_Term_NeqX2464656275675F706F72745F70726F6D7074_6X242472656D6F76655F756E64657273636F72655F766172732F325F2461757831_2X247472795F706F7274726179_1Unset_C_Bip_NameX726561645F7465726D_3Call_Prolog_Next_SolX247573655F636861725F696F_0strtok@@GLIBC_2.0X2473725F73746172745F6D6F64756C65_3sys_varkill@@GLIBC_2.0X77726974655F63616E6F6E6963616C_1X246765745F62696E645F7661726961626C65735F6F7074696F6E73_4X2424726561645F71756572792F325F2461757831_1permission_type_operatorDelete_Opertruth_x_lte_yUpdate_Choice_Point2SR_Check_Descriptor_1Blt_Fast_GteX2463617463685F615F7468726F77_5X77616974_2getc@@GLIBC_2.0SR_Start_Module_3domain_os_file_permissionle_hook_message_boxtruth_x_plus_c_eq_yparse_dico_vartokenX2463757272656E745F70726F6C6F675F666C61675F616C74_0Un_Char_CheckDcg_Trans_Rule_2permission_operation_modifyX24737461746973746963732F325F2461757831_3Check_For_Un_ByteBlt_G_Inc_3X756E6966795F776974685F6F63637572735F636865636B_2Set_Bip_Name_2X247365745F726561645F64656661756C7473_0Add_Mirror_To_Streamatom_end_of_filex_power_a_eq_y_FX63757272656E745F6F70_3Set_Ctrl_C_Handler_0Hash_Insertstm_outputBlt_ListFlush_All_StreamsX7365656B_4Find_Stream_From_PStmparse_nb_varX7072696E745F746F5F6368617273_2domain_stream_seek_methodX726561645F66726F6D5F6368617273_2Rd_NumberFull_Find_ExponFloat_To_Stringatom_user_outputRd_IntegerLoad_Left_RightX2464656275675F706F727431_6sprintf@@GLIBC_2.0X403E_2Fd_Lte_2x_lt_yUntrailRead_From_Chars_2fwrite@@GLIBC_2.0Scan_Dynamic_Pred_Alt_0X6368617261637465725F636F756E74_2X247573655F66645F7072696D65_0Fd_Size_2Unify_AtomFct_Fast_SubX77726974655F63616E6F6E6963616C5F746F5F6368617273_2X246372656174655F636F6C756D6E_3__data_startScan_Next_NumberBlt_GtFd_Dom_2realpath@@GLIBC_2.3sin@@GLIBC_2.0X617267756D656E745F6C697374_1Read_Term_From_Atom_5Fd_Domain_2X706F7274726179_1X2462696E645F7661726961626C6573_4Fd_Prolog_To_Array_AnyX73725F6765745F73697A655F636F756E74657273_3socket@@GLIBC_2.0Current_Prolog_Flag_2X24636865636B5F6F776E65725F66696C6573_3Fd_Set_Vector_Max_1Term_Ref_2Not_Prime_RangeX617070656E64_3X247365745F73747265616D5F656F665F616374696F6E2F325F2461757831_1X646174655F74696D65_1File_Prop_Size_2Un_Byte_IO_getc@@GLIBC_2.0Vector_Interreaddir@@GLIBC_2.0X246765745F62696E645F7661726961626C65735F6F7074696F6E7332_1Check_Valid_Mirror_1X24636865636B5F6C6973745F617267_2_Jv_RegisterClasses__ctype_b_loc@@GLIBC_2.3X2463616C6C5F66726F6D5F6465627567676572_2Fct_Floatle_hook_eraseX247379735F7661725F6765745F626974_3X736574617267_3Unify_StructureFind_Expon_ExactX2462635F73746172745F656D6974_0Pl_Err_TypeX7365656E_0Socket_2rand@@GLIBC_2.0Fd_List_Int_To_Rangetruth_x_eq_cX6765745F62797465_1Recover_Generator_1X2473725F6F70656E5F6E65775F70726F6C6F675F66696C65_1X73796E7461785F6572726F725F696E666F_4Read_Token_From_Codes_2evluation_underflowx_plus_c_neq_yfull_acHash_Free_TableFct_NegX235C5C3D3D3E_2X247573655F61726974685F696E6C_0Blt_ArgRd_Codes_Str_CheckX2464656275675F657865635F636D64_6X636C6F7365_2X242464656275675F63616C6C5F706F72742F355F2461757831_3Writeq_To_Atom_2Save_Call_Info_3X636F6E73756C74_1Rd_Char_Checkbsearch@@GLIBC_2.0log@@GLIBC_2.0fd_copy_variableX2424746F705F6C6576656C322F305F2461757832_1X7365745F70726F6C6F675F666C6167_2X73797374656D_2quot_rem_x_a_r_eq_zX77616D5F6465627567_0Real_Time_1fd_unify_with_integerX3D2E2E_2X242464656275675F706F72745F69676E6F72652F345F2461757832_5X242464656275675F77726974655F676F616C2F345F2461757831_2Emit_Ctrl_CX24696E69745F6465627567676572_0X247365745F73747265616D5F656F665F616374696F6E2F325F2461757832_2Call_With_Args_1Fd_Prolog_To_Rangeescape_symbolChar_Conversion_2tcgetattr@@GLIBC_2.0LE_Put_CharUn_Codes_CheckX2424636865636B5F696E5F6368617261637465725F636F64652F315F2461757831_1read@@GLIBC_2.0Print_To_Chars_2representation_too_many_variablesIndomain_2quot_rem_a_y_r_eq_z_FX736F636B65745F616363657074_3Blt_Ltglob_dico_varX247379735F7661725F7772697465_2X24696E646F6D61696E5F6D696E5F616C74_0Stop_Mark_1Copy_Contiguous_TermTPX24657865635F7175657279_2Current_Input_1X2463617463685F696E7465726E616C_4x_plus_c_gte_yX675F646563_1Get_Structure_TaggedLE_Ins_ModeRange_Reset_Valuepi_arity_wordPortray_Clause_2X2463757272656E745F73747265616D_1Io_Fileno_Of_StreamX63616C6C5F776974685F61726773_7X246765745F6F70656E5F6F7074696F6E73_1X666F726D61745F746F5F6368617273_3Create_Choice_Point2Peek_Char_1LE_Kbd_Is_Not_EmptyGet_Key_No_Echo_2Sys_Var_Reset_Bit_2Range_Test_ValueX64656C6574655F6469726563746F7279_1X2466645F646F6D61696E_3Socket_Listen_2X247375626C69737431_3X66696C655F657869737473_1X2424746F705F6C6576656C322F305F2461757834_3ax_plus_y_plus_z_eq_t_FGet_Nilx_or_y_eq_1LE_Screen_SizePred_Prop_Built_In_1Read_From_Atom_2X73746174697374696373_2X636C6F73655F6F75747075745F63686172735F73747265616D_2Absolute_File_Name_2type_numberFd_Vector_Max_1Sort_List_1atom_void__gmon_start__strcpy@@GLIBC_2.0Recover_After_Errormin_x_a_eq_z_FX247573655F6F735F696E74657266_0le_hook_displUnget_Byte_1 2171 70604:5O A abi-note.S../sysdeps/i386/elf/start.Sinit.cinitfini.c/build/buildd/glibc-2.3.6/build-tree/i386-libc/csu/crti.Scall_gmon_startcrtstuff.c__CTOR_LIST____DTOR_LIST____JCR_LIST__p.0completed.1__do_global_dtors_auxframe_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_aux/build/buildd/glibc-2.3.6/build-tree/i386-libc/csu/crtn.Sobj_begin.cfailLpred1_3Lpred1_1stLpred1_2Lpred1_sub_0Lpred1_14Lpred1_sub_1Lpred1_16Lpred1_18Lpred1_5Lpred1_4fntaLpred1_7Lpred1_6Lpred1_9Lpred1_8Lpred1_11Lpred1_10Lpred1_13Lpred1_12Lpred1_15Lpred1_17Lpred1_19Lpred1_20Lpred4_1directive_1directive_2directive_3directive_4directive_5directive_6directive_7directive_8directive_9directive_10directive_11directive_12directive_13directive_14directive_15directive_16directive_17directive_18directive_19directive_20Object_InitializerSystem_DirectivesUser_Directivesatobj_chain_startobj_chain_stopLpred3_1Lpred10_1Lpred12_1Lpred13_1Lpred14_1Lpred15_1Lpred16_1Lpred17_1Lpred18_1Lpred18_2Lpred19_1Lpred20_2Lpred20_1Lpred20_4Lpred20_3Lpred20_6Lpred20_5Lpred20_7Lpred21_1Lpred22_1Lpred24_1Lpred25_1Lpred27_2Lpred27_3Lpred27_1Lpred27_sub_0Lpred27_5Lpred27_7Lpred27_4Lpred27_6Lpred28_1Lpred29_1Lpred30_1Lpred31_1Lpred31_2Lpred31_4Lpred31_3Lpred33_10Lpred33_2Lpred33_1Lpred33_5Lwork0Lpred33_3Lpred33_9Lpred33_7Lpred33_4Lpred33_6Lpred33_8Lpred34_1Lpred36_1ensure_linkedLpred10_2Lpred10_4Lpred10_3Lpred10_6Lpred10_5Lpred10_7Lpred12_13Lpred12_3Lpred12_2Lpred12_5Lpred12_4Lpred12_7Lpred12_6Lpred12_9Lpred12_8Lpred12_11Lpred12_10Lpred12_12Lpred12_14Lpred13_2Lpred13_4Lpred13_3Lpred18_4Lpred18_3Lpred18_6Lpred18_5Lpred18_8Lpred18_7Lpred18_10Lpred18_9Lpred18_11Lpred21_2Lpred23_1Lpred26_1Lpred29_2Lpred29_4Lpred29_3Lpred32_1Lpred35_1Lpred36_8Lpred36_2Lpred36_3Lpred36_5Lpred36_7Lpred36_4Lpred36_6Lpred36_9Lpred37_1Lpred37_2Lpred37_3Lpred38_1Lpred39_1Lpred39_2Lpred40_1Lpred41_23Lpred41_3Lpred41_1Lpred41_2Lpred41_5Lpred41_4Lpred41_7Lpred41_6Lpred41_9Lpred41_8Lpred41_11Lpred41_10Lpred41_13Lpred41_12Lpred41_15Lpred41_14Lpred41_17Lpred41_16Lpred41_19Lpred41_18Lpred41_21Lpred41_20Lpred41_22Lpred42_1Lpred42_2Lpred42_4Lpred42_3Lpred43_1Lpred43_2Lpred44_1Lpred46_1Lpred47_1Lpred50_1Lpred51_1Lpred52_4Lpred52_1Lpred52_3Lpred52_2Lpred52_sub_0Lpred52_7Lpred52_9Lpred52_6Lpred52_5Lpred52_8Lpred52_10Lpred52_12Lpred52_11Lpred52_14Lpred52_13Lpred52_15Lpred53_1Lpred54_1Lpred55_1Lpred57_1Lpred60_1Lpred60_66Lpred60_6Lpred60_2Lpred60_3Lpred60_sub_0Lpred60_11Lpred60_13Lpred60_4Lpred60_sub_1Lpred60_17Lpred60_19Lpred60_5Lpred60_sub_2Lpred60_21Lpred60_23Lpred60_8Lpred60_7Lpred60_10Lpred60_9Lpred60_12Lpred60_14Lpred60_16Lpred60_15Lpred60_18Lpred60_20Lpred60_22Lpred60_24Lpred60_26Lpred60_25Lpred60_28Lpred60_27Lpred60_30Lpred60_29Lpred60_32Lpred60_31Lpred60_34Lpred60_33Lpred60_36Lpred60_35Lpred60_38Lpred60_37Lpred60_40Lpred60_39Lpred60_42Lpred60_41Lpred60_44Lpred60_43Lpred60_46Lpred60_45Lpred60_48Lpred60_47Lpred60_50Lpred60_49Lpred60_52Lpred60_51Lpred60_54Lpred60_53Lpred60_56Lpred60_55Lpred60_58Lpred60_57Lpred60_60Lpred60_59Lpred60_62Lpred60_61Lpred60_64Lpred60_63Lpred60_65Lpred61_1Lpred62_1Lpred63_1Lpred64_1Lpred65_1Lpred66_1Lpred67_2Lpred67_1Lpred67_4Lpred67_3Lpred67_6Lpred67_5Lpred67_7Lpred69_1Lpred70_2Lpred70_1Lpred70_4Lpred70_3Lpred70_6Lpred70_5Lpred70_8Lpred70_7Lpred70_10Lpred70_9Lpred70_12Lpred70_11Lpred70_13Lpred72_1Lpred72_2Lpred72_4Lpred72_3Lpred74_1Lpred74_2Lpred74_4Lpred74_3Lpred75_1Lpred76_1Lpred76_2Lpred76_8Lpred76_4Lpred76_3Lpred76_6Lpred76_5Lpred76_7Lpred76_9Lpred77_1Lpred78_1Lpred81_1Lpred11_1Lpred14_2Lpred14_4Lpred14_3Lpred15_11Lpred15_3Lpred15_2Lpred15_5Lpred15_4Lpred15_7Lpred15_6Lpred15_9Lpred15_8Lpred15_10Lpred16_2Lpred16_4Lpred16_3Lpred16_5Lpred17_2Lpred17_4Lpred17_3Lpred17_6Lpred17_5Lpred17_8Lpred17_7Lpred17_10Lpred17_9Lpred17_11Lpred18_12Lpred18_14Lpred18_13Lpred18_16Lpred18_15Lpred18_17Indomain_MinIndomain_MaxIndomain_MiddleIndomain_LimitsIndomain_RandomCmp_First_FailCmp_Most_ConstrainedCmp_SmallestCmp_LargestCmp_Max_Regretfd_domain_bloc_1fd_domain_r_bloc_1x_plus_c_eq_y_bloc_1x_plus_c_eq_y_bloc_2x_plus_c_eq_y_F_bloc_1x_plus_c_eq_y_F_bloc_2x_plus_c_neq_y_bloc_1x_plus_c_neq_y_bloc_2x_plus_c_lte_y_bloc_1x_plus_c_lte_y_bloc_2x_plus_c_gte_y_bloc_1x_plus_c_gte_y_bloc_2ax_eq_y_bloc_1ax_eq_y_bloc_2x_plus_y_eq_z_bloc_1x_plus_y_eq_z_bloc_2x_plus_y_eq_z_bloc_3ax_plus_y_eq_z_bloc_1ax_plus_y_eq_z_bloc_2ax_plus_y_eq_z_bloc_3ax_plus_by_eq_z_bloc_1ax_plus_by_eq_z_bloc_2ax_plus_by_eq_z_bloc_3x_plus_y_plus_z_eq_t_bloc_1x_plus_y_plus_z_eq_t_bloc_2x_plus_y_plus_z_eq_t_bloc_3x_plus_y_plus_z_eq_t_bloc_4ax_plus_y_plus_z_eq_t_bloc_1ax_plus_y_plus_z_eq_t_bloc_2ax_plus_y_plus_z_eq_t_bloc_3ax_plus_y_plus_z_eq_t_bloc_4ax_plus_by_plus_z_eq_t_bloc_1ax_plus_by_plus_z_eq_t_bloc_2ax_plus_by_plus_z_eq_t_bloc_3ax_plus_by_plus_z_eq_t_bloc_4ax_eq_y_F_bloc_1ax_eq_y_F_bloc_2x_plus_y_eq_z_F_bloc_1x_plus_y_eq_z_F_bloc_2x_plus_y_eq_z_F_bloc_3ax_plus_y_eq_z_F_bloc_1ax_plus_y_eq_z_F_bloc_2ax_plus_y_eq_z_F_bloc_3ax_plus_by_eq_z_F_bloc_1ax_plus_by_eq_z_F_bloc_2ax_plus_by_eq_z_F_bloc_3x_plus_y_plus_z_eq_t_F_bloc_1x_plus_y_plus_z_eq_t_F_bloc_2x_plus_y_plus_z_eq_t_F_bloc_3x_plus_y_plus_z_eq_t_F_bloc_4ax_plus_y_plus_z_eq_t_F_bloc_1ax_plus_y_plus_z_eq_t_F_bloc_2ax_plus_y_plus_z_eq_t_F_bloc_3ax_plus_y_plus_z_eq_t_F_bloc_4ax_plus_by_plus_z_eq_t_F_bloc_1ax_plus_by_plus_z_eq_t_F_bloc_2ax_plus_by_plus_z_eq_t_F_bloc_3ax_plus_by_plus_z_eq_t_F_bloc_4a_power_n_eq_y_bloc_1a_power_n_eq_y_bloc_2x_power_a_eq_y_bloc_1x_power_a_eq_y_bloc_2xy_eq_z_bloc_1xy_eq_z_bloc_2xy_eq_z_bloc_3a_power_n_eq_y_F_bloc_1a_power_n_eq_y_F_bloc_2x_power_a_eq_y_F_bloc_1x_power_a_eq_y_F_bloc_2xy_eq_z_F_bloc_1xy_eq_z_F_switch_1_instmin_x_y_eq_z_bloc_1min_x_y_eq_z_bloc_2min_x_y_eq_z_bloc_3min_x_y_eq_z_bloc_4min_x_y_eq_z_bloc_5min_x_y_eq_z_switch_1_instmin_x_a_eq_z_bloc_1min_x_a_eq_z_bloc_2min_x_a_eq_z_bloc_3min_x_a_eq_z_bloc_4min_x_a_eq_z_switch_1min_x_a_eq_z_case_group_1min_x_y_eq_z_F_bloc_1min_x_y_eq_z_F_bloc_2min_x_y_eq_z_F_bloc_3min_x_y_eq_z_F_bloc_4min_x_y_eq_z_F_bloc_5min_x_y_eq_z_F_switch_1_instmin_x_a_eq_z_F_bloc_1min_x_a_eq_z_F_bloc_2min_x_a_eq_z_F_bloc_3min_x_a_eq_z_F_bloc_4min_x_a_eq_z_F_switch_1min_x_a_eq_z_F_case_group_1max_x_y_eq_z_bloc_1max_x_y_eq_z_bloc_2max_x_y_eq_z_bloc_3max_x_y_eq_z_bloc_4max_x_y_eq_z_bloc_5max_x_y_eq_z_switch_1_instmax_x_a_eq_z_bloc_1max_x_a_eq_z_bloc_2max_x_a_eq_z_bloc_3max_x_a_eq_z_bloc_4max_x_a_eq_z_switch_1max_x_a_eq_z_case_group_1max_x_y_eq_z_F_bloc_1max_x_y_eq_z_F_bloc_2max_x_y_eq_z_F_bloc_3max_x_y_eq_z_F_bloc_4max_x_y_eq_z_F_bloc_5max_x_y_eq_z_F_switch_1_instmax_x_a_eq_z_F_bloc_1max_x_a_eq_z_F_bloc_2max_x_a_eq_z_F_bloc_3max_x_a_eq_z_F_bloc_4max_x_a_eq_z_F_switch_1max_x_a_eq_z_F_case_group_1abs_x_minus_y_eq_z_bloc_1abs_x_minus_y_eq_z_bloc_2abs_x_minus_y_eq_z_bloc_3abs_x_minus_y_eq_z_switch_1_instabs_x_minus_a_eq_z_bloc_1abs_x_minus_a_eq_z_bloc_2abs_x_minus_a_eq_z_switch_1abs_x_minus_a_eq_z_case_group_2abs_x_minus_a_eq_z_case_group_1abs_x_minus_y_eq_z_F_bloc_1abs_x_minus_y_eq_z_F_bloc_2abs_x_minus_y_eq_z_F_bloc_3abs_x_minus_y_eq_z_F_switch_1_instabs_x_minus_a_eq_z_F_bloc_1abs_x_minus_a_eq_z_F_bloc_2abs_x_minus_a_eq_z_F_switch_1abs_x_minus_a_eq_z_F_case_group_2abs_x_minus_a_eq_z_F_case_group_1quot_rem_x_y_r_eq_z_bloc_1quot_rem_x_y_r_eq_z_bloc_2quot_rem_x_y_r_eq_z_bloc_3quot_rem_x_y_r_eq_z_bloc_4quot_rem_x_y_r_eq_z_bloc_5quot_rem_x_y_r_eq_z_bloc_6quot_rem_x_y_r_eq_z_bloc_7quot_rem_x_y_r_eq_z_switch_1quot_rem_x_y_r_eq_z_bloc_8_instquot_rem_a_y_r_eq_z_bloc_1quot_rem_a_y_r_eq_z_bloc_2quot_rem_a_y_r_eq_z_bloc_3quot_rem_a_y_r_eq_z_bloc_4quot_rem_a_y_r_eq_z_bloc_5quot_rem_a_y_r_eq_z_switch_1quot_rem_a_y_r_eq_z_bloc_6_instquot_rem_x_a_r_eq_z_bloc_1quot_rem_x_a_r_eq_z_bloc_2quot_rem_x_a_r_eq_z_bloc_3quot_rem_x_a_r_eq_z_bloc_4quot_rem_x_a_r_eq_z_bloc_5quot_rem_x_y_r_eq_z_F_bloc_1quot_rem_x_y_r_eq_z_F_bloc_2quot_rem_x_y_r_eq_z_F_bloc_3quot_rem_x_y_r_eq_z_F_bloc_4quot_rem_x_y_r_eq_z_F_bloc_5quot_rem_x_y_r_eq_z_F_bloc_6quot_rem_x_y_r_eq_z_F_bloc_7quot_rem_x_y_r_eq_z_F_switch_1quot_rem_x_y_r_eq_z_F_bloc_8_instquot_rem_a_y_r_eq_z_F_bloc_1quot_rem_a_y_r_eq_z_F_bloc_2quot_rem_a_y_r_eq_z_F_bloc_3quot_rem_a_y_r_eq_z_F_bloc_4quot_rem_a_y_r_eq_z_F_bloc_5quot_rem_a_y_r_eq_z_F_switch_1quot_rem_a_y_r_eq_z_F_bloc_6_instquot_rem_x_a_r_eq_z_F_bloc_1quot_rem_x_a_r_eq_z_F_bloc_2quot_rem_x_a_r_eq_z_F_bloc_3quot_rem_x_a_r_eq_z_F_bloc_4quot_rem_x_a_r_eq_z_F_bloc_5x_eq_y_bloc_1x_eq_y_bloc_2x_eq_y_F_bloc_1x_eq_y_F_bloc_2x_neq_y_bloc_1_instx_neq_y_bloc_2_instx_lt_y_bloc_1x_lt_y_bloc_2x_lte_c_bloc_1x_lte_y_bloc_1x_lte_y_bloc_2x_gte_c_bloc_1zero_power_n_eq_y_bloc_1zero_power_n_eq_y_bloc_2x2_eq_y_bloc_1x2_eq_y_bloc_2x2_eq_y_F_bloc_1x2_eq_y_F_bloc_2x_neq_y_bloc_1x_neq_y_bloc_2xy_eq_z_F_switch_1min_x_y_eq_z_switch_1min_x_y_eq_z_case_group_2min_x_y_eq_z_case_group_1min_x_a_eq_z_bloc_5min_x_a_eq_z_bloc_6min_x_y_eq_z_F_switch_1min_x_a_eq_z_F_bloc_5min_x_a_eq_z_F_bloc_6max_x_y_eq_z_switch_1max_x_y_eq_z_case_group_2max_x_y_eq_z_case_group_1max_x_a_eq_z_bloc_5max_x_a_eq_z_bloc_6max_x_y_eq_z_F_switch_1max_x_a_eq_z_F_bloc_5max_x_a_eq_z_F_bloc_6abs_x_minus_y_eq_z_switch_1abs_x_minus_y_eq_z_case_group_2abs_x_minus_y_eq_z_case_group_1abs_x_minus_a_eq_z_bloc_3abs_x_minus_a_eq_z_bloc_4abs_x_minus_a_eq_z_bloc_5abs_x_minus_a_eq_z_bloc_6abs_x_minus_y_eq_z_F_switch_1abs_x_minus_y_eq_z_F_case_group_2abs_x_minus_y_eq_z_F_case_group_1abs_x_minus_a_eq_z_F_bloc_3abs_x_minus_a_eq_z_F_bloc_4abs_x_minus_a_eq_z_F_bloc_5abs_x_minus_a_eq_z_F_bloc_6quot_rem_x_y_r_eq_z_bloc_8quot_rem_a_y_r_eq_z_bloc_6quot_rem_x_y_r_eq_z_F_bloc_8quot_rem_a_y_r_eq_z_F_bloc_6xy_eq_z_F_case_group_1xy_eq_z_F_bloc_5xy_eq_z_F_bloc_6min_x_y_eq_z_bloc_6min_x_y_eq_z_bloc_7min_x_y_eq_z_bloc_8min_x_y_eq_z_bloc_9min_x_y_eq_z_F_case_group_1min_x_y_eq_z_F_case_group_2max_x_y_eq_z_bloc_6max_x_y_eq_z_bloc_7max_x_y_eq_z_bloc_8max_x_y_eq_z_bloc_9max_x_y_eq_z_F_case_group_1max_x_y_eq_z_F_case_group_2abs_x_minus_y_eq_z_bloc_4abs_x_minus_y_eq_z_bloc_5abs_x_minus_y_eq_z_bloc_6abs_x_minus_y_eq_z_bloc_7abs_x_minus_y_eq_z_bloc_8abs_x_minus_y_eq_z_bloc_9abs_x_minus_y_eq_z_F_bloc_4abs_x_minus_y_eq_z_F_bloc_5abs_x_minus_y_eq_z_F_bloc_6abs_x_minus_y_eq_z_F_bloc_7abs_x_minus_y_eq_z_F_bloc_8abs_x_minus_y_eq_z_F_bloc_9xy_eq_z_F_bloc_2xy_eq_z_F_bloc_3xy_eq_z_F_bloc_4min_x_y_eq_z_F_bloc_6min_x_y_eq_z_F_bloc_7min_x_y_eq_z_F_bloc_8min_x_y_eq_z_F_bloc_9max_x_y_eq_z_F_bloc_6max_x_y_eq_z_F_bloc_7max_x_y_eq_z_F_bloc_8max_x_y_eq_z_F_bloc_9Fd_Bool_Initializerbool_tblbool_xorSet_Notfunc_tblSet_EquivSet_NequivSet_ImplySet_NimplySet_AndSet_NandSet_OrSet_NorSet_EqSet_NeqSet_LtSet_LteSet_ZeroSet_Onestackspvars_tblvars_spSimplifyLoad_Bool_Into_WordAdd_Fd_VariablesSet_Varx_equiv_y_eq_b_bloc_1x_equiv_y_eq_b_bloc_2x_equiv_y_eq_b_bloc_3x_nequiv_y_eq_b_bloc_1x_nequiv_y_eq_b_bloc_2x_nequiv_y_eq_b_bloc_3x_imply_y_eq_b_bloc_1x_imply_y_eq_b_bloc_2x_imply_y_eq_b_bloc_3x_nimply_y_eq_b_bloc_1x_nimply_y_eq_b_bloc_2x_nimply_y_eq_b_bloc_3x_and_y_eq_b_bloc_1x_and_y_eq_b_bloc_2x_and_y_eq_b_bloc_3x_nand_y_eq_b_bloc_1x_nand_y_eq_b_bloc_2x_nand_y_eq_b_bloc_3x_or_y_eq_b_bloc_1x_or_y_eq_b_bloc_2x_or_y_eq_b_bloc_3x_nor_y_eq_b_bloc_1x_nor_y_eq_b_bloc_2x_nor_y_eq_b_bloc_3truth_x_eq_c_switch_1_insttruth_x_eq_y_switch_1_insttruth_x_plus_c_eq_y_switch_1_insttruth_x_eq_c_F_switch_1_insttruth_x_eq_y_F_switch_1_insttruth_x_plus_c_eq_y_F_switch_1_insttruth_x_neq_c_switch_1_insttruth_x_neq_y_switch_1_insttruth_x_plus_c_neq_y_switch_1_insttruth_x_neq_c_F_switch_1_insttruth_x_neq_y_F_switch_1_insttruth_x_plus_c_neq_y_F_switch_1_insttruth_x_lt_y_switch_1_insttruth_x_lte_c_switch_1_insttruth_x_lte_y_switch_1_insttruth_x_plus_c_lte_y_switch_1_insttruth_x_gte_c_switch_1_insttruth_x_plus_c_gte_y_switch_1_instnot_x_eq_b_bloc_1_instnot_x_eq_b_bloc_2_instx_imply_y_eq_1_bloc_1x_imply_y_eq_1_bloc_2x_and_y_eq_0_bloc_1x_and_y_eq_0_bloc_2x_or_y_eq_1_bloc_1x_or_y_eq_1_bloc_2not_x_eq_b_bloc_1not_x_eq_b_bloc_2truth_x_eq_c_switch_1truth_x_eq_y_switch_1truth_x_plus_c_eq_y_switch_1truth_x_eq_c_F_switch_1truth_x_eq_y_F_switch_1truth_x_plus_c_eq_y_F_switch_1truth_x_neq_c_switch_1truth_x_neq_y_switch_1truth_x_plus_c_neq_y_switch_1truth_x_neq_c_F_switch_1truth_x_neq_y_F_switch_1truth_x_plus_c_neq_y_F_switch_1truth_x_lt_y_switch_1truth_x_lte_c_switch_1truth_x_lte_y_switch_1truth_x_plus_c_lte_y_switch_1truth_x_gte_c_switch_1truth_x_plus_c_gte_y_switch_1truth_x_eq_c_bloc_3truth_x_eq_c_bloc_4truth_x_eq_c_bloc_2truth_x_eq_c_bloc_1truth_x_eq_y_bloc_5truth_x_eq_y_bloc_6truth_x_eq_y_case_group_2truth_x_eq_y_case_group_1truth_x_plus_c_eq_y_bloc_5truth_x_plus_c_eq_y_bloc_6truth_x_plus_c_eq_y_case_group_2truth_x_plus_c_eq_y_case_group_1truth_x_eq_c_F_bloc_4truth_x_eq_c_F_bloc_3truth_x_eq_c_F_bloc_2truth_x_eq_c_F_bloc_1truth_x_eq_y_F_bloc_6truth_x_eq_y_F_bloc_5truth_x_eq_y_F_case_group_2truth_x_eq_y_F_case_group_1truth_x_plus_c_eq_y_F_bloc_6truth_x_plus_c_eq_y_F_bloc_5truth_x_plus_c_eq_y_F_case_group_2truth_x_plus_c_eq_y_F_case_group_1truth_x_neq_c_bloc_4truth_x_neq_c_bloc_3truth_x_neq_c_bloc_2truth_x_neq_c_bloc_1truth_x_neq_y_bloc_6truth_x_neq_y_bloc_5truth_x_neq_y_case_group_2truth_x_neq_y_case_group_1truth_x_plus_c_neq_y_bloc_6truth_x_plus_c_neq_y_bloc_5truth_x_plus_c_neq_y_case_group_2truth_x_plus_c_neq_y_case_group_1truth_x_neq_c_F_bloc_4truth_x_neq_c_F_bloc_3truth_x_neq_c_F_bloc_2truth_x_neq_c_F_bloc_1truth_x_neq_y_F_bloc_6truth_x_neq_y_F_bloc_5truth_x_neq_y_F_case_group_2truth_x_neq_y_F_case_group_1truth_x_plus_c_neq_y_F_bloc_6truth_x_plus_c_neq_y_F_bloc_5truth_x_plus_c_neq_y_F_case_group_2truth_x_plus_c_neq_y_F_case_group_1truth_x_lt_y_bloc_6truth_x_lt_y_bloc_5truth_x_lt_y_case_group_2truth_x_lt_y_case_group_1truth_x_lte_c_bloc_4truth_x_lte_c_bloc_3truth_x_lte_c_bloc_2truth_x_lte_c_bloc_1truth_x_lte_y_bloc_6truth_x_lte_y_bloc_5truth_x_lte_y_case_group_2truth_x_lte_y_case_group_1truth_x_plus_c_lte_y_bloc_6truth_x_plus_c_lte_y_bloc_5truth_x_plus_c_lte_y_case_group_2truth_x_plus_c_lte_y_case_group_1truth_x_gte_c_bloc_4truth_x_gte_c_bloc_3truth_x_gte_c_bloc_2truth_x_gte_c_bloc_1truth_x_plus_c_gte_y_bloc_6truth_x_plus_c_gte_y_bloc_5truth_x_plus_c_gte_y_case_group_2truth_x_plus_c_gte_y_case_group_1truth_x_eq_y_bloc_1_insttruth_x_eq_y_bloc_2_insttruth_x_eq_y_bloc_3truth_x_eq_y_bloc_4truth_x_plus_c_eq_y_bloc_1_insttruth_x_plus_c_eq_y_bloc_2_insttruth_x_plus_c_eq_y_bloc_3truth_x_plus_c_eq_y_bloc_4truth_x_eq_y_F_bloc_1_insttruth_x_eq_y_F_bloc_2_insttruth_x_eq_y_F_bloc_3truth_x_eq_y_F_bloc_4truth_x_plus_c_eq_y_F_bloc_1_insttruth_x_plus_c_eq_y_F_bloc_2_insttruth_x_plus_c_eq_y_F_bloc_3truth_x_plus_c_eq_y_F_bloc_4truth_x_neq_y_bloc_1truth_x_neq_y_bloc_2truth_x_neq_y_bloc_3_insttruth_x_neq_y_bloc_4_insttruth_x_plus_c_neq_y_bloc_1truth_x_plus_c_neq_y_bloc_2truth_x_plus_c_neq_y_bloc_3_insttruth_x_plus_c_neq_y_bloc_4_insttruth_x_neq_y_F_bloc_1truth_x_neq_y_F_bloc_2truth_x_neq_y_F_bloc_3_insttruth_x_neq_y_F_bloc_4_insttruth_x_plus_c_neq_y_F_bloc_1truth_x_plus_c_neq_y_F_bloc_2truth_x_plus_c_neq_y_F_bloc_3_insttruth_x_plus_c_neq_y_F_bloc_4_insttruth_x_lt_y_bloc_1truth_x_lt_y_bloc_2truth_x_lt_y_bloc_3truth_x_lt_y_bloc_4truth_x_lte_y_bloc_1truth_x_lte_y_bloc_2truth_x_lte_y_bloc_3truth_x_lte_y_bloc_4truth_x_plus_c_lte_y_bloc_1truth_x_plus_c_lte_y_bloc_2truth_x_plus_c_lte_y_bloc_3truth_x_plus_c_lte_y_bloc_4truth_x_plus_c_gte_y_bloc_1truth_x_plus_c_gte_y_bloc_2truth_x_plus_c_gte_y_bloc_3truth_x_plus_c_gte_y_bloc_4truth_x_eq_y_bloc_1truth_x_eq_y_bloc_2truth_x_plus_c_eq_y_bloc_1truth_x_plus_c_eq_y_bloc_2truth_x_eq_y_F_bloc_1truth_x_eq_y_F_bloc_2truth_x_plus_c_eq_y_F_bloc_1truth_x_plus_c_eq_y_F_bloc_2truth_x_neq_y_bloc_3truth_x_neq_y_bloc_4truth_x_plus_c_neq_y_bloc_3truth_x_plus_c_neq_y_bloc_4truth_x_neq_y_F_bloc_3truth_x_neq_y_F_bloc_4truth_x_plus_c_neq_y_F_bloc_3truth_x_plus_c_neq_y_F_bloc_4prime_x_bloc_1not_prime_x_bloc_1Lpred11_2Lpred11_4Lpred11_3Fd_All_Different_Recfd_element_bloc_1fd_element_bloc_2fd_element_bloc_3fd_element_var_bloc_1fd_element_var_bloc_2fd_element_var_bloc_3fd_element_var_bloc_4fd_atmost_bloc_1_instfd_atleast_bloc_1_instfd_exactly_bloc_1_instfd_atmost_bloc_1fd_atleast_bloc_1fd_exactly_bloc_1Lpred5_1Math_Supp_Initializerdelay_cstr_stackdelay_spLoad_Delay_Cstr_PartNormalizearith_tblsortLoad_Term_Into_WordLoad_PolyLoad_Poly_RecLoad_Left_Right_RecCompar_Monomtxp.0Find_Expon_Generalprime_vec_sizeCompute_Prime_Rangeprime_rangenot_prime_rangealways_datenever_dateAll_Propagationsdummy_fd_varbuff.0nb_bits_in_byte.1unify_x_y_bloc_1unify_x_y_bloc_2Error_Supp_Initializerlast_err_filec_bip_func_strc_bip_aritycur_bip_funccur_bip_aritylast_err_collast_err_linelast_err_msgInit_Stream_Suppstatic_str_stream_rdstatic_str_stream_wrtty_ptrstream_1atom_constant_term_streamword_current_input_streamword_current_output_streamTTY_GetcTTY_ClearerrFind_Free_Streamtty_linedit_depth.0tty_bufftty_first_buffStr_Stream_GetcStr_Stream_Putch.1Lpred2_1Lpred3_9Lpred3_3Lpred3_2Lpred3_5Lpred3_4Lpred3_7Lpred3_6Lpred3_8Lpred5_2Lpred6_1Lpred7_1Lpred8_1Lpred8_6Lpred8_2Lpred8_3Lpred8_5Lpred8_4Lpred9_1Lpred9_2Lpred7_2Clause_Altlast_clauseRetract_AltLpred9_4Lpred9_3Lpred10_13Lpred10_9Lpred10_8Lpred10_11Lpred10_10Lpred10_12Lpred11_5Lpred15_19Lpred15_13Lpred15_12Lpred15_15Lpred15_14Lpred15_17Lpred15_16Lpred15_18Lpred19_2Lpred19_4Lpred19_3Lpred19_5Lpred21_4Lpred21_3Lpred21_5Lpred4_2Lpred4_4Lpred4_3Oper_Initializeratom_specif_tblDetect_Oper_SpecifLpred10_24Lpred10_14Lpred10_16Lpred10_15Lpred10_18Lpred10_17Lpred10_20Lpred10_19Lpred10_22Lpred10_21Lpred10_23Lpred11_7Lpred11_6Lpred11_9Lpred11_8Lpred11_11Lpred11_10Lpred11_13Lpred11_12Lpred11_15Lpred11_14Lpred11_17Lpred11_16Lpred11_19Lpred11_18Lpred11_21Lpred11_20Lpred11_22Lpred23_18Lpred23_4Lpred23_2Lpred23_3Lpred23_6Lpred23_5Lpred23_8Lpred23_7Lpred23_10Lpred23_9Lpred23_12Lpred23_11Lpred23_14Lpred23_13Lpred23_16Lpred23_15Lpred23_17Lpred24_3Lpred24_2Lpred24_5Lpred24_4Lpred24_7Lpred24_6Lpred24_9Lpred24_8Lpred24_11Lpred24_10Lpred24_13Lpred24_12Lpred24_15Lpred24_14Lpred24_16Create_Malloc_AtomCompute_Next_BLAString_To_NumberLpred13_21Lpred13_5Lpred13_7Lpred13_6Lpred13_9Lpred13_8Lpred13_11Lpred13_10Lpred13_13Lpred13_12Lpred13_15Lpred13_14Lpred13_17Lpred13_16Lpred13_19Lpred13_18Lpred13_20Call_With_ArgsFlag_Initializeratom_flag_tblatom_downatom_toward_zeroatom_onatom_offatom_erroratom_warningatom_failatom_charsatom_codesatom_atomatom_chars_no_escapeatom_codes_no_escapeatom_atom_no_escapeatom_prologUnif_Flagcv.0Arith_InitializerLoad_Math_Expressionfix_bug.0G_Var_InitializerG_Assign_ArrayG_Alloc_ArrayG_Assign_ElementG_Free_ElementG_Copy_ElementGet_Target_From_SelectorGet_Target_From_GvarGet_Int_From_WordGet_Term_Addr_From_TargetGet_Int_Addr_From_Gvarg_targetatom_g_arrayG_Trail_For_BacktrackG_UntrailG_Read_Elementatom_g_array_autoatom_g_array_extendg_var_tblAll_Solut_InitializerdummysolExistential_Variablesexist_2Bound_Varkey_var_ptrHandle_Key_Variablessave_key_var_ptrnext_key_var_ptrLink_Key_VarGroupbound_var_ptrFree_Varnew_gen_wordfree_var_baseSort_InitializerMerge_SortKeysort_Cmpminus_2Lpred2_2Lpred2_4Lpred2_3Lpred7_4Lpred7_3Lpred9_sub_0Lpred9_5Lpred9_7Lpred9_6Lpred15_sub_0Lpred23_sub_0Lpred25_2Lpred25_3Lpred25_sub_0Lpred25_5Lpred25_7Lpred25_4Lpred25_6Lpred5_21Lpred5_3Lpred5_5Lpred5_4Lpred5_7Lpred5_6Lpred5_9Lpred5_8Lpred5_11Lpred5_10Lpred5_13Lpred5_12Lpred5_15Lpred5_14Lpred5_17Lpred5_16Lpred5_19Lpred5_18Lpred5_20Lpred6_3Lpred6_2Lpred6_5Lpred6_4Lpred6_7Lpred6_6Lpred6_9Lpred6_8Lpred6_11Lpred6_10Lpred6_13Lpred6_12Lpred6_15Lpred6_14Lpred6_16last_user_timelast_system_timelast_cpu_timelast_real_timen.0Stack_SizeLpred21_6Lpred21_7Lpred22_2Lpred22_4Lpred22_3Lpred22_6Lpred22_5Lpred22_7Lpred26_2Lpred26_4Lpred26_3Lpred32_2Lpred38_2Lpred38_4Lpred38_3Lpred38_5Lpred44_2Lpred44_4Lpred44_3Lpred44_6Lpred44_5Lpred44_7Lpred45_1Lpred53_28Lpred53_4Lpred53_2Lpred53_3Lpred53_6Lpred53_5Lpred53_8Lpred53_7Lpred53_10Lpred53_9Lpred53_12Lpred53_11Lpred53_14Lpred53_13Lpred53_16Lpred53_15Lpred53_18Lpred53_17Lpred53_20Lpred53_19Lpred53_22Lpred53_21Lpred53_24Lpred53_23Lpred53_26Lpred53_25Lpred53_27Lpred54_3Lpred54_2Lpred54_5Lpred54_4Lpred54_7Lpred54_6Lpred54_9Lpred54_8Lpred54_11Lpred54_10Lpred54_13Lpred54_12Lpred54_15Lpred54_14Lpred54_17Lpred54_16Lpred54_19Lpred54_18Lpred54_21Lpred54_20Lpred54_23Lpred54_22Lpred54_25Lpred54_24Lpred54_26Lpred58_1Lpred2_11Lpred2_sub_0Lpred2_8Lpred2_5Lpred2_7Lpred2_6Lpred2_9Lpred2_10Lpred2_12FormatArg_AtomArg_IntegerArg_FloatRead_ArgLpred14_6Lpred14_5Lpred14_8Lpred14_7Lpred14_10Lpred14_9Lpred14_12Lpred14_11Lpred14_14Lpred14_13Lpred14_16Lpred14_15Lpred14_17Os_Interf_Initializeratom_dtatom_readatom_writeatom_executeatom_searchatom_regularatom_directoryatom_fifoatom_socketatom_character_deviceatom_block_deviceatom_unknowntsignb_sigGet_Path_NameFlag_Of_PermissionDate_Time_To_Prologatom_host_name.0Select_Init_SetSelect_Init_Ready_ListExpand_Initializerdcg_2topopt_term_unifDcg_HeadDcg_Bodyatom_clauseDcg_Body_On_StackDcg_Term_List_On_StackDcg_Compound2atom_phraseatom_ifLpred30_2Lpred30_4Lpred30_3Pretty_InitializerCheck_Structureprec.0Show_BodyStart_Lineequal_2atom_dollar_varnamenb_to_tryCollect_Excluded_RecVar_Name_To_Var_NumberExclude_A_Var_NumberBind_Variabledollar_var_1dollar_varname_1Portray_ClauseCollect_Singletonsingl_var_ptrnb_singl_varatom_dcgatom_dollar_varCtrl_C_ManagerDebug_Initializerenvir_namechoice_nametrail_tag_namepstm_ipstm_odbg_jumperDebugger_Signal_HandlerScan_CommandFind_Functionnb_read_argread_argcmd.0Write_Data_ModifyWhereWhatDereferenceEnvironmentBacktrackHelpRead_Bank_Adrreg_copyPrint_Bank_Name_OffsetPrint_Wam_WordModify_Wam_WordRead_An_IntegerDetect_StackDetect_Pred_From_CodeMy_System_DirectivesLpred8_14Lpred8_8Lpred8_7Lpred8_10Lpred8_9Lpred8_12Lpred8_11Lpred8_13Lpred28_2Lpred28_4Lpred28_3Lpred28_6Lpred28_5Lpred28_8Lpred28_7Lpred28_10Lpred28_9Lpred28_12Lpred28_11Lpred28_14Lpred28_13Lpred28_16Lpred28_15Lpred28_17Lpred32_4Lpred32_3Lpred32_6Lpred32_5Lpred32_8Lpred32_7Lpred32_10Lpred32_9Lpred32_12Lpred32_11Lpred32_14Lpred32_13Lpred32_15Lpred56_1Lpred58_8Lpred58_2Lpred58_4Lpred58_3Lpred58_6Lpred58_5Lpred58_7Lpred61_7Lpred61_3Lpred61_2Lpred61_sub_0Lpred61_4Lpred61_6Lpred61_5sr_tblsr_tbl_sizesr_last_usedcur_srGet_DescriptorCommon_CleanExec_One_DirectiveUndo_DirectivesClose_Current_ModuleWrite_LocationSocket_Initializeratom_AF_UNIXatom_AF_INETCreate_Socket_Streamsend_varsvarsCopy_Term_Recbase_copytop_varsParse_Supp_Initializerjumpertok_presentbuff_save_machine_regsParse_TermParse_ErrorLookup_In_Dico_VarCreate_StructureParse_Args_Of_FunctorParse_Bracketed_TermParse_Listatom_varatom_stringatom_back_quotesatom_punctatom_full_stopatom_extendWrite_Supp_Initializerlast_prefix_opShow_TermShow_Global_Varignore_opShow_List_ArgShow_StructureShow_AtomShow_FloatShow_Fd_VariableShow_IntegerTry_Portrayatom_dotsquotedspace_argsname_varsnumber_varscurly_brackets_1try_portray_code.1portrayedOut_Charerase_stampfirst_dyn_with_erasesize_of_erasedAdd_To_2ChainIndex_From_First_ArgAlloc_Init_Dyn_InfoUnlink_ClauseFree_ClauseGet_Scan_Choice_PointScan_Dynamic_Pred_NextClean_Erased_Clausessave_call_infoByte_Code_Initializerop_tblCompar_Inst_Code_Opnb_opbc_nb_blockbcatom_dynamicatom_publicatom_built_inatom_built_in_fdcaller_aritycaller_funcbc_spBC_Arg_X_Or_YBC_Arg_Func_Aritydebug_callBC_Emulate_Pred_AltBC_Emulate_Clauseglob_funcglob_dynBC_Emulate_Byte_CodePrep_Debug_Callerr_msgcc_origc_typeScan_QuotedScan_NumberScan_Quoted_Charobj_end.cstart_user_timestart_system_timestart_real_timecur_seedpage_sizeSIGSEGV_Handlerbuff.1cur_work_dir.2msg.3buff.4arg.0nb_arg.1value.2letters.3arg.4Hash_Locatenb_objobj_tblnb_user_directivesinit_buff_regsheap_actual_startCall_Prolog_FailCall_Prolog_SuccessCall_Nextp_buff_savep_jumpercont_jmpCheck_If_Var_Occurshash_weight_tblhash_inv_tblstr_charLocate_AtomHash_Stringgen_sym_buffFd_Solver_Missingseparatorsins_modeclipboardhist_starthist_endcomp_startprompt_lengthglobal_strTab_To_SpacesHistory_Add_Lineglobal_posglobal_endDisplay_HelpNew_CharCompletion_Print_AllSkipCompletion_Do_Matchcomp_last_matchcomp_first_matchHistory_Update_LineHistory_Get_Linehist_tblIs_A_Separatorctrl_c_ret_valcomp_nb_matchcomp_match_max_lgcomp_cur_matchuse_guiuse_ansifd_infd_outinitialized.0le_hook_present.1Parse_Env_VarChoose_Fd_OutLE_Get_Char0BackdForwdDisplEraseDispl_Strposnb_colsold_stty_inold_stty_outis_tty_inis_tty_outinterrupt_keynew_stty_outnb_rowsnew_stty_infrom_callbackret_valWrapper_Handlerctrl_c_handlerinside_ctrl_c_DYNAMIC__fini_array_end__fini_array_start__init_array_end_GLOBAL_OFFSET_TABLE___init_array_startX736B6970_1Fct_ShrX6765745F63686172_2Fd_Eq_2X24696E646F6D61696E5F6C696D6974735F616C74_0stm_debugger_inputWrite_1Wait_2Nth_Root_UpX72656E616D655F66696C65_2Remove_Stream_Mirror_2X2473686F775F6C65617368696E675F696E666F31_1X247573655F6F706572_0domain_socket_addressfd_domainX636861725F636F6465_2X242473725F74726561745F7465726D2F325F2461757832_4Write_Pl_State_FileX756E6765745F636F6465_2Vector_Sub_VectorFull_Coeff_Power_VarWrite_Canonical_To_Chars_2Math_Fast_Load_ValueX757365725F74696D65_1evluation_int_overflowFd_Tell_Int_RangeX2424636865636B5F73747265616D5F6F725F7661722F325F2461757831_1Fd_Reset_SolverX247573655F657870616E64_0X246C696E65735F746F5F636F6C756D6E73_2Read_Token_1Copy_Term_2X666F726D6174_3X246765745F7072656469636174655F66696C655F696E666F_3X24247265696E69745F61667465725F657863657074696F6E2F305F2461757831_0max_x_a_eq_z_FPrint_2atom_curly_bracketsFd_Lt_2quot_rem_x_y_r_eq_z_FX2463757272656E745F6F705F616C74_0X63616C6C5F776974685F61726773_10Os_Version_1Blt_Fd_VarRd_Number_CheckPut_Atom_TaggedInit_OperAdd_Stream_For_Stdio_DescX74656C6C_1X233C_2X6F6E6365_1X777269746571_2Fd_Element_V_To_Xipred_tblx_nand_y_eq_bX24636F6E73756C7431_1X247365745F73725F64656661756C7473_0Vector_Mod_ValueX242464656275675F63616C6C312F385F2461757831_3Blt_G_Dec_2Un_TermX235C5C3D23_2X2464656275675F69735F6E6F745F6C656173686564_1usleep@@GLIBC_2.0BC_Start_Emit_0mkdir@@GLIBC_2.0X6E6F6465627567_0Read_1Blt_Fast_GtX61746F6D5F70726F7065727479_2Blt_Ltefd_reset_solverttyname@@GLIBC_2.0X247465726D5F746F5F676F616C31_2Current_Predicate_Alt_0x2_eq_y_FX61746F6D5F6C656E677468_2cos@@GLIBC_2.0Fct_MinInit_PredX247465726D5F746F5F676F616C_3X6C6F7765725F7570706572_2X2424706F72747261795F636C617573652F325F2461757832_1X2464656275675F706F72745F6D61736B_2X66756E63746F72_3X6D656D626572_2Create_OperInit_Machine1Install_Ctrl_C_HandlerX7365745F6F7574707574_1type_listSwitch_On_Term_Var_AtmX6E65775F61746F6D_2Call_With_Args_4X2466645F73656C5F61727261795F66726F6D5F6C697374_2Mk_AtomVector_Next_BeforeX2464656275675F646973705F616C7465726E61746976657331_2SR_Get_File_Name_2Fct_AbsSys_Var_Dec_1X24657865632F355F2461757831_1Full_Var_Power_CoeffFd_Variable_Size0X247365746172675F696E5F6C6173745F666F756E64_2CutX73725F77726974655F6572726F72_6X2473725F64697265637469766531_2domain_not_less_than_zeroLE_Initializeexistence_source_sinkLoad_Call_Info_Arg_1X2463616C6C31_2X246C697374696E675F616C6C_1X73725F6765745F73747265616D_2X24246765745F726561645F6F7074696F6E73322F315F2461757831_1Read_Term_5File_Prop_Date_2def_trail_sizerename@@GLIBC_2.0X235C5C2F5C5C_2Put_Structure_TaggedX247573655F7772697465_0X242473746F72655F736F6C7574696F6E732F345F2461757831_3X24636F6E73756C7433_2Set_Predicate_File_Info_3Write_Term_2X726561645F746F6B656E_1Vector_ComplFd_Tell_Not_ValueOs_ErrorX2464656275675F7370795F7265736574_1Set_Debug_Call_Code_0X77726974655F746F5F61746F6D_2Aux_Name_1Exec_5atom_appenddomain_term_stream_or_aliasX2464656275675F6C6973745F6F665F70726564_2X756E6765745F62797465_1Mk_CharsX246765745F726561645F6F7074696F6E7331_1Check_For_Un_Compoundax_plus_by_eq_zDelete_Choice_Point1Unget_Char_1fd_unify_with_fd_varatom_falsenot_prime_xX247573655F736F636B657473_0LE_Compl_Add_WordVector_Add_VectorBlt_Fast_Ltx_lte_cInit_MachineTest_Alias_Not_Assigned_1X68616C74_1X66645F6D696E696D697A65_2X2466645F6D696E696D697A652F325F2461757831_5X246765745F6C6162656C696E675F6F7074696F6E7332_1X66645F616C6C5F646966666572656E74_1vsprintf@@GLIBC_2.0strchr@@GLIBC_2.0Fd_Unify_With_Fd_Var0Blt_UnivX756E6765745F636F6465_1truth_x_plus_c_lte_yX2424706F72747261795F636C617573652F325F2461757831_1Create_Atom_TaggedX63616C6C5F776974685F61726773_2X2472656D6F76655F756E64657273636F72655F76617273_2X646562756767696E67_0Rd_In_CharX756E6765745F63686172_1Fd_Variable_To_String0Unget_Code_2Blt_G_Readx_eq_y_FStream_PutsRd_Codes_StrX24246765745F726561645F6F7074696F6E73322F315F2461757832_1X24706C5F6572725F726570726573656E746174696F6E_1X6C6173745F726561645F73746172745F6C696E655F636F6C756D6E_2X24706C5F6572725F73796E746178_1X7075745F636F6465_1Range_Nb_ElemNth_Root_DnCurrent_Atom_Alt_0Pred_Prop_Public_1Atom_Property_6fdopen@@GLIBC_2.1Stream_PutcX6E6F737079_1X66645F6F6E6C795F6F6E65_1Unget_Char_2System_Time_1X233E23_2Name_Singleton_Vars_1X246765745F726561645F6F7074696F6E73_4X2463616C6C5F696E7465726E616C31_2X246C6F61645F70726564_2X706F72747261795F636C61757365_1Read_AtomX242477726974655F696E64696361746F722F305F2461757831_2Blt_Compoundpermission_type_past_end_of_streamSys_Var_Inc_1SR_Get_Stm_For_Read_Term_1X2477726974655F736F6C7574696F6E_3X24627265616B2F305F2461757831_1Write_Canonical_2Open_Output_Term_Stream_1Rd_Proper_ListStatistics_Global_Stack_2Get_Char_1alias_tblCurrent_Bip_Name_2Halt_1X2473747265616D5F70726F70657274792F325F2461757831_3Blt_G_Reset_BitX24247370795F746573745F636F6E646974696F6E2F335F2461757831_2X73725F7365745F6572726F725F636F756E74657273_3atan@@GLIBC_2.0X246C6F61645F66696C65_1Fct_Fast_SignX3D3A3D_2X737061776E_3X247365745F746F705F6C6576656C5F73747265616D73_2X7065656B5F62797465_1X7065656B5F636F6465_1Retractall_If_Empty_Head_1type_byteevluation_zero_divisorFind_Linked_ObjectsRead_Integer_1x_imply_y_eq_bDelete_Choice_Point3X726561645F7465726D_2X24706C5F6572725F696E7374616E74696174696F6E_0fd_init_solverX666F726D61745F746F5F61746F6D_3X66645F6C6162656C696E676666_1reg_tblM_Real_TimeFd_Unify_With_Integer0X72657665727365_2SR_Write_Message_8X746162_1atom_debugger_outputX247573655F66645F6F7074696D_0Malloc_CheckNth_Root_ExactX246765745F6C696E656469745F70726F6D7074_1X6E6F6E5F67656E657269635F766172_1X2424636F6E73756C74322F315F2461757831_2X24696E646F6D61696E5F72616E646F6D5F616C74_0getpid@@GLIBC_2.0X666F726D61745F746F5F636F646573_3X246D696E5F6C69737431_3Blt_NumberFatal_ErrorRange_Test_Null_InterRd_String_CheckOpen_Input_Term_Stream_2X246765745F636C6F73655F6F7074696F6E73_1Nl_1Rd_FloatFork_Prolog_1X2463617463685F696E7465726E616C31_5X2424636865636B5F686561642F315F2461757831_1X2463757272656E745F6D6972726F72_2X247573655F73746174_0__ctype_tolower_loc@@GLIBC_2.3domain_stream_positionCreate_Choice_Point3X2464656275675F63616C6C_2X246164645F636C617573655F7465726D_1init_stream_suppRange_ComplSR_Init_Open_2X242464656275675F657865635F636D642F365F2461757833_2Read_Number_1Un_In_CodeVector_UnionLE_Get_Current_WordX2473725F63757272656E745F64657363726970746F725F616C74_0atom_bofWrite_Term_To_Atom_2X66645F646F6D61696E_3X246D656D6265722F325F2461757831_3X66645F656C656D656E745F766172_3Put_NilX66645F6D6178_2Switch_On_Term_Var_StcX7365745F73747265616D5F6C696E655F636F6C756D6E_3X675F696E63_1Fct_Truncatelast_writingMath_Load_Valuele_hook_exit_processSet_Seed_1Hash_Alloc_TableX2463616C6C_4X66645F72656C6174696F6E_2X6F70656E5F696E7075745F636F6465735F73747265616D_2X247365745F73747265616D5F627566666572696E672F325F2461757831_1Stream_CloseFct_Fast_Ortype_fd_evaluablePut_X_VariableX247468726F77_4X24696E646F6D61696E5F6D61785F616C74_0X247365745F7072656469636174655F66696C655F696E666F_3stm_last_usedatom_streamX246765745F77726974655F6F7074696F6E73_1x_equiv_y_eq_brepresentation_min_integerFd_Stop_ConstraintX66645F63617264696E616C697479_2X736F7274_1Reset_PrologUn_Boolean_Checktype_evaluableRange_From_VectorX2472657472616374_2domain_stream_propertyRd_In_CodeRange_Div_ValueFct_Fast_DecSys_Var_Get_Bit_3X776F726B696E675F6469726563746F7279_1Blt_G_AssignbM_Create_Shell_CommandRead_Token_From_Atom_2Un_Code_CheckX6C696E655F636F756E74_2X72616E646F6D_3Argument_List_1write@@GLIBC_2.0X2424636F6E73756C74322F315F2461757832_2localtime@@GLIBC_2.0Scan_Peek_CharX2462635F656D756C6174655F636F6E74_0Flush_Output_1Update_Water_MarkFct_SignX24246765745F77726974655F6F7074696F6E73322F315F2461757833_1Pred_Prop_User_1X2464656275675F726561645F636D64_1X242466645F6C6162656C696E672F325F2461757832_1Exit_With_Exceptionfileno@@GLIBC_2.0X403E3D_2Set_Stream_Eof_Action_2Statistics_Trail_Stack_2Op_3X66645F6D6178696D697A65_2X5C5C3D3D_2SR_Get_Position_3X7365745F73747265616D5F627566666572696E67_2X6370755F74696D65_1X2424636865636B5F6F776E65725F66696C65732F335F2461757831_6strcmp@@GLIBC_2.0X6F70656E5F6F75747075745F61746F6D5F73747265616D_1Choice_Point_Info_4Fd_ExactlySet_Stream_Buffering_2stm_tblCurrent_Stream_1representation_character_codeX24657870616E645F7465726D31_2X726561645F66726F6D5F61746F6D_2base_fdX24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757831_1use_le_promptFd_Prolog_To_ValueSwitch_On_Term_Var_Atm_LstX666F72_3X246361746368_6X2473725F6765745F666F726D61745F617267735F6572726F72_6last_output_soraStore_Solution_1close@@GLIBC_2.0asin@@GLIBC_2.0Range_Mul_ValueFd_Check_For_Bool_Varx_plus_c_lte_yFd_Math_Unify_X_YX2466645F6C6162656C696E675F737464_2Fd_Tell_Interv_IntervStream_Getc_fp_hwPeek_Char_2fd_domain_rRead_Term_From_Codes_5byte_codeFd_Sel_Array_From_List_2X24246765745F73725F6F7074696F6E73322F315F2461757832_1Unify_IntegerCheck_Stream_TypeX246861735F6E6F5F7370795F706F696E74_1X246C6F61645F6469726563746976655F657863657074696F6E_3Fd_Element_V_To_IX6E756D6265725F6368617273_2Fd_Element_Var_V_To_IX66645F61746C65617374_3Read_IntegerFd_Element_I_To_VX242464656275675F6C6973745F6F665F70726564312F345F2461757831_4Rd_Chars_Checkatom_lineX242464656275675F657865635F636D642F365F2461757836_1X6E616D655F73696E676C65746F6E5F76617273_1X73725F6765745F6D6F64756C65_3Rd_In_Char_CheckX246765745F6F70656E5F6F7074696F6E7332_1X73756D5F6C697374_2permission_type_streamSleep_1X247573655F675F7661725F696E6C_0SR_Current_Descriptor_1X2463757272656E745F7072656469636174655F616E79_1fprintf@@GLIBC_2.0X2473725F6572726F725F66726F6D5F657863657074696F6E_2fork@@GLIBC_2.0M_TempnamX246765745F73725F6F7074696F6E7331_1Unify_Structure_TaggedFct_Fast_NegDelete_Choice_Point4Father_Pred_Of_Auxgetenv@@GLIBC_2.0M_Random_FloatX63757272656E745F61746F6D_1X6765745F73656564_1X6B6579736F7274_1signal@@GLIBC_2.0X6765745F6C696E656469745F70726F6D7074_1Fd_New_Variablefmod@@GLIBC_2.0Range_Becomes_SparseRd_Float_CheckFct_Fast_IncX2464656275675F7370795F736574_2fd_variable_to_stringX246765745F636C6F73655F6F7074696F6E7332_1Atom_Length_2Fd_Use_Vectorfflush@@GLIBC_2.0X247573655F636F6E73756C74_0Stream_Prop_Type_2domain_g_argument_selectorBlt_G_Inc_2X247365745F71756572795F766172735F6E616D6573_2pclose@@GLIBC_2.1SR_Get_Error_Counters_3X2473725F726561645F7465726D2F345F2461757832_2Display_To_Atom_2Range_Mul_RangeX2473725F6E65775F706173732F315F2461757831_1Write_SimpleRead_Atom_2X233D3C23_2Fct_CeilingX7075745F62797465_2X6C697374696E67_1Call_Info_Bip_Name_1X247573655F666C6167_0X24247468726F775F696E7465726E616C2F325F2461757831_2X247573655F747970655F696E6C_0Blt_G_LinkMk_In_CharX403C_2Get_Predicate_File_Info_3Bind_Variables_4Fd_Before_Add_CstrGet_Pred_Indic_3Range_Next_Beforequot_rem_x_a_r_eq_z_FFct_AddFd_Element_IX247573655F63616C6C_0mallopt@@GLIBC_2.0X24746F705F6C6576656C31_0ax_plus_by_eq_z_FX686F73745F6E616D65_1Pl_Err_Instantiationunlink@@GLIBC_2.0Pred_Prop_Built_In_Fd_1Decompose_File_Name_4Fd_Init_Solver0M_Cmd_Line_To_Argvdomain_source_sinkX63757272656E745F707265646963617465_1Un_AtomFd_Init_SolverX617267756D656E745F636F756E746572_1X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757832_1Current_Stream_Alt_0X247365745F73747265616D5F747970652F325F2461757832_2X66645F72656C6174696F6E63_2Arith_Eval_2Fd_Prolog_To_Fd_Vargetrusage@@GLIBC_2.0Delete_File_1X636F6D70617265_3Name_2Mk_ListRd_CodeAtom_Concat_Alt_0X2462635F656D6974_1X24246765745F6F70656E5F6F7074696F6E73322F315F2461757835_1X24636865636B5F61746F6D5F6F725F61746F6D5F6C69737431_1X247573655F63616C6C5F61726773_0X6173736572747A_1X247573655F66696C65_0Current_Alias_2X246C6F616432_1Stream_Prop_Buffering_2X242464656275675F6C6973745F6F665F70726564312F345F2461757832_5Update_Choice_Point3X2473725F6572726F725F66726F6D5F657863657074696F6E2F325F2461757831_1Set_Stream_Position_2Un_Byte_CheckX3D3D_2Retract_2fd_exactlyle_initializeX66645F7573655F766563746F72_1X68616C74_0X6765745F6B6579_1X77726974655F63616E6F6E6963616C5F746F5F61746F6D_2X247365656E2F305F2461757831_1X2467726F75705F736F6C7574696F6E73_3X24246765745F73725F6F7074696F6E73322F315F2461757833_1X73725F6E65775F70617373_1X6F735F76657273696F6E_1BC_Start_Pred_7X24246C6F6164322F315F2461757832_2Check_For_Un_BooleanX247265696E69745F61667465725F657863657074696F6E_0permission_operation_openLast_Read_Start_Line_Column_2Mk_VariableX24737079706F696E745F636F6E646974696F6E31_3x_imply_y_eq_1X63616C6C5F776974685F61726773_5Stream_UngetcUn_Float_CheckMk_In_ByteStream_Position_2Writeq_1Remove_One_Choice_Point_1select@@GLIBC_2.0type_fd_variableVector_From_IntervalX756E6765745F62797465_2X247573655F66645F6D617468_0X24247465726D5F746F5F676F616C322F325F2461757831_3Line_Position_2X7465726D5F726566_2Mk_NumberLower_Upper_2x_plus_y_plus_z_eq_t_FPred_Without_AuxX235C5C_1query_exceptionX24246C6F61645F66696C652F315F2461757831_3Pl_Err_SyntaxX6D616B655F6469726563746F7279_1Remove_Predicate_2wmark_countX72657472616374_1X77726974655F746F5F6368617273_2domain_socket_domainBlt_G_Dec_3x_and_y_eq_bUn_IntegerSqrt_UpAllocateX24696E646F6D61696E_2File_Permission_2vsnprintf@@GLIBC_2.0X24246765745F77726974655F6F7074696F6E73322F315F2461757834_1X246765745F6C6162656C696E675F6F7074696F6E7331_1strerror@@GLIBC_2.0X707574_1Execute_DirectiveCpu_Time_1Term_Math_LoadingBC_Emit_Inst_1Check_For_Un_NumberFct_Fast_Shr__dso_handleStream_Get_PositionCheck_For_Un_AtomRd_Code_Checkrepresentation_max_integerX247573655F66645F696E666F73_0Set_Linedit_Prompt_1Stream_Prop_Input_1x_plus_y_eq_z_FGlobal_Push_FloatHash_DeletePut_Integer_TaggedCall_With_Args_3SR_Current_Descriptor_Alt_0X636C6F73655F696E7075745F636F6465735F73747265616D_1Fd_New_Bool_VariableX706F72747261795F636C61757365_2Call_With_Args_9truth_x_gte_cBlt_G_Decobase_flX246164645F6D6972726F72735F746F5F73747265616D_2X2472656D6F76655F707265646963617465_2X63757272656E745F636861725F636F6E76657273696F6E_2mmap@@GLIBC_2.0X24636865636B5F61746F6D5F70726F70_1X6E6F737079616C6C_0Check_For_Un_VariableUnify_Occurs_Check__libc_csu_finiX2461746F6D5F636F6E6361745F616C74_0Fd_After_Add_CstrSet_Prolog_Flag_2Reassign_AliasCheck_For_Un_CharX61746F6D5F636F6E636174_3X24706C5F6572725F646F6D61696E_2Call_PrologX2473747265616D5F706F736974696F6E_2Get_Key_2X246765742F315F2461757831_2tcsetattr@@GLIBC_2.0Add_Stream_For_Stdio_Filepermission_type_flagobj_chain_beginArgument_Counter_1Pred_Prop_Prolog_Line_2Sys_Var_Write_2X2474656C6C2F315F2461757831_2Blt_Generic_VarFct_Fast_NotPut_Unsafe_Valuesetlocale@@GLIBC_2.0wmarkX2466645F6C6162656C696E6731_4query_top_bX66645F6861735F65787472615F63737472_1X2473725F7365745F74726561745F706173735F62697473_3X73656C656374_3Extend_Table_If_NeededX242464656275675F706F72745F70726F6D70742F365F2461757831_5X70726F6C6F675F706964_1X2467726F75705F736F6C7574696F6E735F616C74_0X6469726563746F72795F66696C6573_2X2464656275675F646973705F616C74_2X242464656275675F657865635F636D642F365F2461757835_3X61745F656E645F6F665F73747265616D_0X2473686F775F7370795F706F696E7473_0Fct_ShlX24746F705F6C6576656C5F657863657074696F6E_1Hash_Realloc_Tabledomain_operator_priorityX686F73746E616D655F61646472657373_2Fd_New_Int_VariableFree_Variables_4X2473686F775F64656275676765725F6D6F646531_1X247365745F73747265616D5F627566666572696E672F325F2461757832_2Fd_Neq_2X676574_1representation_in_character_codeProlog_File_Name_2X2473746174_3Fd_Add_Dependencybuff_signal_regtruth_x_neq_y_FUn_Compound_CheckX73725F77726974655F6D657373616765_8X242473725F74726561745F7465726D2F325F2461757833_2Un_Atom_CheckTerm_Write_Str_StreamX2466645F63617264696E616C69747931_2Make_Stream_Tagged_WordX246661746865725F6F665F6175785F6E616D65_3Scan_Choice_Point_PredWrite_2X7365745F6269705F6E616D65_2X2464656275675F646973705F616C7431_3Fct_Float_DivX242463617463685F73796E635F666F725F6661696C5F61742F315F2461757831_2X247573655F7072696E74_0unify_x_y__errno_location@@GLIBC_2.0pow@@GLIBC_2.0quot_rem_x_y_r_eq_zWrite_A_CharX2466696C655F70726F70_2environ@@GLIBC_2.0X726561645F61746F6D_1xy_eq_z_Fexistence_streamresource_too_big_fd_constraintX246D616B655F6175785F6E616D65_4X2473686F775F64656275676765725F6D6F6465_0X6F70656E5F6F75747075745F636F6465735F73747265616D_1Check_For_Un_CodesX6E65775F61746F6D_1X63757272656E745F6D6972726F72_2X242477726974655F736F6C7574696F6E2F335F2461757831_2x2_eq_yGet_Stream_Or_AliasIndomain_Middle_Alt_0X7265616C5F74696D65_1X24627265616B2F305F2461757832_1Find_Next_AtomUpdate_Dynamic_PredVector_Next_AfterHostname_Address_2BC_Emulate_Cont_0X707265666978_2X63757272656E745F6F7574707574_1Fd_Has_Vector_1ftell@@GLIBC_2.0SR_Write_Message_6max_x_y_eq_zList_LengthX246F7032_3X2473725F6F70656E2F335F2461757831_1Shell_2SR_Get_Include_List_2X6765745F6B65795F6E6F5F6563686F_2Stdio_Is_RepositionableX246463675F7472616E735F72756C65_2X2464656275675F706F7274_5X233C3D3E_2Consult_2Blt_G_Array_Sizerepresentation_characterWrite_Canonical_To_Codes_2X24696E646F6D61696E5F6D6964646C655F616C74_0System_2domain_non_empty_listRange_UnionWriteq_2domain_g_array_indexFd_Use_Vector_1accept@@GLIBC_2.0gethostbyaddr@@GLIBC_2.0Random_1Blt_Eqsystem@@GLIBC_2.0zero_power_n_eq_yX247379735F7661725F7365745F626974_2X242466696E645F6578697374696E675F73747265616D2F335F2461757831_3X675F696E63_2Read_Number_2Mk_Callabledomain_read_optionX247573655F617373657274_0LE_Is_Interrupt_KeyX2473725F73746F705F6D6F64756C65_3X66645F61745F6C656173745F6F6E65_1X2463757272656E745F616C6961732F325F2461757831_2X247379735F7661725F72656164_2Set_Current_B_1Get_IntegerX63757272656E745F70726F6C6F675F666C6167_2X247573655F736F7274_0SR_Get_Size_Counters_3X2464656275675F726561645F696E7465676572_1X66645F646F6D61696E5F626F6F6C_1Blt_AtomX247573655F7465726D5F696E6C_0access@@GLIBC_2.0Prolog_Pid_1X736F636B6574_2X72656D6F76655F73747265616D5F6D6972726F72_2Stream_Flushsetvbuf@@GLIBC_2.0X73725F6765745F696E636C7564655F73747265616D5F6C697374_2X246765745F73725F6F7074696F6E7332_1X242464656275675F657865635F636D642F365F2461757837_3Put_Byte_2os_argcWriteq_To_Chars_2X233E3D_2Rd_Chars_Strinet_ntoa@@GLIBC_2.0Pl_Err_SystemWrite_To_Codes_2X63757272656E745F73747265616D_1X2461726974685F6576616C_2LE_Compl_Find_Matchdomain_streamX7075745F63686172_2X3E3D_2Current_Op_3M_Set_SeedX6F70656E5F6F75747075745F63686172735F73747265616D_1X63616C6C_2Blt_CallableX66645F6C6162656C696E67_1Pred_Prop_Dynamic_1Load_Cut_LevelChange_Directory_1Sys_Var_Get_2type_floatputs@@GLIBC_2.0X24636865636B5F73747265616D5F6F725F766172_2le_promptSelect_5Term_Compare_initX6E6C_1X5C5C3D_2X2466645F656C656D656E74_3Setarg_Of_Last_Found_2X247573655F73747265616D_0popen@@GLIBC_2.1X247573655F756E696679_0Current_Mirror_2truth_x_plus_c_neq_y_FRd_Positive_CheckCreate_Pipe_2X246462675F696E64696361746F72_2Call_CompiledX247379735F7661725F707574_2Switch_On_AtomX2462635F73746F705F656D6974_0X6261676F66_3Write_Term_To_Chars_2x_neq_cX24657865635F636D645F657272_2X2466645F73656C5F61727261795F7069636B5F766172_4Architecture_1listen@@GLIBC_2.0X74656C6C696E67_1Current_Output_1Unlink_1stk_tblX706F70656E_3Print_To_Codes_2Indomain_Random_Alt_0permission_type_static_procedureCreate_Choice_Point1X73725F6368616E67655F6F7074696F6E73_2X247573655F7468726F77_0X7365745F73747265616D5F656F665F616374696F6E_2X7065656B5F62797465_2nb_atomX675F61737369676E_2type_compoundX2473725F657865635F646972656374697665_2Seek_4ax_plus_y_eq_zScan_Next_Atomstm_top_level_inputX736C656570_1Get_Atomx_nequiv_y_eq_bmalloc@@GLIBC_2.0type_predicate_indicatorX726561645F706C5F73746174655F66696C65_1X7072696E745F746F5F61746F6D_2X24246765745F6F70656E5F6F7074696F6E73322F315F2461757836_1X6E65775F61746F6D_3last_read_lineFct_MulX5C5C2B_1Random_3X246C6F61642F315F2461757831_1X242464656275675F657865635F636D642F365F2461757834_2Socket_Accept_4Call_With_Args_6Pl_Err_Existencedomain_prolog_flagX646973706C6179_2X2473756D5F6C69737431_3X3D3C_2Range_InterRename_File_2glob_buffX247465726D5F746F5F676F616C32_2domain_selectable_itemX7065656B5F63686172_2X246765745F77726974655F6F7074696F6E7332_1Rd_List_CheckX24696E7374616E63655F666F725F736574617267_2debug_call_codeDate_Time_1Fct_IdentityX737079706F696E745F636F6E646974696F6E_3X73725F726561645F7465726D_4X63757272656E745F616C696173_2X61745F656E645F6F665F73747265616D_1abs_x_minus_y_eq_z_FCreate_Water_MarkX24657865635F636D645F6C696E655F656E7472795F676F616C73_1X242464656275675F657865635F636D642F365F2461757832_1Vector_Mul_Vectorabs_x_minus_a_eq_z_FDelete_Predatom_user_inputmunmap@@GLIBC_2.0M_Get_StatusFct_MaxRetract_Last_Found_0X746F6C64_0X6368616E67655F6469726563746F7279_1prime_xRd_Integer_CheckX77726974655F7465726D5F746F5F6368617273_3Blt_VarFind_Stream_By_Aliaspermission_type_private_procedureX247365745F6C696E656469745F70726F6D7074_1X24726561645F72657475726E_1pipe@@GLIBC_2.0not_x_eq_bGroup_Solutions_3Setarg_4Blt_Functorx_and_y_eq_0Get_Integer_TaggedUnify_ListX24617373657274_3X246765745F6C6162656C696E675F6F7074696F6E73_2X737061776E_2Rd_Charax_plus_by_plus_z_eq_t_FX7772697465715F746F5F6368617273_2Un_BooleanX646973706C6179_1X2477726974655F736F6C7574696F6E31_1fread@@GLIBC_2.0Check_For_Un_CharsRd_Compoundquot_rem_a_y_r_eq_zLE_FGetsGet_ListX77726974655F7465726D5F746F5F61746F6D_3Rd_ByteAtom_Chars_2clearerr@@GLIBC_2.0X617267_3Keep_Rest_For_PrologStatistics_Real_Time_2At_End_Of_Stream_0X2473725F6F705F74797065_2X766172_1X2462635F656D69745F696E7374_1M_Absolute_Path_NameCurrent_Predicate_2Extra_Cstr_Alt_0Fd_Reset_Solver0X63616C6C5F776974685F61726773_8X246F702F335F2461757831_3X656E7669726F6E_2X247573655F666F726D6174_0Create_Swt_Stc_ElementCreate_Swt_Atm_ElementX6E756D6265725F76617273_0Put_Y_Variableatom_textwmpX242463616C6C5F696E7465726E616C5F6F722F345F2461757831_6X3D5C5C3D_2Un_NumberX746F705F6C6576656C_0X6C6973745F6F725F7061727469616C5F6C697374_1X72656164_2X63616C6C61626C65_1X242464656275675F646973705F616C74312F335F2461757832_3Host_Name_1X77726974655F7465726D_2x_power_a_eq_yX246D656D62657263686B2F325F2461757831_4X246164645F616C69617365735F746F5F73747265616D_2Atom_Hash_2X2463757272656E745F61746F6D_1Character_Count_2X2424737461742F335F2461757831_2Call_With_Args_5Reset_Debug_Call_Code_0rint@@GLIBC_2.0X657870616E645F7465726D_2X2464656275675F646973705F616E635F6C7374_1X242464656275675F6C6973745F6F665F70726564312F345F2461757833_4X247370795F746573745F636F6E646974696F6E_3LE_Get_Current_Positionfixed_sizesX6164645F73747265616D5F6D6972726F72_2X247072656469636174655F70726F70657274795F616E79_2X73725F63757272656E745F64657363726970746F72_1Switch_On_Structureatom_atX6E6F6E766172_1X24246765745F73725F6F7074696F6E73322F315F2461757834_1Indomain_Limits_Alt_0Name_Query_Vars_2X66645F61745F6D6F73745F6F6E65_1X247573655F72656164_0X7772697465_2X6E756D62657276617273_1X247375625F61746F6D5F616C74_0Recover_Solutions_2X726561645F746F6B656E5F66726F6D5F636F646573_2Add_StreamX726561645F66726F6D5F636F646573_2X6765745F6B6579_2X246765745F726561645F6F7074696F6E7332_1Range_Add_ValueX247365745F73747265616D5F747970652F325F2461757831_1X2464656275675F6C6973745F6F665F7072656431_4Un_Chars_CheckLE_Close_TerminalBlt_Term_GtFd_Domain_3X6465636F6D706F73655F66696C655F6E616D65_4X63757272656E745F696E707574_1Peek_Code_1le_hook_set_line_bufferingpermission_type_binary_streamstm_tbl_sizeX2473725F77726974655F6572726F722F365F2461757831_4X666C7573685F6F7574707574_1stdout@@GLIBC_2.0Current_Prolog_Flag_Alt_0Fd_Tell_Valuestderr@@GLIBC_2.0Blt_G_Set_BitX2424746F705F6C6576656C322F305F2461757835_1def_local_sizeRead_TokenCheck_For_Un_In_ByteUnify_Integer_TaggedDelete_Choice_Point2X24706C5F6572725F7265736F75726365_1truth_x_plus_c_eq_y_FX66645F7072696D65_1Indomain_Max_Alt_0X66645F61746D6F7374_3Indomain_Min_Alt_0SR_Get_Stm_2Fct_AndX247573655F616C6C5F736F6C7574_0Delete_Directory_1X666F726B5F70726F6C6F67_1atom_repositionX24246765745F6F70656E5F6F7074696F6E73322F315F2461757834_1Rd_PositiveBlt_Fast_LteGet_Floatdomain_flag_valueX2461746F6D5F70726F706572747932_7Fct_Powmprotect@@GLIBC_2.0Close_StmX2465787472615F637374725F616C74_0X636C6F7365_1Read_Termle_hook_backdX73725F77726974655F6D657373616765_4X77726974655F706C5F73746174655F66696C65_1X73746F70_0le_hook_forwdMk_PositiveUn_CodesUn_In_Byte_Checkstm_debugger_outputX246261676F66_4Blt_NeqX63616C6C5F776974685F61726773_6X242463617463685F696E7465726E616C312F355F2461757831_3File_Prop_Real_File_Name_2Unget_Code_1min_x_y_eq_z_FX6E6F7472616365_0SR_Change_Options_0atom_eofRange_Div_RangeX2463757272656E745F616C6961735F616C74_0__xstat@@GLIBC_2.0X617070656E64_1Fd_Prolog_To_Array_IntX6F70656E_3Fct_LogX77726974655F63616E6F6E6963616C5F746F5F636F646573_2Un_In_ByteDelete_Choice_PointEnviron_2X675F72656164_2getpagesize@@GLIBC_2.0For_Alt_0X2463616C6C5F696E7465726E616C5F776974685F637574_3type_atomSend_Signal_2X247379735F7661725F646563_1X726561645F61746F6D_2X6765745F7072696E745F73747265616D_1X706872617365_3Prop_And_Stdio_Modeexecv@@GLIBC_2.0inet_aton@@GLIBC_2.0For_3X247573655F636F6E74726F6C_0Fd_Max_2X2461746F6D5F70726F70657274795F616E79_2Get_Pred_IndicatorX66645F6D696E_2Init_AtomDATEDisplay_To_Codes_2X777269746571_1X247072656469636174655F70726F706572747931_2stm_stdoutX6C697374696E67_0Vector_Div_VectorFormat_To_Atom_3X24636865636B5F73747265616D5F70726F70_1Read_Term_4Define_Math_Bip_2Update_Choice_PointStream_Prop_End_Of_Stream_2X2464656275675F63616C6C5F706F7274_5LE_Set_SeparatorsX627265616B_0abs_x_minus_a_eq_zAdd_Stream_Alias_2domain_write_optionX2462635F73746172745F70726564_7fseek@@GLIBC_2.0waitpid@@GLIBC_2.0x_lte_yX675F61727261795F73697A65_2X61737365727461_1Check_For_Un_CallableX247573655F616C6C5F66645F62697073_0X2463757272656E745F6D6972726F725F616C74_0X73797374656D_1X24726561645F7175657279_2Fct_Fast_DivRd_AtomX247573655F70726564_0Statistics_System_Time_2X24726561645F7465726D_3Abolish_1Fct_NotScan_Dynamic_PredSR_EOF_Reached_1Read_Integer_2Un_FloatTreat_Vars_Of_TermX646973706C61795F746F5F61746F6D_2Read_From_Codes_2Get_Byte_1Un_Callable_CheckFlush_Output_0Pred_Prop_Native_Code_1X24657865635F636D645F6C696E655F676F616C_1X6D696E5F6C697374_2ax_plus_y_plus_z_eq_tX7061727469616C5F6C697374_1X24706C5F6572726F72_1time@@GLIBC_2.0X7772697465_1X726561645F746F6B656E5F66726F6D5F61746F6D_2Check_For_Un_CodeGet_Seed_1X6E756D6265725F61746F6D_2X2323_2X2464656275675F657863657074696F6E5F706F7274_5X2464656275675F77726974655F676F616C_4X66645F6E6F745F7072696D65_1Fct_Fast_AddX636C6F73655F6F75747075745F636F6465735F73747265616D_2Un_In_Char_CheckUn_StringFull_Var_Power_2X235C5C3D_2Pl_Err_Evaluation_startVector_Nb_Elemle_hook_ins_modeX24246765745F77726974655F6F7074696F6E73322F315F2461757831_1X247573655F61746F6D_0x_gte_cUn_ListX247379735F7661725F676574_2Stream_GetsX2424746F705F6C6576656C322F305F2461757831_2Un_Positivex_nor_y_eq_bBlt_Fast_NeqObtain_FloatX636C6F73655F696E7075745F61746F6D5F73747265616D_1X246E746831_3SR_Is_Bit_Set_1Spawn_3Vector_Ith_ElemX636C6F73655F6F75747075745F61746F6D5F73747265616D_2Blt_Term_LteX24706C5F6572725F7065726D697373696F6E_3M_Host_Name_From_NameX247573655F72616E646F6D_0Lookup_PredFct_SqrtPrint_To_Atom_2Number_Chars_2X6E756D6265725F636F646573_2X242464656275675F7370795F72657365742F315F2461757831_3le_hook_flushdomain_stream_optionBlt_IntegerX24636865636B5F737461745F6B6579_1SR_New_Pass_1Pl_Err_PermissionRange_Add_Rangeevluation_undefinedRead_Atom_1Create_Choice_PointDebug_WamX246765745F62696E645F7661726961626C65735F6F7074696F6E7331_1X66645F7365745F766563746F725F6D6178_1Gen_New_AtomWrite_Canonical_1X2463757272656E745F7072656469636174655F616C74_0le_hook_put_charFind_Expon_DnX2424657865635F71756572792F325F2461757832_2X247072656469636174655F70726F706572747932_2Find_Atomdef_cstr_sizeX66645F63617264696E616C697479_3X24636865636B5F66696C655F70726F70_1X245C5C2B2F315F2461757831_1le_hook_startPut_Code_1chdir@@GLIBC_2.0Scan_Choice_Point_Info_3M_Allocate_StacksVector_CopyX61746F6D5F68617368_2X77726974655F746F5F636F646573_2X77726974655F7465726D_3Throw_2pi_name_wordSet_Stream_BufferingX66645F6D61785F696E7465676572_1Fct_Fast_AndX737079_1LE_Get_Prompt_LengthSort_List_2Check_Prop_Perm_And_File_2Pl_Err_DomainBlt_List_Or_Partial_ListX6C656E677468_2X24706C5F6572725F6578697374656E6365_2Make_Aux_NameX2424636865636B5F707265645F747970652F335F2461757831_4File_Exists_1le_hook_confirm_boxUpdate_Choice_Point1Socket_Close_1X6E756D626572_1LE_Get_Ctrl_C_Return_Valuestrstr@@GLIBC_2.0permission_type_source_sinkstrlen@@GLIBC_2.0X247365745F63757272656E745F42_1longjmp@@GLIBC_2.0X72657472616374616C6C_1permission_operation_outputX24706C5F6572725F73797374656D_1Rd_Atom_CheckX73797374656D5F74696D65_1SR_Write_Message_4From_Alias_To_Stream_2X2464656275675F646973705F616C7432_1X2463616C6C2F325F2461757831_1X24246C6F61645F707265642F325F2461757831_3LE_Get_Charsigaddset@@GLIBC_2.0Rd_BooleanX233D3C_2obj_chain_endle_hook_get_line_bufferingAdd_Linedit_Completion_1Set_Stream_Line_Column_3Assert_4X2466645F63617264696E616C697479_2X24636F6E73756C742F315F2461757831_1X6F70656E_4X6D61785F6C697374_2type_atomicSet_Heap_Actual_Startle_hook_screen_sizePut_FloatX2466645F6D6178696D697A652F325F2461757831_6Term_SizeX66645F766172_1X706872617365_2X6D656D62657263686B_2Atom_Codes_2Range_Copy__lxstat@@GLIBC_2.0X636C61757365_2Pred_Prop_Private_1X66645F766563746F725F6D6178_1X246765745F6F70656E5F73746D_2Fct_Float_Fract_PartX73747265616D5F706F736974696F6E_2Put_Char_1atom_noneX6765745F6B65795F6E6F5F6563686F_1UnifyX246F70656E_4X73747265616D5F6C696E655F636F6C756D6E_3X246F7031_3Least_Significant_BitX2464656275675F656E645F63616C6C_6uname@@GLIBC_2.0oper_tblX2466696E645F6578697374696E675F73747265616D_3Fct_Xoratom_blockUn_Positive_Check__strtol_internal@@GLIBC_2.0Current_Char_Conversion_2Blt_Partial_ListX61746F6D5F6368617273_2X242464656275675F646973705F616C74312F335F2461757831_2qsort@@GLIBC_2.0Statistics_Cstr_Stack_2X242473725F646972656374697665312F325F2461757832_2X666C7573685F6F7574707574_0x_plus_y_plus_z_eq_tHash_Nb_ElementsMk_IntegerX2424737079706F696E745F636F6E646974696F6E312F335F2461757831_5X24246261676F662F345F2461757831_2X6164645F6C696E656469745F636F6D706C6574696F6E_1BC_Stop_Emit_0Rd_CodesX2473725F74726561745F706173735F6E6F_3Number_Atom_2M_Random_IntegerX24706872617365_4X73725F6765745F66696C655F6E616D65_2X61746F6D6963_1domain_date_timeX2474727574685F6F66_2X2461746F6D5F70726F706572747931_2Fct_ModDisplay_To_Chars_2X2463617463685F73796E635F666F725F6661696C5F6174_1Close_1LE_Get_Separatorsevluation_float_overflowX7375625F61746F6D_5X726570656174_0Make_Aux_Name_4representation_max_arityX233E_2X736F636B65745F616363657074_4X7072696E745F746F5F636F646573_2last_input_soraX736F636B65745F636C6F7365_1Mk_CharFd_Set_Full_Ac_Flag_1Fd_Has_Extra_Cstr_1X6164645F73747265616D5F616C696173_2LE_GetsRange_Ith_ElemX24746F6C642F305F2461757831_1xy_eq_zX246164645F636C617573655F7465726D5F616E645F6263_2X675F61737369676E62_2x_plus_y_eq_zX67657430_1Find_Expon_UpX2473746F72655F736F6C7574696F6E73_4X24246C6F61645F707265642F325F2461757832_3Lookup_Operexecvp@@GLIBC_2.0X24636865636B5F707265645F74797065_3X247265766572736531_3le_hook_emit_beepGet_StructureX636861725F636F6E76657273696F6E_2tzset@@GLIBC_2.0Find_Linedit_Completion_2X675F7365745F626974_2Stream_Prop_Mode_2X24246C6F6164322F315F2461757831_3X61746F6D_1X736F7274_2X246765745F6F70656E5F6F7074696F6E7331_1Execute_A_ContinuationBlt_G_AssignSet_Stream_Type_2Stream_PeekcX2463616C6C2F325F2461757832_3char_convX2466645F6C6162656C696E675F6D7468_4X2464656275675F7377697463685F6F6666_0setlinebuf@@GLIBC_2.0X6E616D655F71756572795F76617273_2X246765745F73725F6F7074696F6E73_2X7065656B5F63686172_1x_plus_c_eq_y_FM_Get_Working_Diratom_notX242473725F646972656374697665312F325F2461757831_4m_os_versionX246175785F6E616D65_1max_x_y_eq_z_FX246D616B655F6C697374_2Update_Choice_Point4X64656C657465_3atom_currentX7772697465715F746F5F61746F6D_2Choice_Point_Arg_3Fct_Fast_XorX2477726974655F696E64696361746F72_0sigprocmask@@GLIBC_2.0X246C697374696E675F6F6E65_1Get_Code_2Range_Mod_Valueatom_eof_codeX242464656275675F63616C6C2F325F2461757831_2strncmp@@GLIBC_2.0X242473725F73746F705F6D6F64756C652F335F2461757831_2Popen_3Fct_OrFct_Fast_ShlX24636865636B5F61746F6D5F6F725F61746F6D5F6C697374_1X66696E64616C6C_3Get_Current_B_1atom_resetX7075745F63686172_1Fd_Copy_Variable0DeallocateSR_Open_File_2X2464656275675F646973705F616C7465726E617469766573_2X6C617374_2Stream_Prop_Eof_Action_2last_read_colX7365745F73747265616D5F74797065_2Clause_3fputc@@GLIBC_2.0User_Time_1__libc_csu_initTemporary_Name_2truth_x_eq_yvec_max_integerNumber_Codes_2X247573655F66645F626F6F6C_0Working_Directory_1X242463617463685F615F7468726F772F355F2461757831_2Mk_In_CodeRd_Byte_CheckVector_Div_ValueBlt_Fast_Eqstm_inputX242473725F73746172745F6D6F64756C652F335F2461757831_2X2473725F74726561745F7465726D_2X74656D706F726172795F6E616D65_2Unget_Byte_2X6765745F63686172_1Set_Output_1X7365745F696E707574_1Fd_Display_Extra_CstrX737566666978_2X24246765745F6F70656E5F6F7074696F6E73322F315F2461757832_1Argument_Value_2Char_Code_2Unify_ValueX2424746F705F6C6576656C322F305F2461757833_3X247573655F616C6C5F706C5F62697073_0Write_TermX247573655F66645F73796D626F6C6963_0Add_Dynamic_ClauseSR_Add_Directive_7type_character__bss_startUnify_Local_ValueX242464656275675F7370795F7365742F325F2461757831_3X63616C6C5F776974685F61726773_1Assoc_Socket_Streams_3Write_Term_To_Codes_2Stream_Prop_Output_1Mk_BooleanX6765745F636F6465_2mainTry_Execute_Top_LevelM_Set_Working_DirRead_Token_2Check_For_Un_ListVector_EmptyUn_List_CheckX246E756D6265725F766172732F305F2461757831_1X7075745F636F6465_2Statistics_Cpu_Time_2X636F6D706F756E64_1X2466645F72656C6174696F6E6331_3Set_Top_Level_Streams_2X233C23_2X7072696E74_1Pred_Without_Aux_4Rd_In_ByteX646973706C61795F746F5F636F646573_2type_in_characterSyntax_Error_Info_4X2463757272656E745F707265646963617465_1type_variableFct_Fast_Moddomain_operator_specifierX24707265645F776974686F75745F617578_4X63616C6C5F776974685F61726773_11X233E3D23_2Socket_Bind_2Switch_On_Term_Var_Atm_StcX247573655F6465633130696F_0os_argvX77726974655F63616E6F6E6963616C_2domain_format_control_sequencea_power_n_eq_yHalt_If_No_Top_Level_1X246765745F63757272656E745F42_1Fct_RemX63757272656E745F6269705F6E616D65_2Un_In_Code_CheckHash_Delete_AllVector_Test_Null_Interfd_elementLE_Compl_Init_MatchGet_Code_1Write_Canonical_To_Atom_2X675F646563_3X6C697374_1Fd_AtmostPortray_Clause_1X235C5C3C3D3E_2Fct_CosX246861735F7370795F706F696E74_2X675F6465636F_2__libc_start_main@@GLIBC_2.0X73656C656374_5permission_type_text_streamGet_Atom_TaggedX247468726F7731_2X2463617463685F6661696C5F6E6F77_1Call_With_Args_11Fd_Sel_Array_Pick_Var_4Find_Linedit_Completion_Alt_0X64656C6574655F66696C65_1Blt_FloatX247365745F6C6162656C696E675F64656661756C7473_0X7072696E74_2X73746174697374696373_0Sqrt_DnM_User_TimeX63616C6C5F776974685F61726773_9X24246765745F73725F6F7074696F6E73322F315F2461757831_1X2424737461742F335F2461757832_1Put_StructureX6E6F6E5F66645F766172_1New_ObjectFd_Max_Integer_1Blt_Non_Generic_VarX61626F7274_0Set_Input_1X24246C697374696E675F616C6C2F315F2461757831_2X242463616C6C5F696E7465726E616C2F325F2461757831_1X2473747265616D5F70726F706572747931_2truth_x_eq_c_Ftype_callableClose_Input_Term_Stream_1X66645F656C656D656E74_3X726561645F7465726D5F66726F6D5F61746F6D_3Add_Str_StreamBC_Call_Terminal_Pred_3File_Prop_Absolute_File_Name_2exp@@GLIBC_2.0X73725F77726974655F6572726F72_2X246C656173685F6D616B655F6D61736B_2X2466645F6C6162656C696E67_2X6E756D62657276617273_3Display_2X7472616365_0permission_operation_accessatom_pastX2466696C655F70726F705F7065726D_2fd_atleastX24636C6F7365_2Fct_FloorPut_Byte_1X2463757272656E745F61746F6D5F616E79_1Mk_CodeNew_Atom_3x_nimply_y_eq_breg_bankCurrent_Alias_Alt_0Rd_Compound_CheckX2464656275675F706F727432_6M_Host_Name_From_AdrSR_Close_1dup2@@GLIBC_2.0X7368656C6C_0ax_plus_by_plus_z_eq_tX7065656B5F636F6465_2X2464656275675F646973705F616E635F6C737431_1X246765745F707265645F696E646963_3Read_Token_From_Chars_2SR_Update_Position_0M_RandomizeFct_RoundX675F6C696E6B_2truth_x_neq_yRd_Charsrealloc@@GLIBC_2.0Statistics_User_Time_2X6465627567_0Statistics_0M_Get_SeedX246765745F77726974655F6F7074696F6E7331_1X24746F705F6C6576656C5F61626F7274_0strcat@@GLIBC_2.0Print_1Get_Linedit_Prompt_1permission_operation_closeDel_Mirror_From_Stream__environ@@GLIBC_2.0permission_operation_repositionX73725F636C6F7365_1Close_Output_Term_Stream_2fd_variable_sizeX675F696E636F_2X636F70795F7465726D_2Check_For_Un_Positivetruth_x_neq_cExit_With_ValueX24736F636B65745F6163636570742F345F2461757831_1Rd_Boolean_Checkdata_startFct_Fast_MulX73725F77726974655F6D657373616765_6File_Prop_Type_2Fct_AcosX2466696E64616C6C_4Stream_End_Of_StreamPl_Err_RepresentationX7075745F62797465_1X7072656469636174655F70726F7065727479_2existence_procedureFct_DivFd_Min_2Fct_Fast_RemCurrent_Atom_2PowerScan_TokenDelete_StreamPut_AtomX2473725F6F70656E2F335F2461757832_1X6F70656E5F696E7075745F63686172735F73747265616D_2Extend_ArrayVector_Add_ValueX7065726D75746174696F6E_2max_x_a_eq_zax_eq_yX66645F65786163746C79_3Pl_Err_ResourceX736F727430_2X403D3C_2X66645F646F6D61696E_2truth_x_neq_c_FPeek_Byte_1X726561645F7465726D5F66726F6D5F6368617273_3X6162736F6C7574655F66696C655F6E616D65_2Write_To_Chars_2bind@@GLIBC_2.0X736574617267_4Format_2X24246765745F77726974655F6F7074696F6E73322F315F2461757832_1fd_element_varX24666F726B5F70726F6C6F672F315F2461757831_1Check_For_Un_In_Code_finiX24636865636B5F61746F6D5F6F725F61746F6D5F6C69737432_1X2473686F775F6C65617368696E675F696E666F_0lseek@@GLIBC_2.0fcntl@@GLIBC_2.0Put_IntegerX24636F6E73756C7432_1memcpy@@GLIBC_2.0Get_Byte_2Unknown_Pred_Errorsqrt@@GLIBC_2.0def_global_sizeStream_Get_Keytype_booleantruth_x_plus_c_gte_yx_or_y_eq_bX73725F6572726F725F66726F6D5F657863657074696F6E_2X24636865636B5F696E5F6368617261637465725F636F6465_1permission_operation_createX24746F705F6C6576656C32_0Set_C_Bip_NameX66696C655F70726F7065727479_2X2473725F77726974655F6572726F722F325F2461757831_6X2424657865635F71756572792F325F2461757831_3X2473725F726561645F7465726D2F345F2461757831_3Lookup_Oper_Any_TypeX7365746F66_3ax_eq_y_FX73725F6765745F696E636C7564655F6C697374_2Blt_G_Test_Set_BitFd_Element_Var_I_To_VBC_Emulate_Predfclose@@GLIBC_2.1Rd_CallableX24747261696C5F68616E646C6572_1Fd_Domain_Bool_1X65786563_4X247365745F77726974655F64656661756C7473_0Blt_Term_LtM_MktempX242477726974655F696E64696361746F722F305F2461757832_2__ctype_toupper_loc@@GLIBC_2.3Socket_Connect_4LE_Printfle_hook_displ_strgetsockname@@GLIBC_2.0strrchr@@GLIBC_2.0Unify_Nila_power_n_eq_y_FX24706C5F6572725F74797065_2X736565696E67_1Delete_Str_StreamX2473686F775F6C65617368696E675F696E666F32_1Unify_VariablePred_Prop_Prolog_File_2Rd_In_Byte_CheckX726561645F6E756D626572_1Unify_Atom_TaggedCreate_Choice_Point4X696E7465676572_1ensure_reservedX2473686F775F756E646566696E65645F616374696F6E_0Current_Char_Conversion_Alt_0__strdup@@GLIBC_2.0Read_Numberx_eq_yX675F746573745F7365745F626974_2X675F646563_2X24246765745F636C6F73655F6F7074696F6E73322F315F2461757831_1Open_3Stream_Set_Position_LCStrdup_Checkrmdir@@GLIBC_2.0Pred_Prop_Static_1Temporary_File_3X74656D706F726172795F66696C65_3Stdio_Set_BufferingFd_Element_Var_IX233D23_2X6765745F636F6465_1le_hook_kbd_is_not_emptyMk_CodesX6372656174655F70697065_2type_integerCurrent_Mirror_Alt_0Stream_Line_Column_3truth_x_eq_y_FRead_Term_From_Chars_5Check_For_Un_In_CharSys_Var_Put_2Delete_Dynamic_Clausedomain_io_modeclosedir@@GLIBC_2.0X6B6579736F7274_2domain_close_optionX2463616C6C5F696E7465726E616C_2Call_With_Args_7gettimeofday@@GLIBC_2.0X7365745F73656564_1Make_Directory_1Blt_Term_EqFct_ExpM_System_TimeAdd_Stream_Mirror_2X24706C5F6572725F6576616C756174696F6E_1X726561645F6E756D626572_2m_os_typeX736F636B65745F6C697374656E_2X247573655F6361746368_0Blt_G_IncoX247379735F7661725F72657365745F626974_2srand@@GLIBC_2.0Display_1Fd_Prolog_To_Array_FdvX247365745F64656275676765725F73747265616D73_2Range_Mod_RangeLE_Emit_Beepx_neq_yBlt_G_DecX247379735F7661725F696E63_1X246463675F7472616E735F626F6479_4X2473686F775F756E646566696E65645F616374696F6E31_1X7368656C6C_2X247573655F6C697374_0Stream_Gets_PromptX2473725F73696D706C5F6572726F72_5opendir@@GLIBC_2.0Rd_Callable_CheckX77726974655F7465726D5F746F5F636F646573_3domain_stream_or_aliasX6F70656E5F696E7075745F61746F6D5F73747265616D_2X235C5C5C5C2F_2gethostname@@GLIBC_2.0Get_Char_2Hash_FindFd_Create_C_FrameX24246261676F662F345F2461757832_2open@@GLIBC_2.0Mk_StringX24656E7669726F6E5F616C74_0X736F636B65745F636F6E6E656374_4Write_To_Atom_2X242464656275675F706F72745F69676E6F72652F345F2461757831_3X66645F6861735F766563746F72_1X2463757272656E745F616C696173_2type_in_byteX73747265616D5F70726F7065727479_2atom_top_level_inputX2473725F77726974655F6572726F722F345F2461757831_4X246C656E677468_3Un_In_Charabs_x_minus_y_eq_zx_eq_cX246173736F635F736F636B65745F73747265616D73_3vec_sizeX7772697465715F746F5F636F646573_2m_architectureX72616E646F6D_1X6E616D65_2Stream_Prop_Reposition_2LE_Compl_Del_WordX24636865636B5F68656164_1Rd_Proper_List_CheckMk_FloatX24756E77696E64_1X247365745F62696E645F7661726961626C65735F64656661756C7473_0LE_Get_KeyX6F70_3M_Spawn_Redirectstm_stdingethostbyname@@GLIBC_2.0atom_binarysigemptyset@@GLIBC_2.0atom_debugger_inputFct_AsinUn_Integer_CheckAt_End_Of_Stream_1Blt_G_IncRd_StringLE_Open_TerminalNl_0Stream_Prop_File_Name_2X2463757272656E745F73747265616D5F616C74_0X24636C61757365_3X232F5C5C_2X6E7468_3X242464656275675F657865635F636D642F365F2461757831_1X7365745F6C696E656469745F70726F6D7074_1Switch_On_IntegerFct_Float_Integ_PartFd_Assign_ValueX24706F72747261795F636C61757365_2X242466645F6C6162656C696E672F325F2461757831_4Full_Var_Div_VarStream_PrintfX24246765745F77726974655F6F7074696F6E73322F315F2461757836_1byte_lenHash_Table_SizeCurrent_Op_Alt_0Blt_Non_Fd_VarCopy_Termgetpwnam@@GLIBC_2.0X2464656275675F69735F64656275675F707265646963617465_1Stop_PrologX247573655F7372635F726472_0X73725F6765745F6572726F725F636F756E74657273_3X6E6C_0exit@@GLIBC_2.0Format_To_Codes_3X24246765745F6F70656E5F6F7074696F6E73322F315F2461757831_1atom_top_level_outputX2463616C6C5F696E7465726E616C5F6F72_4X24746F705F6C6576656C5F73746F70_0Fct_AtanMk_Proper_ListAdd_Alias_To_StreamX242473725F74726561745F7465726D2F325F2461757831_2X66645F73697A65_2X24617070656E642F315F2461757831_2Check_For_Un_FloatGet_Print_Stm_1X73656E645F7369676E616C_2X73725F6F70656E_3X247365652F315F2461757831_2calloc@@GLIBC_2.0Read_Pl_State_FileX6973_2X247573655F66645F76616C756573_0X246D61785F6C69737431_3Vector_FullX2464656275675F706F72745F707265747479_2atom_stream_positionX2463686F6963655F706F696E745F696E666F_4Environ_Alt_0Rd_Codes_CheckFather_Of_Aux_Name_3Get_Key_No_Echo_1ax_plus_y_eq_z_FX6C696E655F706F736974696F6E_2Un_String_CheckFull_Nth_RootX65786563_5Create_Allocate_AtomX247573655F707265747479_0X736F727430_1Line_Count_2Mk_ByteX2464656275675F706F72745F69676E6F7265_4X666C6F6174_1X2464656275675F7377697463685F6F6E_1Hash_FirstDefine_Vector_SizeUn_CharsAtom_Concat_3Range_To_Stringsscanf@@GLIBC_2.0X70726F6C6F675F66696C655F6E616D65_2Get_Current_Bip_edataX3E_2X246765745F636C6F73655F6F7074696F6E7331_1X247363616E5F64796E5F6A756D705F616C74_0atom_tblmin_x_y_eq_z__i686.get_pc_thunk.bx_IO_putc@@GLIBC_2.0Sub_Atom_Alt_0Sqrt_ExactX66645F6C6162656C696E67_2Switch_On_TermSys_Var_Set_Bit_2X736F636B65745F62696E64_2fd_atmostfree@@GLIBC_2.0Create_AtomRead_2Fd_Add_List_Dependency_endX2E_2Get_Key_1ioctl@@GLIBC_2.0X2463757272656E745F7072656469636174655F62697073_1X66696E645F6C696E656469745F636F6D706C6574696F6E_2X675F72657365745F626974_2Start_PrologX63616C6C5F776974685F61726773_4Prime_RangeX756E6765745F63686172_2X61626F6C697368_1truth_x_lt_yX73725F6765745F706F736974696F6E_3Stream_Set_PositionCheck_For_Un_StringX72616E646F6D697A65_0X2465786563_5X3C_2min_x_a_eq_zUn_CallableX675F746573745F72657365745F626974_2X2463757272656E745F61746F6D5F616C74_0Blt_Non_VarX24636865636B5F707265645F70726F70_1getcwd@@GLIBC_2.0X24726574726163745F6C6173745F666F756E64_0X24246765745F77726974655F6F7074696F6E73322F315F2461757835_1Copy_Clause_To_HeapFd_AtleastUn_Proper_List_CheckX2424657870616E645F7465726D312F325F2461757831_2Peek_Byte_2Blt_GteRealloc_Checkisatty@@GLIBC_2.0X24246765745F6F70656E5F73746D2F325F2461757831_2stm_top_level_outputUn_CharRange_Sub_RangeX77726974655F666F66_1Create_Swt_Tableacos@@GLIBC_2.0memset@@GLIBC_2.0X726561645F696E7465676572_1Un_CodeX24246765745F6F70656E5F6F7074696F6E73322F315F2461757833_1connect@@GLIBC_2.0Rd_ListX233D3D3E_2stdin@@GLIBC_2.0X2463686F6963655F706F696E745F617267_3X247573655F636F6E73745F696F_0X2464656275675F636865636B5F626970_2X66696C655F7065726D697373696F6E_2X235C5C2F_2Un_Proper_ListX736565_1X666F726D6174_2Create_PredX62696E645F7661726961626C6573_2resource_print_object_not_linkedUnify_VoidWrite_Term_1X6C6F6164_1X2466696E645F6C696E656469745F636F6D706C6574696F6E5F616C74_0Call_With_Args_10X72656164_1X617267756D656E745F76616C7565_2Detect_If_Aux_NameX6C65617368_1atom_trueX246E746832_4existence_sr_descriptorMost_Significant_BitReset_Prolog_In_SignalCreate_Functor_Arity_TaggedX246C61737431_3Format_To_Chars_3Full_Sqrt_VarX617263686974656374757265_1X247468726F775F696E7465726E616C_2Globalize_If_In_LocalX66645F646F6D_2X2463757272656E745F636861725F636F6E76657273696F6E5F616C74_0Sys_Var_Read_2Vector_Mul_ValueSR_Set_Error_Counters_3Range_Next_AfterX247365745F6F70656E5F64656661756C7473_0Calloc_CheckRd_Chars_Str_CheckSub_Atom_5truth_x_lte_cX73725F77726974655F6572726F72_4Fd_All_Different_1X246C6F616431_1X242464656275675F706F72745F69676E6F72652F345F2461757833_3Syntax_ErrorBlt_AtomicX726561645F696E7465676572_2M_SpawnFct_Fast_AbsStatistics_Local_Stack_2X246765745F686561645F616E645F626F6479_3X2464656275675F63616C6C31_8strncpy@@GLIBC_2.0Range_Set_ValueX24636865636B5F6C697374_1domain_character_code_listUn_Number_CheckX2424636F6E73756C74322F315F2461757833_2X247573655F6C655F696E74657266_0Group_Solutions_Alt_0Writeq_To_Codes_2X24636174636831_4Set_Last_Syntax_ErrorX24657865635F636D6431_1X24726561645F72657475726E_0X636C6F73655F696E7075745F63686172735F73747265616D_1Fct_Decx_plus_c_eq_yDcg_Trans_Body_4Format_3Blt_CompareFct_Sinfopen@@GLIBC_2.1dup@@GLIBC_2.0Call_With_Args_2type_fd_bool_evaluableFct_IncX3D_2domain_os_pathpermission_operation_inputCall_With_Args_8Put_ListX67656E657269635F766172_1X61746F6D5F636F646573_2Mk_CompoundX2424657865635F636D645F6C696E655F676F616C2F315F2461757831_1_setjmp@@GLIBC_2.0X24666F725F616C74_0Fct_Subtruth_x_plus_c_neq_yX675F696E63_3X6765745F62797465_2Put_Char_2SR_Get_Include_Stream_List_2Context_Error_1Vector_Mod_VectorX242473725F646972656374697665312F325F2461757833_2X7368656C6C_1X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757833_1X2464656275675F646973705F68656C70_0M_ShellX646973706C61795F746F5F6368617273_2le_hook_get_char0Hash_NextSR_Stop_Module_3X7375626C697374_2M_Sys_Err_Stringtag_tblCheck_For_Un_IntegerSR_Get_Module_3Fd_Bool_Meta_3X726561645F7465726D5F66726F6D5F636F646573_3X24636865636B5F6C6973745F6F725F7061727469616C5F6C697374_1X63616C6C5F776974685F61726773_3Peek_Code_2Rd_In_Code_Checkescape_charBlt_G_Test_Reset_BitUn_CompoundSet_Debugger_Streams_2_IO_stdin_usedX7365745F73747265616D5F706F736974696F6E_2X726561645F746F6B656E5F66726F6D5F6368617273_2X726561645F746F6B656E_2Directory_Files_2X2463616C6C5F7465726D5F657870616E73696F6E_2Put_Code_2Stdio_Desc_Of_Streamchar_typeX233D_2X756E6C696E6B_1Blt_Term_GteFd_Tell_Range_RangeX247363616E5F64796E5F746573745F616C74_0Blt_Term_NeqX2464656275675F706F72745F70726F6D7074_6X242472656D6F76655F756E64657273636F72655F766172732F325F2461757831_2X247472795F706F7274726179_1Unset_C_Bip_NameX726561645F7465726D_3Call_Prolog_Next_SolX247573655F636861725F696F_0strtok@@GLIBC_2.0X2473725F73746172745F6D6F64756C65_3sys_varkill@@GLIBC_2.0X77726974655F63616E6F6E6963616C_1X246765745F62696E645F7661726961626C65735F6F7074696F6E73_4X2424726561645F71756572792F325F2461757831_1permission_type_operatorDelete_Opertruth_x_lte_yUpdate_Choice_Point2SR_Check_Descriptor_1Blt_Fast_GteX2463617463685F615F7468726F77_5X77616974_2getc@@GLIBC_2.0SR_Start_Module_3domain_os_file_permissionle_hook_message_boxtruth_x_plus_c_eq_yparse_dico_vartokenX2463757272656E745F70726F6C6F675F666C61675F616C74_0Un_Char_CheckDcg_Trans_Rule_2permission_operation_modifyX24737461746973746963732F325F2461757831_3Check_For_Un_ByteBlt_G_Inc_3X756E6966795F776974685F6F63637572735F636865636B_2Set_Bip_Name_2X247365745F726561645F64656661756C7473_0Add_Mirror_To_Streamatom_end_of_filex_power_a_eq_y_FX63757272656E745F6F70_3Set_Ctrl_C_Handler_0Hash_Insertstm_outputBlt_ListFlush_All_StreamsX7365656B_4Find_Stream_From_PStmparse_nb_varX7072696E745F746F5F6368617273_2domain_stream_seek_methodX726561645F66726F6D5F6368617273_2Rd_NumberFull_Find_ExponFloat_To_Stringatom_user_outputRd_IntegerLoad_Left_RightX2464656275675F706F727431_6sprintf@@GLIBC_2.0X403E_2Fd_Lte_2x_lt_yUntrailRead_From_Chars_2fwrite@@GLIBC_2.0Scan_Dynamic_Pred_Alt_0X6368617261637465725F636F756E74_2X247573655F66645F7072696D65_0Fd_Size_2Unify_AtomFct_Fast_SubX77726974655F63616E6F6E6963616C5F746F5F6368617273_2X246372656174655F636F6C756D6E_3__data_startScan_Next_NumberBlt_GtFd_Dom_2realpath@@GLIBC_2.3sin@@GLIBC_2.0X617267756D656E745F6C697374_1Read_Term_From_Atom_5Fd_Domain_2X706F7274726179_1X2462696E645F7661726961626C6573_4Fd_Prolog_To_Array_AnyX73725F6765745F73697A655F636F756E74657273_3socket@@GLIBC_2.0Current_Prolog_Flag_2X24636865636B5F6F776E65725F66696C6573_3Fd_Set_Vector_Max_1Term_Ref_2Not_Prime_RangeX617070656E64_3X247365745F73747265616D5F656F665F616374696F6E2F325F2461757831_1X646174655F74696D65_1File_Prop_Size_2Un_Byte_IO_getc@@GLIBC_2.0Vector_Interreaddir@@GLIBC_2.0X246765745F62696E645F7661726961626C65735F6F7074696F6E7332_1Check_Valid_Mirror_1X24636865636B5F6C6973745F617267_2_Jv_RegisterClasses__ctype_b_loc@@GLIBC_2.3X2463616C6C5F66726F6D5F6465627567676572_2Fct_Floatle_hook_eraseX247379735F7661725F6765745F626974_3X736574617267_3Unify_StructureFind_Expon_ExactX2462635F73746172745F656D6974_0Pl_Err_TypeX7365656E_0Socket_2rand@@GLIBC_2.0Fd_List_Int_To_Rangetruth_x_eq_cX6765745F62797465_1Recover_Generator_1X2473725F6F70656E5F6E65775F70726F6C6F675F66696C65_1X73796E7461785F6572726F725F696E666F_4Read_Token_From_Codes_2evluation_underflowx_plus_c_neq_yfull_acHash_Free_TableFct_NegX235C5C3D3D3E_2X247573655F61726974685F696E6C_0Blt_ArgRd_Codes_Str_CheckX2464656275675F657865635F636D64_6X636C6F7365_2X242464656275675F63616C6C5F706F72742F355F2461757831_3Writeq_To_Atom_2Save_Call_Info_3X636F6E73756C74_1Rd_Char_Checkbsearch@@GLIBC_2.0log@@GLIBC_2.0fd_copy_variableX2424746F705F6C6576656C322F305F2461757832_1X7365745F70726F6C6F675F666C6167_2X73797374656D_2quot_rem_x_a_r_eq_zX77616D5F6465627567_0Real_Time_1fd_unify_with_integerX3D2E2E_2X242464656275675F706F72745F69676E6F72652F345F2461757832_5X242464656275675F77726974655F676F616C2F345F2461757831_2Emit_Ctrl_CX24696E69745F6465627567676572_0X247365745F73747265616D5F656F665F616374696F6E2F325F2461757832_2Call_With_Args_1Fd_Prolog_To_Rangeescape_symbolChar_Conversion_2tcgetattr@@GLIBC_2.0LE_Put_CharUn_Codes_CheckX2424636865636B5F696E5F6368617261637465725F636F64652F315F2461757831_1read@@GLIBC_2.0Print_To_Chars_2representation_too_many_variablesIndomain_2quot_rem_a_y_r_eq_z_FX736F636B65745F616363657074_3Blt_Ltglob_dico_varX247379735F7661725F7772697465_2X24696E646F6D61696E5F6D696E5F616C74_0Stop_Mark_1Copy_Contiguous_TermTPX24657865635F7175657279_2Current_Input_1X2463617463685F696E7465726E616C_4x_plus_c_gte_yX675F646563_1Get_Structure_TaggedLE_Ins_ModeRange_Reset_Valuepi_arity_wordPortray_Clause_2X2463757272656E745F73747265616D_1Io_Fileno_Of_StreamX63616C6C5F776974685F61726773_7X246765745F6F70656E5F6F7074696F6E73_1X666F726D61745F746F5F6368617273_3Create_Choice_Point2Peek_Char_1LE_Kbd_Is_Not_EmptyGet_Key_No_Echo_2Sys_Var_Reset_Bit_2Range_Test_ValueX64656C6574655F6469726563746F7279_1X2466645F646F6D61696E_3Socket_Listen_2X247375626C69737431_3X66696C655F657869737473_1X2424746F705F6C6576656C322F305F2461757834_3ax_plus_y_plus_z_eq_t_FGet_Nilx_or_y_eq_1LE_Screen_SizePred_Prop_Built_In_1Read_From_Atom_2X73746174697374696373_2X636C6F73655F6F75747075745F63686172735F73747265616D_2Absolute_File_Name_2type_numberFd_Vector_Max_1Sort_List_1atom_void__gmon_start__strcpy@@GLIBC_2.0Recover_After_Errormin_x_a_eq_z_FX247573655F6F735F696E74657266_0le_hook_displUnget_Byte_1 File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\MaLARea\bin\paradox 3422 2445:���+ #�+ #�+ #�+ #�+ #�+ #�+ 1����+ 1����+ 1����+ 2�7� ��+ 2�7� ��+ 2��� ���+ 2������+ 2������+ %�+ %�+ %�+ %�+ 2���?���+ 2���?���+  �+  �+ 2������+ !@�+ @�+ !@�+ !@�+ 2�������+ 2��������$��$��$��$h�$�%��$��$d�$��$ؠ$h�$t�$��$��$X�$(�$H�$��$��$�$��$l�$�$(�$��$��$��$d�$��$�$,�$��$L�$\�$l�$|�$��$��$��$��$�$,�$T�$d�$��$��$��$��$L3 -�����L3 -�����t3 5"@|3 �|3 �t3 5"@L3 *�����d3  d3  d3  p3 @d3  L3 *���{\3 !�\3  �\3  �\3  �\3 !�L3 *���cL3 )���cL3 )��cL3 'cp3 0p3 L3 'cL3 'ct3 5"@|3 �|3 �t3 5"@L3 )ֈcL3 )�cL3 )!�cL3 )!�cL3 )!�cL3 )!�cL3 )!�cL3 )���cL3 )���cL3 *���cL3 *�����P3 ,�?�3 ��3 A8�3 �3 �3 �3 �3 �3 �3 �3 �3 �P3  P3  P3 ,�?P3 ,�?P3 ,�?L3 -������$x�$ �$�$ �$ �$�$�$ and ' used with different arities Symbol 'l�$./Paradox/AnalysisTypes.hs:(258,16)-(267,46)|function transTerm8�$./Paradox/AnalysisTypes.hs:244:18-39|ts Form.:-> _Types: no fun typeh�$��$Types: no typeh�$��$ �$`�$ �$T�$�$�$8�$./Paradox/AnalysisTypes.hs:260:18-40|ts Form.:-> t'8�$./Paradox/AnalysisTypes.hs:236:18-39|ts Form.:-> t8�$./Paradox/AnalysisTypes.hs:231:18-39|ts Form.:-> t�$|�$�$��$��$��$�$�$�$�$�$�$�$`�$�$t�$ �$��$H�$var not in scope(�$��$(�$��$|�$��$h�$(�$@�$��$8�$H�$X�$t�$��$��$��$�$|�$��$��$��$(�$h�$��$��$0�$��$T�$��$��$@�$�$��$h�$��$��$��$��$��$��$ �$H�$X�$h�$H�$��$�9 ���9 ���9 ���9 ���9 ���9 ���9 ���9 ���9 ���9 ���9 ��L�$X�$ForAllNew ForAll predef???h�$��$l�$./Paradox/Instantiate.hs:(211,4)-(221,6)|function atLeastOnel�$./Paradox/Instantiate.hs:(224,4)-(242,8)|function atMostOnel�$./Paradox/Instantiate.hs:(157,2)-(242,8)|function parts��$T�$�$@�$h�$`�$�$t�$��$��$��$t�$��$��$(�$��$��$��$ �$T�$�$$�$�$ؠ$�$d�$��$��$@�$��$(�$��$��$|�$��$��$��$ �$�$@�$P�$h�$��$��$��$ �$�; ����; ���; ���; ���; ���; ���; ���; ���; ���; ���; ���; ���; ���; ���;  �; �; �; �; �; �; �; �; �; �; ���; ��P�; ��P�; ��P�; ��P�; ��P�; ��P�; � P�;  P�;  �;  �;  �;  �;  �;  �;  P�;  �;  �;  �;  P�;  P�;  P�;  P�; �P�; ��; � P�; ��P�; ��P�; ��P4�$�$H�$D�$T�$T�$\�$\�$\�$�$x�$��$��$l%��$��$��$��$��$<%��$��$<�$��$��$H�$��$x�$��$x�$��$��$��$��$��$��$��$��$��$��$��$��$��$|�$|�$|�$|�$|�$|�$|�$��$��$|�$��$��$��$��$��$��$��$��$��$��$�$��$�$��$�$<�$�$�$��$x�$��$(�$��$x�$��$��$ %h%��$��$Loc �$�$�%$�$��$��$ %h%��$��$ArgV ArgN D�$L�$�%T�$��$8�$��$��$�$$�$<�$�$��$l�$��$l�$��$\�$l�$��$Sat.hs:(268,0)-(270,26)|function fromLBool��$��$�$l�$h�$ �$��$\�$l�$��$��$�$��$��$x�$��$��$x�$x�$��$,�$,�$,�$��$��$4�$�$l�$h�$ �$��$\�$l�$��$��$��$ �$�$<�$L�$\�$ A �� A � A  � A � A � A �P%t�$P%��$�%��$��$��$ %h%��$�$��$ :@ ��$��$�%��$��$��$P% �$(�$��$\�$��$��$8�$h�$��$�$��$��$��$��$L�$��$��$x�$��$��$��$��$��$x�$l�$��$0�$<�$�$��$��$��$��$��$��$x�$\�$l�$��$�$�$��$�$��$��$��$��$x�$��$��$��$��$x�$��$��$��$��$x�$\�$l�$��$0�$P%0�$l%0�$��$4�$��$0�$��$$�$��$T�$�$$�$flatten: not in var-table: T�$D�$��$l�$./Paradox/Flatten.hs:(226,4)-(229,29)|function normT�$D�$��$l�$./Paradox/Flatten.hs:(157,6)-(158,58)|function replaceclique: not in tableh�$�$8�$./Paradox/Flatten.hs:74:10-30|tps Form.:-> tph�$(�$T�$(�$T�$(�$L�$\�$d�$p�$ �$�$��$��$��$x�$��$X�$��$X�$\�$��$T�$h�$T�$$�$��$��$��$Į$t�$Į$��$�$X�$��$X�$�$��$��$��$T�$��$T�$X�$��$X�$T�$ �$�$��$t�$X�$��$�$\�$��$@�$4�$��$��$��$��$��$��$�$ �$�D ���D ����$(�$T�$(�$T�$(�$T�$t�$��$@�$t�$��$H�$��$T�$d�$h�$t�$(�$l�$h�$p�$\�$��$��$$�$,�$4�$@�$H�$T�$��$X�$��$��$@�$|�$|�$`�$�$t�$��$��$��$t�$��$ȡ$��$@�$��$p�$x�$��$|�$��$T�$D�$��$Į$ȡ$X�$h�$0�$��$��$��$��$��$��$��$��$��$P�$�$(�$��$(�$��$��$0�$T�$�$��$(�$Į$\�$l�$��$\�$��$��$��$�$H�$T�$ı$ؠ$��$��$@�$(�$\�$��$��$��$8�$@�$(�$@�$��$ �$0�$@�$H�$H�$T�$�$��$`�$��$�$(�$��$��$h�$��$(�$��$��$��$p�$(�$Į$p�$x�$`�$h�$x�$��$d�$�$X�$��$��$@�$|�$X�$��$h�$ؠ$��$t�$��$X�$X�$t�$h�$��$��$��$��$��$��$��$��$��$�G ���G �,�G ��G ��G � �G � �G � �G �n�G �o�G ��G ��G ���$��$��$��$��$l�$./Paradox/Flatten.hs:82:9-37|lambdal�$0�$��$h�$��$��$��$��$��$X�$��$h�$��$��$�$D�$h�$��$��$|�$��$H�$��$��$��$��$��$��$��$�H ���H �H  File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\motel\fss.env 1175 52:conceptEqualSets(env(t5570),user,[],concept12,and([atleast(1,truth_mod),atmost(1,truth_mod)]),axiom109):-true. 1177 49:conceptEqualSets(env(t5570),system,[],concept13,atleast(1,truth_mod),axiom111):-true. 1180 39:conceptEqualSets(env(t5570),system,[],atleast(2,truth_mod),not(concept14),axiom114):-true. 1183 52:conceptEqualSets(env(t5570),user,[],concept20,and([atleast(1,det),atmost(1,det)]),axiom124):-true. 1185 49:conceptEqualSets(env(t5570),system,[],concept21,atleast(1,det),axiom126):-true. 1188 39:conceptEqualSets(env(t5570),system,[],atleast(2,det),not(concept22),axiom129):-true. 1189 52:conceptEqualSets(env(t5570),user,[],concept27,and([atleast(1,deictic_mod),atmost(1,deictic_mod)]),axiom135):-true. 1191 49:conceptEqualSets(env(t5570),system,[],concept28,atleast(1,deictic_mod),axiom137):-true. 1194 39:conceptEqualSets(env(t5570),system,[],atleast(2,deictic_mod),not(concept29),axiom140):-true. 1195 52:conceptEqualSets(env(t5570),user,[],concept34,and([atleast(1,named),atmost(1,named)]),axiom146):-true. 1197 49:conceptEqualSets(env(t5570),system,[],concept35,atleast(1,named),axiom148):-true. 1200 39:conceptEqualSets(env(t5570),system,[],atleast(2,named),not(concept36),axiom151):-true. 1203 52:conceptEqualSets(env(t5570),user,[],concept42,and([atleast(1,subject),atmost(1,subject)]),axiom159):-true. 1205 49:conceptEqualSets(env(t5570),system,[],concept43,atleast(1,subject),axiom161):-true. 1208 39:conceptEqualSets(env(t5570),system,[],atleast(2,subject),not(concept44),axiom164):-true. 1209 52:conceptEqualSets(env(t5570),user,[],concept49,and([atleast(1,purpose),atmost(1,purpose)]),axiom170):-true. 1211 49:conceptEqualSets(env(t5570),system,[],concept50,atleast(1,purpose),axiom172):-true. 1214 39:conceptEqualSets(env(t5570),system,[],atleast(2,purpose),not(concept51),axiom175):-true. 1215 52:conceptEqualSets(env(t5570),user,[],concept56,and([atleast(1,time),atmost(1,time)]),axiom181):-true. 1217 49:conceptEqualSets(env(t5570),system,[],concept57,atleast(1,time),axiom183):-true. 1220 39:conceptEqualSets(env(t5570),system,[],atleast(2,time),not(concept58),axiom186):-true. 1221 52:conceptEqualSets(env(t5570),user,[],concept63,and([atleast(1,illoc),atmost(1,illoc)]),axiom192):-true. 1223 49:conceptEqualSets(env(t5570),system,[],concept64,atleast(1,illoc),axiom194):-true. 1226 39:conceptEqualSets(env(t5570),system,[],atleast(2,illoc),not(concept65),axiom197):-true. 1227 52:conceptEqualSets(env(t5570),user,[],concept70,and([atleast(1,cause),atmost(1,cause)]),axiom203):-true. 1229 49:conceptEqualSets(env(t5570),system,[],concept71,atleast(1,cause),axiom205):-true. 1232 39:conceptEqualSets(env(t5570),system,[],atleast(2,cause),not(concept72),axiom208):-true. 1233 52:conceptEqualSets(env(t5570),user,[],concept77,and([atleast(1,result),atmost(1,result)]),axiom214):-true. 1235 49:conceptEqualSets(env(t5570),system,[],concept78,atleast(1,result),axiom216):-true. 1238 39:conceptEqualSets(env(t5570),system,[],atleast(2,result),not(concept79),axiom219):-true. 1239 52:conceptEqualSets(env(t5570),user,[],concept84,and([atleast(1,location),atmost(1,location)]),axiom225):-true. 1241 49:conceptEqualSets(env(t5570),system,[],concept85,atleast(1,location),axiom227):-true. 1244 39:conceptEqualSets(env(t5570),system,[],atleast(2,location),not(concept86),axiom230):-true. 1245 47:conceptEqualSets(env(t5570),user,[],concept90,atleast(1,subject),axiom231):-true. 1251 52:conceptEqualSets(env(t5570),user,[],concept96,and([atleast(1,volition),atmost(1,volition)]),axiom248):-true. 1253 49:conceptEqualSets(env(t5570),system,[],concept97,atleast(1,volition),axiom250):-true. 1256 39:conceptEqualSets(env(t5570),system,[],atleast(2,volition),not(concept98),axiom253):-true. 1259 53:conceptEqualSets(env(t5570),user,[],concept104,and([atleast(1,origin_mod),atmost(1,origin_mod)]),axiom261):-true. 1261 50:conceptEqualSets(env(t5570),system,[],concept105,atleast(1,origin_mod),axiom263):-true. 1264 39:conceptEqualSets(env(t5570),system,[],atleast(2,origin_mod),not(concept106),axiom266):-true. 1271 53:conceptEqualSets(env(t5570),user,[],concept116,and([atleast(1,colour_mod),atmost(1,colour_mod)]),axiom296):-true. 1273 50:conceptEqualSets(env(t5570),system,[],concept117,atleast(1,colour_mod),axiom298):-true. 1276 39:conceptEqualSets(env(t5570),system,[],atleast(2,colour_mod),not(concept118),axiom301):-true. 1279 53:conceptEqualSets(env(t5570),user,[],concept124,and([atleast(1,relative_mod),atmost(1,relative_mod)]),axiom311):-true. 1281 50:conceptEqualSets(env(t5570),system,[],concept125,atleast(1,relative_mod),axiom313):-true. 1284 39:conceptEqualSets(env(t5570),system,[],atleast(2,relative_mod),not(concept126),axiom316):-true. 1289 53:conceptEqualSets(env(t5570),user,[],concept132,and([atleast(1,material_mod),atmost(1,material_mod)]),axiom328):-true. 1291 50:conceptEqualSets(env(t5570),system,[],concept133,atleast(1,material_mod),axiom330):-true. 1294 39:conceptEqualSets(env(t5570),system,[],atleast(2,material_mod),not(concept134),axiom333):-true. 1297 53:conceptEqualSets(env(t5570),user,[],concept140,and([atleast(1,weight_mod),atmost(1,weight_mod)]),axiom343):-true. 1299 50:conceptEqualSets(env(t5570),system,[],concept141,atleast(1,weight_mod),axiom345):-true. 1302 39:conceptEqualSets(env(t5570),system,[],atleast(2,weight_mod),not(concept142),axiom348):-true. 1307 53:conceptEqualSets(env(t5570),user,[],concept150,and([atleast(1,instrument),atmost(1,instrument)]),axiom359):-true. 1309 50:conceptEqualSets(env(t5570),system,[],concept151,atleast(1,instrument),axiom361):-true. 1312 39:conceptEqualSets(env(t5570),system,[],atleast(2,instrument),not(concept152),axiom364):-true. 1313 53:conceptEqualSets(env(t5570),user,[],concept157,and([atleast(1,concerned),atmost(1,concerned)]),axiom370):-true. 1315 50:conceptEqualSets(env(t5570),system,[],concept158,atleast(1,concerned),axiom372):-true. 1318 39:conceptEqualSets(env(t5570),system,[],atleast(2,concerned),not(concept159),axiom375):-true. 1321 53:conceptEqualSets(env(t5570),user,[],concept165,and([atleast(1,destination),atmost(1,destination)]),axiom393):-true. 1323 50:conceptEqualSets(env(t5570),system,[],concept166,atleast(1,destination),axiom395):-true. 1326 39:conceptEqualSets(env(t5570),system,[],atleast(2,destination),not(concept167),axiom398):-true. 1327 53:conceptEqualSets(env(t5570),user,[],concept172,and([atleast(1,source),atmost(1,source)]),axiom404):-true. 1329 50:conceptEqualSets(env(t5570),system,[],concept173,atleast(1,source),axiom406):-true. 1332 39:conceptEqualSets(env(t5570),system,[],atleast(2,source),not(concept174),axiom409):-true. 1335 48:conceptEqualSets(env(t5570),user,[],concept180,atleast(1,means),axiom417):-true. 1345 48:conceptEqualSets(env(t5570),user,[],concept186,atleast(1,concerned),axiom427):-true. 1351 48:conceptEqualSets(env(t5570),user,[],concept190,atleast(1,result),axiom438):-true. 1355 48:conceptEqualSets(env(t5570),user,[],concept194,atleast(1,concerned),axiom447):-true. 1365 53:conceptEqualSets(env(t5570),user,[],concept202,and([atleast(1,beneficative),atmost(1,beneficative)]),axiom472):-true. 1367 50:conceptEqualSets(env(t5570),system,[],concept203,atleast(1,beneficative),axiom474):-true. 1370 39:conceptEqualSets(env(t5570),system,[],atleast(2,beneficative),not(concept204),axiom477):-true. 1373 48:conceptEqualSets(env(t5570),user,[],concept209,atleast(1,concerned),axiom480):-true. 1377 48:conceptEqualSets(env(t5570),user,[],concept212,atleast(1,concerned),axiom488):-true. 1383 53:conceptEqualSets(env(t5570),user,[],concept218,and([atleast(1,measure),atmost(1,measure)]),axiom512):-true. 1385 50:conceptEqualSets(env(t5570),system,[],concept219,atleast(1,measure),axiom514):-true. 1388 39:conceptEqualSets(env(t5570),system,[],atleast(2,measure),not(concept220),axiom517):-true. 1391 48:conceptEqualSets(env(t5570),user,[],concept226,atleast(1,measure),axiom525):-true. 1401 48:conceptEqualSets(env(t5570),user,[],concept234,atleast(1,quantity),axiom587):-true. 1411 53:conceptEqualSets(env(t5570),user,[],concept241,and([atleast(1,physis_mod),atmost(1,physis_mod)]),axiom648):-true. 1413 50:conceptEqualSets(env(t5570),system,[],concept242,atleast(1,physis_mod),axiom650):-true. 1416 39:conceptEqualSets(env(t5570),system,[],atleast(2,physis_mod),not(concept243),axiom653):-true. 1429 53:conceptEqualSets(env(t5570),user,[],concept254,and([atleast(1,volition),atmost(1,volition)]),axiom689):-true. 1447 53:conceptEqualSets(env(t5570),user,[],concept265,and([atleast(1,worth_mod),atmost(1,worth_mod)]),axiom726):-true. 1449 50:conceptEqualSets(env(t5570),system,[],concept266,atleast(1,worth_mod),axiom728):-true. 1452 39:conceptEqualSets(env(t5570),system,[],atleast(2,worth_mod),not(concept267),axiom731):-true. File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\motel\fss.save.kb 13 36:defconcept(fssKB,[],concept12,and([atleast(1,truth_mod),atmost(1,truth_mod)])). 15 36:defconcept(fssKB,[],concept20,and([atleast(1,det),atmost(1,det)])). 16 36:defconcept(fssKB,[],concept27,and([atleast(1,deictic_mod),atmost(1,deictic_mod)])). 17 36:defconcept(fssKB,[],concept34,and([atleast(1,named),atmost(1,named)])). 19 36:defconcept(fssKB,[],concept42,and([atleast(1,subject),atmost(1,subject)])). 20 36:defconcept(fssKB,[],concept49,and([atleast(1,purpose),atmost(1,purpose)])). 21 36:defconcept(fssKB,[],concept56,and([atleast(1,time),atmost(1,time)])). 22 36:defconcept(fssKB,[],concept63,and([atleast(1,illoc),atmost(1,illoc)])). 23 36:defconcept(fssKB,[],concept70,and([atleast(1,cause),atmost(1,cause)])). 24 36:defconcept(fssKB,[],concept77,and([atleast(1,result),atmost(1,result)])). 25 36:defconcept(fssKB,[],concept84,and([atleast(1,location),atmost(1,location)])). 26 31:defconcept(fssKB,[],concept90,atleast(1,subject)). 29 36:defconcept(fssKB,[],concept96,and([atleast(1,volition),atmost(1,volition)])). 31 37:defconcept(fssKB,[],concept104,and([atleast(1,origin_mod),atmost(1,origin_mod)])). 35 37:defconcept(fssKB,[],concept116,and([atleast(1,colour_mod),atmost(1,colour_mod)])). 37 37:defconcept(fssKB,[],concept124,and([atleast(1,relative_mod),atmost(1,relative_mod)])). 40 37:defconcept(fssKB,[],concept132,and([atleast(1,material_mod),atmost(1,material_mod)])). 42 37:defconcept(fssKB,[],concept140,and([atleast(1,weight_mod),atmost(1,weight_mod)])). 45 37:defconcept(fssKB,[],concept150,and([atleast(1,instrument),atmost(1,instrument)])). 46 37:defconcept(fssKB,[],concept157,and([atleast(1,concerned),atmost(1,concerned)])). 48 37:defconcept(fssKB,[],concept165,and([atleast(1,destination),atmost(1,destination)])). 49 37:defconcept(fssKB,[],concept172,and([atleast(1,source),atmost(1,source)])). 51 32:defconcept(fssKB,[],concept180,atleast(1,means)). 56 32:defconcept(fssKB,[],concept186,atleast(1,concerned)). 59 32:defconcept(fssKB,[],concept190,atleast(1,result)). 61 32:defconcept(fssKB,[],concept194,atleast(1,concerned)). 66 37:defconcept(fssKB,[],concept202,and([atleast(1,beneficative),atmost(1,beneficative)])). 68 32:defconcept(fssKB,[],concept209,atleast(1,concerned)). 70 32:defconcept(fssKB,[],concept212,atleast(1,concerned)). 73 37:defconcept(fssKB,[],concept218,and([atleast(1,measure),atmost(1,measure)])). 75 32:defconcept(fssKB,[],concept226,atleast(1,measure)). 80 32:defconcept(fssKB,[],concept234,atleast(1,quantity)). 85 37:defconcept(fssKB,[],concept241,and([atleast(1,physis_mod),atmost(1,physis_mod)])). 92 37:defconcept(fssKB,[],concept254,and([atleast(1,volition),atmost(1,volition)])). 101 37:defconcept(fssKB,[],concept265,and([atleast(1,worth_mod),atmost(1,worth_mod)])). File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\motel\misc\bsp2.lisp 16 76: (defconcept parent__with__two__children (and (:list parent (atleast 2 child)))) File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\motel\misc\examples.pl 37 57: defconcept(parent_with_two_children,and([parent,atleast(2,child)])), 91 23: defconcept(c1,atleast(3,r)), 92 69: defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])). 92 91: defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])). 117 57: defconcept(parent_with_two_children,and([parent,atleast(2,child)])), 140 28: defconcept(c1,and([atleast(2,child),atmost(1,child)])), 150 35: defconcept(c1,and([person,atleast(2,child)])), 151 35: defconcept(c2,and([person,atleast(3,restr(child,lawyer))])). 168 45: defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))), 168 59: defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))), 169 35: defconcept(c2,all(restr(r,atleast(2,s1)),atmost(2,s2))). 176 79: defconcept(c1,and([person,all(friend,doctor),all(restr(friend,doctor),atleast(1,speciality))])), 177 46: defconcept(c2,and([person,all(friend,atleast(1,speciality))])). 184 28: defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])), 184 59: defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])), 185 27: defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])). 185 44: defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])). 202 44: defconcept(c3,and([atmost(4,child),atleast(2,restr(child,female))])), 569 36: defconcept(fourWheels,and([atleast(4,wheels),atmost(4,wheels)])), 570 36: defconcept(fiveWheels,and([atleast(5,wheels),atmost(5,wheels)])), 629 35: defconcept(oneSpouse,and([atleast(1,spouse),atmost(1,spouse)])), 638 32: defconcept(zeroSH,and([atleast(0,sh),atmost(0,sh)])), 639 31: defconcept(oneSH,and([atleast(1,sh),atmost(1,sh)])), 640 31: defconcept(twoSH,and([atleast(2,sh),atmost(2,sh)])), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\motel\motel.dvi 20 1329:cmti10�[�(��<����CallArgumen���t��>�����^��ٓ�Rcmr7�+��j��)�]��������z[�j���< �(��<����CallArgumen���t��>�����^��+��j��)������� ��<��Ϣ�CallArgumen���t��>�����%�::=����z[�[��<����Mo�Gde�UUAnnotation��>���<���<�Meta�V��*�ariable��>���,�]��������z[�j���< �[��<����Mo�Gde�UUAnnotation��>���<���<�Meta�V��*�ariable��>���]��������z[�j����< �<���>�Mo�Gde�UUAnnotation��>����<���<�Meta�V��*�ariable��>�������� �<��Ϣ�Argumen���tT�yp�Ges��>�����%�::=��������z[�j����< �<���>�Meta�UUV��*�ariable��>�� s�:��q��<�� 8��T���yp�Ge��>���������z[<���Ay�Argumen���tT�yp�Ges��>�������� �<��Ϣ�Predicate�UUName��>�����%�::=�����z[�<���Ay�Iden���ti er��>�������� �<��Ϣ�Meta�UUV��*�ariable��>�����%�::=�����z[�<���Ay�Iden���ti er��>�������� �<��Ϣ�T���yp�Ge��>�����%�::=�����z[�<���Ay�Informal�UUDescription��>�������w���In�UUthe�follo���wing�subsections,�w�e�giv�e�further�explanations�for�the�parts�of�a�predicate�description.��,d������0��N� cmbx12�1.1.1��!H�Call��Argumen��ts���������A�UUpredicate�can�ha���v�e�UUa�v��q�arying�n���um�b�Ger�UUof�argumen���ts.�q�If�w�e�use��-�����[�(��<����CallArgumen���t��>�����^��+��j��)�]�������w���e��w�an�t�to�describ�Ge�the�situation�that�the�predicate�has�either�no�argumen�ts�or�atleast�one�argumen�ts�whic�h�� 38����m���ust�UUb�Ge�enclosed�in�round�brac�k�ets.�q�The�notation��������(��<����CallArgumen���t��>�����^��+��j��)�������is��used�if�the�predicate�has�atleast�one�argumen���t�whic�h�has�to�b�Ge�enclosed�in�round�brac�k�ets.�G\If�the�predicate������has�UUno�argumen���ts,�w�e�simply�giv�e�no�call�argumen�ts.�����If�UUa�call�argumen���ts�tak�es�the�form��������[��<����Mo�Gde�UUAnnotation��>���<���<�Meta�V��*�ariable��>���,�]������D��3����9\���썠�:�-��iӍ��{�-�����then��Sit�is�an�optional�argumen���t,��i.e.�it�ma�y�b�Ge�omitted,��and�it�is�follo�w�ed�b�Ge�a�comma�unless�it�is�the�last�� 38����argumen���t,�UUi.e.�q�the�last�one�b�Gefore�the�closing�round�brac�k�et.�q�If�w�e�use��38���h��[��<����Mo�Gde�UUAnnotation��>���<���<�Meta�V��*�ariable��>���]�������then�UUit�is�an�optional�argumen���t�whic�h�is�nev�er�follo�w�ed�b�y�a�comma.�q�The�last�form�is������$��<������Mo�Gde�UUAnnotation��>����<���<�Meta�V��*�ariable��>��������denoting�UUa�non-optional�argumen���t.�����The���mo�Gde�annotations�are�useful�to�tell�w���ether�an�argumen�t�is�input�or�output�or�b�Goth.���They�also������describ�Ge�UUformally�the�instan���tiation�pattern�to�the�call.�����F��*�ollo���wing�UUis�a�complete�description�of�the�mo�Gde�annotations�y�ou�will� nd�in�this�user�man�ual:�������������8�+������Ai�Input�GGargumen���t.�G�This�argumen�t�will�b�Ge�insp�ected�b���y�the�predicate,���and�a ects�the�b�eha���viour�of�the����Aipredicate,�UUbut�will�not�b�Ge�further�instan���tiated�b�y�the�predicate.�������������8�� 20 1523:cmti10�[�(��<����CallArgumen���t��>�����^��ٓ�Rcmr7�+��j��)�]��������z[�j���< �(��<����CallArgumen���t��>�����^��+��j��)������� ��<��Ϣ�CallArgumen���t��>�����%�::=����z[�[��<����Mo�Gde�UUAnnotation��>���<���<�Meta�V��*�ariable��>���,�]��������z[�j���< �[��<����Mo�Gde�UUAnnotation��>���<���<�Meta�V��*�ariable��>���]��������z[�j����< �<���>�Mo�Gde�UUAnnotation��>����<���<�Meta�V��*�ariable��>�������� �<��Ϣ�Argumen���tT�yp�Ges��>�����%�::=��������z[�j����< �<���>�Meta�UUV��*�ariable��>�� s�:��q��<�� 8��T���yp�Ge��>���������z[<���Ay�Argumen���tT�yp�Ges��>�������� �<��Ϣ�Predicate�UUName��>�����%�::=�����z[�<���Ay�Iden���ti er��>�������� �<��Ϣ�Meta�UUV��*�ariable��>�����%�::=�����z[�<���Ay�Iden���ti er��>�������� �<��Ϣ�T���yp�Ge��>�����%�::=�����z[�<���Ay�Informal�UUDescription��>�������w���In�UUthe�follo���wing�subsections,�w�e�giv�e�further�explanations�for�the�parts�of�a�predicate�description.��,d������0��N� cmbx12�1.1.1��!H�Call��Argumen��ts���������A�UUpredicate�can�ha���v�e�UUa�v��q�arying�n���um�b�Ger�UUof�argumen���ts.�q�If�w�e�use��-�����[�(��<����CallArgumen���t��>�����^��+��j��)�]�������w���e��w�an�t�to�describ�Ge�the�situation�that�the�predicate�has�either�no�argumen�ts�or�atleast�one�argumen�ts�whic�h�� 38����m���ust�UUb�Ge�enclosed�in�round�brac�k�ets.�q�The�notation��������(��<����CallArgumen���t��>�����^��+��j��)�������is��used�if�the�predicate�has�atleast�one�argumen���t�whic�h�has�to�b�Ge�enclosed�in�round�brac�k�ets.�G\If�the�predicate������has�UUno�argumen���ts,�w�e�simply�giv�e�no�call�argumen�ts.�����If�UUa�call�argumen���ts�tak�es�the�form��������[��<����Mo�Gde�UUAnnotation��>���<���<�Meta�V��*�ariable��>���,�]������D��3����9\���썠�:�-��iӍ��{�-�����then��Sit�is�an�optional�argumen���t,��i.e.�it�ma�y�b�Ge�omitted,��and�it�is�follo�w�ed�b�Ge�a�comma�unless�it�is�the�last�� 38����argumen���t,�UUi.e.�q�the�last�one�b�Gefore�the�closing�round�brac�k�et.�q�If�w�e�use��38���h��[��<����Mo�Gde�UUAnnotation��>���<���<�Meta�V��*�ariable��>���]�������then�UUit�is�an�optional�argumen���t�whic�h�is�nev�er�follo�w�ed�b�y�a�comma.�q�The�last�form�is������$��<������Mo�Gde�UUAnnotation��>����<���<�Meta�V��*�ariable��>��������denoting�UUa�non-optional�argumen���t.�����The���mo�Gde�annotations�are�useful�to�tell�w���ether�an�argumen�t�is�input�or�output�or�b�Goth.���They�also������describ�Ge�UUformally�the�instan���tiation�pattern�to�the�call.�����F��*�ollo���wing�UUis�a�complete�description�of�the�mo�Gde�annotations�y�ou�will� nd�in�this�user�man�ual:�������������8�+������Ai�Input�GGargumen���t.�G�This�argumen�t�will�b�Ge�insp�ected�b���y�the�predicate,���and�a ects�the�b�eha���viour�of�the����Aipredicate,�UUbut�will�not�b�Ge�further�instan���tiated�b�y�the�predicate.�������������8�� 23 926:�Ev�ery�concept�name������is�4�a�mo�Gdal�concept�term�and�ev���ery�role�name�is�a�role�term.�f�No�w�let��C���,�;\�C����1��|s�,���:���:�:��� UO�,�C���� 0e�rcmmi7�k�� m�b�Ge�mo�dal�concept�terms,�������R���,�s��R����1��|s�,���:���:�:��� UO�,�R����l��L�b�Ge�:Irole�terms�already�de ned,��O��f�b�Ge�a�mo�dal�op�erator,�s��a��some�agen���t�name,�and�let��n��b�Ge�a������nonnegativ���e�UUin�teger.�q�Then��\�������'������[���and([�C����1��|s�;����:�:�:����;���C����k����])��������ľ�(conjunction)����� 37������[���or([�C����1��|s�;����:�:�:����;���C����k����])��������ľ�(disjunction)�����������[���not(�C���)��������ľ�(negation)�����������[���naf(�C���)��������ľ�(negation�UUas�failure)�����������[���all(�R���,�C���)��������ľ�(v��q�alue�UUrestriction)�����������[���some(�R���,�C���)��������ľ�(exists�UUrestriction)�����������[���atleast(�n�,�R���)��������ľ�(n���um�b�Ger�UUrestriction)�����������[���atmost(�n�,�R���)������������[��b(�O�G�,�a�,�C���)��������ľ�(b�Go���x�UUagen�t�in�tro�Gduction)�����������[���d(�O�G�,�a�,�C���)��������ľ�(diamond�UUagen���t�in�tro�Gduction)�����������[���b(�O�G�,�C����1��|s�,�C����2���)��������ľ�(b�Go���x�UUconcept�in�tro�Gduction)�����������[���d(�O�G�,�C����1��|s�,�C����2���)��������ľ�(diamond�X�concept�in���tro�Gduction)������������are�UUmo�Gdal�concept�terms�and��!>������𞍍����[���and([�R����1��|s�;����:�:�:����;���R����l����])��������ľ�(role�UUconjunction)����� 37������[���inverse(�R���)��������ľ�(role�UUin���v�ersion)�����������[���restr(�R���,�C���)��������ľ�(role�UUrestriction)��������!>�����are�UUrole�terms.��"ޘ������3.2����Mo�u�dal��T����erminological�Axioms�������A� ��mo��}'dal�=�c�ontext�-�is�a�(p�Gossibly�empt���y)�list�of�terms�of�the�form��b(�O��,�a�)�,�v�a��is�an�agen���t�name�and��A��is�a�concept�name.�h@The�set�of�all�mo�dal�con���texts�is������denoted�UU�MC��W�.������D�8���� e8���썠�:�-��iӍ��{�-����So-called�A��mo��}'dal�m�terminolo�gic�al�axioms�A��are�used�to�in���tro�Gduce�names�for�mo�dal�concept�terms�and�role�� 38����terms.�W�A��� nite�� 145 2536:�RName1�k�is�a�maximal�subset�of�the�����role�UU�RName2��suc���h�that�eac�h�role� ller�of��RName1��is�in��CName1�.��38�����sb���E�ff&f��ǫdisjoint(�[����G�+���#��EnvName�,�]���[����G�+����M�,�]�����G�+����>�CName1�,�����G�+����CName2� ��)������(SB���E�ff&f���h�ff&f���VDISJOINT�?��[ENVNAME]���[M]�CNAME1�CNAME2�)����������Argumen���ts:���O��EnvName�������en���vironmen�t�UUname��� 37���O��M�������mo�Gdal�UUcon���text������O��CName1�������concept�UUname������O��CName2�������concept�UUname������3�2���declares�UUthe�concepts��CName1��and��CName2��to�b�Ge�disjoin���t.��38�����sb���E�ff&f��ǫdefelem(�[����G�+���#��EnvName�,�]���[����G�+����M�,�]�����G�+����>�ICName1�,�����G�+����ISp��}'e�cList� ��)������Ļ�36����%�Ơ��썠�:�-��iӍ��{�-�����(SB���E�ff&f���h�ff&f���VDEFELEM�?��[ENVNAME]���[M]�ICNAME1�ISPECLIST�)��Ǥ��������Argumen���ts:���O��EnvName�������en���vironmen�t�UUname��� 37���O��M�������mo�Gdal�UUcon���text������O��ICName1�������ob��8ject�UUname������O��ISp��}'e�cList�������SB-ONE�UUindividual�sp�Geci cation������3�2���in���tro�Gduces��tan�ob��8ject�in�en�vironmen�t��EnvName��and�mo�Gdal�con�text��M��M�whic�h�ob�Geys�the�restrictions�� 38���giv���en�UUin��ISp��}'e�cList�.��ڍ��A�UUSB-ONE�individual�sp�Geci cation�tak���es�the�follo�wing�form������n�[isa(����G�+���#��CName�),����G�+����IRSp��}'e�c����1��|s�,������:���:�:������,�������G�+����>�IRSp�e�c����n��q~�]����u��(:LIST�?�(ISA��CNAME�)��IRSPEC����1����Z�:���:�:���e��IRSPEC����n��q~�)�������where�UU�IRSp��}'e�c����i�����is����xg��irole(����G�+���#��RName����i��TL�,���iname(����G�+����IRName����i���),�������G�+����>�IRList����i���)����v�G(IROLE�?��RNAMEi����(INAME��IRNAME����i��TL�)��IRLIST����i���)�������and��.the�argumen���t��IRList����i��z�is�a�list�whic�h�is�either�empt�y�or�con�tains�either��nr(����G�+���#��MinNr����i��TL�,�������G�+����>�MaxNr����i���,�������G�+����DefNr����i���)������(NR�?��MINNR���i���MAXNR�i�DEFNR�i�)�,�UU�vr(����G�+���#��ICName����i��TL�)�(VR�?��ICNAMEi�)�,�or�b�Goth.�����The�� result�of��sb_defelem��is�the�in���tro�Gduction�of�an�ob��8ject��ICName1��whic�h�is�a�mem�b�Ger�of��CName��and������pairs���(�ICName1�,�ICName����i��TL�)�whic���h�are�elemen�ts�of��IRName����i��TL�.��UThe�role��IRName����i�� &�is�a�subset�of��RName����i���and������has�UUatleast��MinNr����i�����role� llers�and�atmost��MaxNr����i���role� llers.�q�The�default�n���um�b�Ger�UUof�role� llers�is��DefNr����i��TL�.��}n�����sb���E�ff&f��ǫattributes(�[����G�+���#��EnvName�,�]���[����G�+����M�,�]�����G�+����>�CN�,�����G�+����InfoList� ��)������(SB���E�ff&f���h�ff&f���VATTRIBUTES�?��[ENVNAME]���[M]�CN�INF���OLIST�)����������Argumen���ts:���O��EnvName�������en���vironmen�t�UUname��� 37���O��M�������mo�Gdal�UUcon���text������O��CN�������concept�UUname������O��InfoList�������list�UUof�info�no�Gdes������3�2���attac���hes���some�attributiv�e�information�to�concept��CN�˕�in�en�vironmen�t��EnvName��and��M�.�The�����information�UUis�tak���en�from��InfoList��whic�h�is�a�list�of�info�no�Gdes�of�the�form�(�A���ttribute�,�V��;�alue�).�����Lisp�UUsyn���tax�for�INF�OLIST:������(:LIST�?�(:LIST��A��;�TTR1���V���PALUE1�)����:���:�:����I�(:LIST��A�TTR���n���V���PALUEn�))��ڍ���sb���E�ff&f��ǫattributes(�[����G�+���#��EnvName�,�]���[����G�+����M�,�]�����G�+����>�CN�,�����G�+����RN�,�����G�+����InfoList� ��)������(SB���E�ff&f���h�ff&f���VATTRIBUTES�?��[ENVNAME]���[M]�CN�RN�INF���OLIST�)����������Argumen���ts:���O��EnvName�������en���vironmen�t�UUname��� 37���O��M�������mo�Gdal�UUcon���text������O��CN�������concept�UUname������O��RN�������role�UUname������O��InfoList�������list�UUof�info�no�Gdes������@�i���attac���hes���some�attributiv�e�information�to�role��RN��K�at�concept��CN��in�en���vironmen�t����EnvName��and��M�.�����The��7information�is�tak���en�from��InfoList��whic�h�is�a�list�of�info�no�Gdes�of�the�form�(�A���ttribute�,�V��;�alue�).�����Lisp�UUsyn���tax�for�INF�OLIST:������(:LIST�?�(:LIST��A��;�TTR1���V���PALUE1�)����:���:�:����I�(:LIST��A�TTR���n���V���PALUEn�))��ڍ���sb���E�ff&f��ǫfact(�[����G�+���#��EnvName�,�]���[����G�+����M�,�]��isa(����G�+���� c��X�,�����G�+����?�CT�)� �)������(SB���E�ff&f���h�ff&f���VFACT�?��[ENVNAME]���[M]��(ISA��X�CT�))����������Argumen���ts:���O��EnvName�������en���vironmen�t�UUname��� 37���O��M�������mo�Gdal�UUcon���text������O��X�������ob��8ject�UUname������O��CT�������concept�UUterm����������Ļ37����&�����썠�:�-��iӍ��{�-����F��*�or�\�a�giv���en�ob��8ject�name��X�\��all�concept�names��CT��suc���h�that��X��is�an�instance�of��CT��in�the�w���orld�� 38���description�!will�b�Ge�en���umerated.����Exp��pro�vides�some�explanation�wh�y�this�is�true.���F��*�or�a�giv�en�����concept��uterm�CT��W�all�ob��8ject�names��X��suc���h�that��X��is�an�instance�of��CT��in�the�w���orld�description�����will��b�Ge�en���umerated.�[�The�concept�term��CT���can�b�e�eiter�a�v��q�ariable�or�a�concept�name.�[�Again��Exp������pro���vides�UUsome�explanation�wh�y�this�is�true.��38�����sb���E�ff&f��ǫfact(�[����G�+���#��EnvName�,�]���[����G�+����M�,�]��irole(����G�+���� File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\motel\motel.pl 3212 13: * not(atleast(N,R)) -> atmost(N-1,R) 3213 30: * not(atmost(N,R)) -> atleast(N+1,R) 3242 18:normalizeNot(not(atleast(N,R)),atmost(M,R)) :- 3244 31:normalizeNot(not(atmost(N,R)),atleast(M,R)) :- 3308 9:flatten(atleast(N,R1),atleast(N,R2)) :- 3308 23:flatten(atleast(N,R1),atleast(N,R2)) :- 4947 41: % Assert X in some(r,c) => X in atleast(1,r) 4950 23: % Assert X in atleast(1,r) => X in some(r,'top') 5154 43: % Assert x in some(R,top) => x in atleast(1,R) 5162 30: atleast(1,R),X,HYPS,AB,CALLS,PT1,InHead1), 5167 23: % Assert x in atleast(1,R) => x in some(R,top) 5176 29: atleast(1,R),X,HYPS,AB,CALLS,PT1,Body), 5602 57: defconcept(parent_with_two_children,and([parent,atleast(2,child)])), 5656 23: defconcept(c1,atleast(3,r)), 5657 69: defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])). 5657 91: defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])). 5682 57: defconcept(parent_with_two_children,and([parent,atleast(2,child)])), 5705 28: defconcept(c1,and([atleast(2,child),atmost(1,child)])), 5715 35: defconcept(c1,and([person,atleast(2,child)])), 5716 35: defconcept(c2,and([person,atleast(3,restr(child,lawyer))])). 5733 45: defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))), 5733 59: defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))), 5734 35: defconcept(c2,all(restr(r,atleast(2,s1)),atmost(2,s2))). 5741 79: defconcept(c1,and([person,all(friend,doctor),all(restr(friend,doctor),atleast(1,speciality))])), 5742 46: defconcept(c2,and([person,all(friend,atleast(1,speciality))])). 5749 28: defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])), 5749 59: defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])), 5750 27: defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])). 5750 44: defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])). 5767 44: defconcept(c3,and([atmost(4,child),atleast(2,restr(child,female))])), 6134 36: defconcept(fourWheels,and([atleast(4,wheels),atmost(4,wheels)])), 6135 36: defconcept(fiveWheels,and([atleast(5,wheels),atmost(5,wheels)])), 6194 35: defconcept(oneSpouse,and([atleast(1,spouse),atmost(1,spouse)])), 6203 32: defconcept(zeroSH,and([atleast(0,sh),atmost(0,sh)])), 6204 31: defconcept(oneSH,and([atleast(1,sh),atmost(1,sh)])), 6205 31: defconcept(twoSH,and([atleast(2,sh),atmost(2,sh)])), 8965 13:namesInTerm(atleast(_N,R),L,_) :- 9107 23:malcToFOL(Trans,U,[X],atleast(N,R),F) :- 9108 23: nrToFOL(U,[X],atleast(N,R),F). 9176 17:nrToFOL(_U,[_X],atleast(0,_R),true) :- 9178 15:nrToFOL(U,[X],atleast(1,R),exists(Y,F1)) :- 9181 15:nrToFOL(U,[X],atleast(N,R),F) :- 10508 46: defconcept(EnvName,MS,CNameDom, and([atleast(MinNr,RName1),atmost(MaxNr,RName1)])), 10512 46:% defconcept(EnvName,MS,CNameDef, and([atleast(DefNr,RName1),atmost(DefNr,RName1)])), 10664 46: defconcept(EnvName,MS,CNameDom, and([atleast(MinNr,RName1),atmost(MaxNr,RName1)])), 10667 46:% defconcept(EnvName,MS,CNameDef, and([atleast(DefNr,RName1),atmost(DefNr,RName1)])), 10679 40: defconcept(EnvName,MS,CNameDom,atleast(1,RName1)), 10919 50:% and([atleast(MinNr,RName), 10946 23: [atleast(MinNr,top), atmost(MaxNr,top) | L2]) :- 11420 30: and([atleast(MinNr,R1),atmost(MaxNr,R1)]),AX), 11421 47: undefconcept(EnvName,MS,CNameDom,and([atleast(MinNr,R1), 11518 52: conceptEqualSets(Env,_usr,MS,CNameDom,and([atleast(MinNr,R1), 11520 47: undefconcept(EnvName,MS,CNameDom,and([atleast(MinNr,R1), 11535 47: conceptEqualSets(Env,_usr,MS,CNameDom,atleast(1,R1),AX), 11536 42: undefconcept(EnvName,MS,CNameDom,atleast(1,R1)), 11737 58: roleSubsets(Env,_user,MS,IRName,restr(RName,and([atleast(MinNr,RName), 11742 52: and([atleast(MinNr,RName), 12027 58:assertConceptLInR(Env,rn(AxiomName,_S,Orientation),MS,CN,atleast(N,R)) :- 12034 50: convertInConsequence(Env,pr(3),RN1,MS,W1,atleast(N,R),X, 12298 21: atleast(N,R),X,HYPS,AB,CALLS,PT1,Body) :- 12401 42:convertInConsequence(Env,_Pr,Name,_MS,W1,atleast(N,R),X, 13268 31:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :- 13268 72:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :- 13268 85:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :- File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\yadlr\domain.pl 29 7:F :== atleast(X, N, F) File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\yadlr\examples\domain.pl 29 7:F :== atleast(X, N, F) File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\yadlr\pl\dllearn.pl 78 14: modeb( *, atleast_select(+inlist, #relation_path, #concept_name_or_not, #num, +outlist) ), 83 14: modeb( *, atleast_select(+inlist, #relation_path, #concept_name_or_not, #num, -list) ), 88 14: modeb( *, atleast_select(+list, #relation_path, #concept_name_or_not, #num, +outlist) ), 93 14: modeb( *, atleast_select(+list, #relation_path, #concept_name_or_not, #num, -list) ), File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\yadlr\pl\nfsdl.pl 30 7:%% atleast(X,N,A) 86 5:nnf(atleast(1,X,Fml),FreeV,NNF,Paths) :- 89 5:nnf(atleast(N,X,Fml),FreeV,NNF,Paths) :- 92 33: nnf(dland(exists(X,Fml),atleast(NewN,Y,Fml)),FreeV,NNF,Paths). 127 22: Fml = dlnot(atleast(N,X,F)) -> Fml1 = atmost(N,X,F); 128 47: Fml = dlnot(atmost(N,X,F)) -> Fml1 = atleast(N,X,F); File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\yadlr\pl\prodlr.pl 26 55: concept_select/3, forall_select/4, atleast_select/5, atmost_select/5, self_select/3, 318 1:atleast_once(Degrees, P, Deg) :- 344 3:% atleast_select(+InList, ?Relation, ?Concept, +Min, -OutList) 346 1:atleast_select([], _, _, _, []). 347 1:atleast_select([(A, InDeg) | Rest], Relation, Concept, Min, [(A, OutDeg) | OutList]) :- 353 31: findall(Deg, (atleast_once(Degrees, Min, Deg1), tnorm(conjunction, Deg1, 1.0, Deg)), CompDegrees), 360 9: atleast_select(Rest, Relation, Concept, Min, OutList). 362 1:atleast_select(InList, Relation, Concept, Min, OutList) :- 366 9: atleast_select_MaxMin(InList, Relation, Concept, MaxMin, OutList), 369 9: atleast_select(InList, Relation, Concept, Min, OutList). 371 1:atleast_select_MaxMin(InList, Relation, Concept, MaxMin, OutList) :- 372 9: atleast_select_MaxMin_rec(InList, Relation, Concept, OutList, MaxMin). 374 1:atleast_select_MaxMin_rec([(Instance, InDeg)], R, C, [(Instance, OutDeg)], Max) :- 376 9: atleast_find_max([(Instance, InDeg)], R, C, [(Instance, OutDeg)], 1, Max). 378 1:atleast_select_MaxMin_rec([(Instance, InDeg)|InList], Relation, Concept, [(Instance, OutDeg)|OutList], MaxMin) :- 380 9: atleast_find_max([(Instance, InDeg)], Relation, Concept, [(Instance, OutDeg)], 1, N), 381 9: atleast_select_MaxMin_rec(InList, Relation, Concept, OutList, MaxMin2), 384 1:atleast_find_max([(Instance, _)], Relation, Concept, [(Instance, OutDeg)], _, N) :- 388 1:atleast_find_max([(Instance,InDeg)], Relation, Concept, [(Instance, _)], K, K2) :- 390 9: atleast_select( [(Instance,InDeg)], Relation, Concept, K2, [(Instance, OutDeg2)]), 394 1:atleast_find_max(InList, Relation, Concept, OutList, K, Max) :- 396 9: atleast_find_max(InList, Relation, Concept, OutList, K2, Max). 410 18: (atleast_once(Degrees, MaxPlusOne, Deg1), tnorm(implication, Deg1, 0.0, Deg)), 499 20:thread_itemfunctor(atleast_select/5). 557 20:legitimate_literal(atleast_select(_, R, C, N, _)) :- num(N), relation_path(R, _, Range), concept_r(C, Range). 723 35:mkplbody(exists(Rp, C), I, O, atleast_select(I, Rp, C0, 1, O)) :- mkplconcept(C, C0). 724 10:mkplbody(atleast(N, Rp, C), I, O, atleast_select(I, Rp, C0, N, O)) :- mkplconcept(C, C0). 724 35:mkplbody(atleast(N, Rp, C), I, O, atleast_select(I, Rp, C0, N, O)) :- mkplconcept(C, C0). 736 10:% | dlatleast([R1, ..], N, C) 759 33:norm_concept(X, exists(Y, Fmt), atleast(N, [Relation], Concept)) :- !, 821 7:dlnnf(atleast(N, X,Fml),FreeV,atleast(N,X,NNF),Paths) :- !, 821 31:dlnnf(atleast(N, X,Fml),FreeV,atleast(N,X,NNF),Paths) :- !, 845 22: Fml = dlnot(atleast(N,X,F)) -> N1 is N - 1, Fml1 = atmost(N1,X,F); 846 61: Fml = dlnot(atmost(N,X,F)) -> N1 is N + 1, Fml1 = atleast(N1,X,F); File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\yadlr\README.md 7 9:end and atleast, atmost constructs have to be translated using the 58 5: atleast_select( +InList, ?RelationName, ?ConceptName, +Min, -OutList ) File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\yadlr\README.text 9 9:end and atleast, atmost constructs have to be translated using the 58 1:atleast_select( +InList, ?RelationName, ?ConceptName, +Min, -OutList ) File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\yadlr\reasoner.pl 62 7:F :== atleast(X, N, F) File W:\home\prologmud_server\lib\swipl\pack\pfc\t - Copy\sanity_base\comm_acts.pfc 46 134:isa: (tColOfConceptNodesForTaskTypeFn cwIntelligenceAnalysisTaskAllotment), iUI_InformationAndCWsTopic, ttTypicalHumanActivityTypeAtLeastOnce, vEventOrRoleConcept 89 25: *eventAtLeastPartiallyMentalEvent [iUniversalVocabularyMt] 141 14: . . . *eventAtLeastPartiallyMentalEvent 146 19: *eventAtLeastPartiallyMentalEvent [iUniversalVocabularyMt] . . . *see above* File W:\home\prologmud_server\lib\swipl\pack\pfc\t\sanity_base\comm_acts.pfc 46 134:isa: (tColOfConceptNodesForTaskTypeFn cwIntelligenceAnalysisTaskAllotment), iUI_InformationAndCWsTopic, ttTypicalHumanActivityTypeAtLeastOnce, vEventOrRoleConcept 89 25: *eventAtLeastPartiallyMentalEvent [iUniversalVocabularyMt] 141 14: . . . *eventAtLeastPartiallyMentalEvent 146 19: *eventAtLeastPartiallyMentalEvent [iUniversalVocabularyMt] . . . *see above* File W:\home\prologmud_server\lib\swipl\pack\prologmud\prolog\prologmud\mobs\affordance\simbots.pfc.pl 64 56:defined_affordance([ subjType=tAgent, actionVerb= "LiveAtLeastAMinute", 75 112:% TODO hook_one_minute_timer_tick:- \+ suspend_timers, forall(no_repeats(tAgent(X)),agent_command_now(X,actLiveAtLeastAMinute(X))). 719 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudEnergy, 0, + -1). 720 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudNonHunger, 0, + -1). 721 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudBladderEmpty, 0, + -1). 722 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudHygiene, 0, + -1). 723 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudSecureRoom, 0, + -1). 724 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudNonLonelinessSocial, 0, + -1). 725 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudFun, 0, + -1). 726 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudSadToHappy, 0, + -1). 727 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudComfort, 0, + -1). 813 22:verb_for_type(actLiveAtLeastAMinute, tAgentSelf). File W:\home\prologmud_server\lib\swipl\pack\prologmud_samples\prolog\prologmud_sample_games\bootstrap.ttl 1055 68:PurposefulAction rdfs:comment "A specialization of both Action and AtLeastPartiallyMentalEvent. Each instance of PurposefulAction is an action consciously, volitionally, and purposefully done by (see performedBy) at least one actor.". File W:\home\prologmud_server\lib\swipl\pack\prologmud_samples\prolog\prologmud_sample_games\tempDir\lib\swipl\pack\colore\ontologies\gwml2\Module7.clif 49 47:(cl-comment 'A CHGB is a HGB that consists of atleast two distinct SHGBs')