blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
6
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
87
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
15 values
visit_date
timestamp[us]date
2016-08-04 09:00:04
2023-09-05 17:18:33
revision_date
timestamp[us]date
1998-12-11 00:15:10
2023-09-02 05:42:40
committer_date
timestamp[us]date
2005-04-26 09:58:02
2023-09-02 05:42:40
github_id
int64
436k
586M
star_events_count
int64
0
12.3k
fork_events_count
int64
0
6.3k
gha_license_id
stringclasses
7 values
gha_event_created_at
timestamp[us]date
2012-11-16 11:45:07
2023-09-14 20:45:37
gha_created_at
timestamp[us]date
2010-03-22 23:34:58
2023-01-07 03:47:44
gha_language
stringclasses
36 values
src_encoding
stringclasses
17 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
15 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
6f6e690d6874fdaf0b9fd0c53354b438c62cbe26
449d555969bfd7befe906877abab098c6e63a0e8
/830/CH7/EX7.7.1/DEAD_BAND.sce
d27c97e7ffd7bec26e794e066e4fcd865280a20c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
436
sce
DEAD_BAND.sce
//Graphical// //Equation 7.7.1 //Program to find Dead band of First order Recursive System //y(n) = a y(n-1)+x(n); a = (1/2) and a = (3/4) clear; clc; close; a = input('Enter the constant value of first Recursive system'); b = 4; //No. of bits used to represent Dead_Band = (2^-b)*[(1/2)*(1/(1-a)),-(1/2)*(1/(1-a))] //Result //For a = (1/2) //Dead Band = [0.0625 - 0.0625] //For a = (3/4) //Dead Band = [0.125 - 0.125]
d3de7b1fa429f50568535d8e4f7af87358047ab1
463377b6374a24bbe111707a34e24949f3bd2543
/iddata.sci
e748029b44aea3bcd88a429a25037d9cbfef352b
[]
no_license
solothinker/Scilab-Identification
3a46c0f3b8b1a7430f8a799be5e1310e2723b535
cdad0d7292c31c29d377b640f6966a7c3bb81bb9
refs/heads/master
2022-01-05T12:39:07.410803
2019-06-15T02:18:13
2019-06-15T02:18:13
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,454
sci
iddata.sci
function varargout = iddata(varargin) [lhs,rhs] = argn(0) if rhs == 2 | rhs == 1 then Ts = 1 elseif rhs == 3 then Ts = varargin(3) else error(msprintf(gettext("%s:Incorrect number of input arguments.\n"),"iddata")) end if Ts <= 0 || typeof(Ts) <> 'constant' || ~size(Ts,'*') then error(msprintf(gettext("%s:Inconsist sampling time ""Ts"", ""non negative real number"" expected.\n"),"iddata")) end if rhs == 1 then OutputData = varargin(1) InputData = [] elseif rhs == 2 | rhs == 3 then OutputData = varargin(1) InputData = varargin(2) if isrow(InputData) then InputData = InputData' end end if size(OutputData,'*') & size(InputData,'*') then if size(OutputData,'r') ~= size(InputData,'r') then error(msprintf(gettext("%s:The numbers of the plant out datas must be equal to the numbers of the plant input datas.\n"),"iddata")) end end t = tlist(['iddata','OutputData','InputData','Ts','TimeUnit'],OutputData,InputData,Ts,'seconds') varargout(1) = t endfunction function %iddata_p(mytlist) f = fieldnames(mytlist) if ~size(mytlist(f(1)),'*') & ~size(mytlist(f(2)),'*') then mprintf(' Empty sample data.\n') else outputSize = size(mytlist(f(1))) inputSize = size(mytlist(f(2))) if prod(outputSize) then sampleSize = max(outputSize) elseif prod(inputSize) then sampleSize = max(inputSize) end mprintf(' Time domain sample data having %d samples.',sampleSize) if round(mytlist(f(3)))-mytlist(f(3)) == 0 then mprintf('\n Sampling Time = %d',mytlist(f(3))) else mprintf('\n Sampling Time = %f',mytlist(f(3))) end mprintf(' %s',mytlist(f(4))) mprintf('\n') if prod(outputSize) then mprintf('\n Output channel \n') for ii = 1:min(outputSize) yString = 'y' + string(ii) mprintf(' %s\n',yString) end end if prod(inputSize) then mprintf('\n Input channel \n') for ii = 1:min(inputSize) uString = 'u' + string(ii) mprintf(' %s\n',uString) end end end mprintf('\n') endfunction
3c2f0f670adb7a9d12833441a4cebbf75fa64a51
e16ed2b1e5415e101f10dbee6680d11e6fdb5e6d
/MPages/dcp_mp_acm_worklist/script/mp_dcp_get_pl_wrapper.tst
c3710bff28915d47431780a2e6c32a86202a4df5
[]
no_license
mikeysjob/ccl
484145533a1e880c9369022c02c9756c86cfdce2
2e7b7cbc7a5bad0f035f744e1bab07a19d250f9a
refs/heads/master
2023-02-09T23:40:06.341187
2021-01-06T17:31:02
2021-01-06T17:31:02
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
8,770
tst
mp_dcp_get_pl_wrapper.tst
declare json = vc go /* set json = '{"LISTREQUEST":{"user_id":390395010.0,"pos_cd":2192727847,"query_type_cd":2177315703,"search_indicator":1,"\ load_demographics":1,"arguments":[{"ARGUMENT_NAME":"ACMPRSNLGROUPS","ARGUMENT_VALUE":"ACM Group 1","PARENT_ENTITY_ID":20355774.0\ ,"PARENT_ENTITY_NAME":"PARAMETER"},{"ARGUMENT_NAME":"PPRCODES","ARGUMENT_VALUE":"Primary Care Physician","PARENT_ENTITY_ID":1115.\ 0,"PARENT_ENTITY_NAME":"PARAMETER"},{"ARGUMENT_NAME":"REGISTRY","ARGUMENT_VALUE":"Aetna","PARENT_ENTITY_ID":10024746,"\ PARENT_ENTITY_NAME":"CODE_VALUE"},{"ARGUMENT_NAME":"REGISTRY","ARGUMENT_VALUE":"Custom Registry 1","PARENT_ENTITY_ID":10024747,"\ PARENT_ENTITY_NAME":"CODE_VALUE"}]}}' go execute mp_dcp_get_pl_wrapper "MINE", json go */ /* execute mp_dcp_get_pl_wrapper ^MINE^,^{"LISTREQUEST":{"user_id":51274229,"pos_cd":2192727847,"query_type_cd":2177315703,"\ search_indicator":1,"load_demographics":1,"arguments":[{"ARGUMENT_NAME":"ACMPRSNLGROUPS","ARGUMENT_VALUE":"Meg's RWL Group","\ PARENT_ENTITY_ID":34439666.0,"PARENT_ENTITY_NAME":"PARAMETER"},{"ARGUMENT_NAME":"PPRCODES","ARGUMENT_VALUE":"Primary Care \ Physician","PARENT_ENTITY_ID":1115.0,"PARENT_ENTITY_NAME":"PARAMETER"},{"ARGUMENT_NAME":"ENCOUNTERTYPE","ARGUMENT_VALUE":"Emg","\ PARENT_ENTITY_ID":4.0,"PARENT_ENTITY_NAME":"CODE_VALUE"}]}}^ go */ /* set json = '{"list_request":{"patient_list_id":5406073.0 }}' go execute mp_dcp_load_static_list "MINE", json go */ set json = /* '{"listrequest":{"user_id":51274229.0,"pos_cd":2192727847.0,"search_indicator":1,"load_demographics":0,"arguments":[\ {"ARGUMENT_NAME":"ACMPRSNLGROUPS","ARGUMENT_VALUE":"MK4602 - RWL","PARENT_ENTITY_ID":42615699.0,"PARENT_ENTITY_NAME":"PARAMETER\ ","CHILD_ARGUMENTS":[{"ARGUMENT_VALUE":"Shen, Jenny","PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":18663690.0},{"ARGUMENT_VALUE\ ":"Kasaei Bond, , KB, ,","PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":55772222.0},{"ARGUMENT_VALUE":"Mancuso, Paul","\ PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":19491429.0},{"ARGUMENT_VALUE":"Devendra Bond, , DB, ,","PARENT_ENTITY_NAME":"\ PRSNL","PARENT_ENTITY_ID":55772276.0}]},\ {"ARGUMENT_NAME":"ACMPRSNLGROUPS","ARGUMENT_VALUE":"DK RWL G1","PARENT_ENTITY_ID":44485670.0,"PARENT_ENTITY_NAME":"PARAMETER","\ CHILD_ARGUMENTS":[{"ARGUMENT_VALUE":"Jessica Bond, , JB, ,","PARENT_ENTITY_NAME":"\ PRSNL","PARENT_ENTITY_ID":62646425.0},{"ARGUMENT_VALUE":"Ryan Bond, , RB, ,","PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":\ 55772252.0},{"ARGUMENT_VALUE":"Meagan Bond, , MB, ,","PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":55772236.0},{"\ ARGUMENT_VALUE":"Slack, Ryan","PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":19304672.0},{"ARGUMENT_VALUE":"Devendra Kalia, , \ DK, ,","PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":51450692.0},{"ARGUMENT_VALUE":"Awnipsc, Aeslwsv Y, UD","PARENT_ENTITY_NAME\ ":"PRSNL","PARENT_ENTITY_ID":600080.0},{"ARGUMENT_VALUE":"Smith, Mark L","PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":18665743\ .0},{"ARGUMENT_VALUE":"GGXbuukvhez Wnew Nzvvfbbd, .","PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":609226.0},{"ARGUMENT_VALUE\ ":"Mancuso, Paul","PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":19491429.0},{"ARGUMENT_VALUE":"Kasaei Bond, , KB, ,","\ PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":55772222.0},{"ARGUMENT_VALUE":"Kayla Bond, , KB, ,","PARENT_ENTITY_NAME":"PRSNL\ ","PARENT_ENTITY_ID":55772218.0},{"ARGUMENT_VALUE":"Kasaei, Mark","PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":18669541.0},{"\ ARGUMENT_VALUE":"Shen, Jenny","PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":18663690.0},{"ARGUMENT_VALUE":"Devendra Bond, , DB\ , ,","PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":55772276.0}]},\ {"ARGUMENT_NAME":"AGELESS","ARGUMENT_VALUE":"63","\ PARENT_ENTITY_ID":0.0,"PARENT_ENTITY_NAME":""},{"ARGUMENT_NAME":"PPRCODES","ARGUMENT_VALUE":"Birth Physician","PARENT_ENTITY_ID":\ 1109.0,"PARENT_ENTITY_NAME":"PARAMETER","CHILD_ARGUMENTS":[]},{"ARGUMENT_NAME":"PPRCODES","ARGUMENT_VALUE":"Care Coordinator","\ PARENT_ENTITY_ID":6185567.0,"PARENT_ENTITY_NAME":"PARAMETER","CHILD_ARGUMENTS":[]},{"ARGUMENT_NAME":"PPRCODES","ARGUMENT_VALUE":"\ Primary Care Physician","PARENT_ENTITY_ID":1115.0,"PARENT_ENTITY_NAME":"PARAMETER","CHILD_ARGUMENTS":[]},{"ARGUMENT_NAME":"GENDER\ ","ARGUMENT_VALUE":"Female","PARENT_ENTITY_ID":362.0,"PARENT_ENTITY_NAME":"CODE_VALUE","CHILD_ARGUMENTS":[]},{"ARGUMENT_NAME":"\ GENDER","ARGUMENT_VALUE":"Male","PARENT_ENTITY_ID":363.0,"PARENT_ENTITY_NAME":"CODE_VALUE","CHILD_ARGUMENTS":[]},{"ARGUMENT_NAME\ ":"GENDER","ARGUMENT_VALUE":"Unknown","PARENT_ENTITY_ID":364.0,"PARENT_ENTITY_NAME":"CODE_VALUE","CHILD_ARGUMENTS":[]},{"\ ARGUMENT_NAME":"LANGUAGE","ARGUMENT_VALUE":"English","PARENT_ENTITY_ID":151.0,"PARENT_ENTITY_NAME":"CODE_VALUE","CHILD_ARGUMENTS\ ":[]},{"ARGUMENT_NAME":"LANGUAGE","ARGUMENT_VALUE":"French","PARENT_ENTITY_ID":312735.0,"PARENT_ENTITY_NAME":"CODE_VALUE","\ CHILD_ARGUMENTS":[]},{"ARGUMENT_NAME":"LANGUAGE","ARGUMENT_VALUE":"Spanish","PARENT_ENTITY_ID":312741.0,"PARENT_ENTITY_NAME":"\ CODE_VALUE","CHILD_ARGUMENTS":[]},{"ARGUMENT_NAME":"RACE","ARGUMENT_VALUE":"African-American/Black","PARENT_ENTITY_ID":309315.0,"\ PARENT_ENTITY_NAME":"CODE_VALUE","CHILD_ARGUMENTS":[]},{"ARGUMENT_NAME":"RACE","ARGUMENT_VALUE":"Caucasian/White","\ PARENT_ENTITY_ID":309316.0,"PARENT_ENTITY_NAME":"CODE_VALUE","CHILD_ARGUMENTS":[]},{"ARGUMENT_NAME":"RACE","ARGUMENT_VALUE":"\ Native American","PARENT_ENTITY_ID":309318.0,"PARENT_ENTITY_NAME":"CODE_VALUE","CHILD_ARGUMENTS":[]},{"ARGUMENT_NAME":"\ CASEMANAGER","ARGUMENT_VALUE":"Devendra Bond, , DB, ,","PARENT_ENTITY_ID":55772276.0,"PARENT_ENTITY_NAME":"PRSNL_ID"},{"\ ARGUMENT_NAME":"CASEMANAGER","ARGUMENT_VALUE":"Isaac Bond, , IB, ,","PARENT_ENTITY_ID":55772290.0,"PARENT_ENTITY_NAME":"PRSNL_ID\ "},{"ARGUMENT_NAME":"CASEMANAGER","ARGUMENT_VALUE":"Jim Bond","PARENT_ENTITY_ID":51274229.0,"PARENT_ENTITY_NAME":"PRSNL_ID"},{"\ ARGUMENT_NAME":"FINANCIALCLASS","ARGUMENT_VALUE":"BLUECROSS","PARENT_ENTITY_ID":85584508.0,"PARENT_ENTITY_NAME":"CODE_VALUE","\ CHILD_ARGUMENTS":[]},{"ARGUMENT_NAME":"FINANCIALCLASS","ARGUMENT_VALUE":"Medicare","PARENT_ENTITY_ID":634776.0,"\ PARENT_ENTITY_NAME":"CODE_VALUE","CHILD_ARGUMENTS":[]},{"ARGUMENT_NAME":"FINANCIALCLASS","ARGUMENT_VALUE":"Other","\ PARENT_ENTITY_ID":634779.0,"PARENT_ENTITY_NAME":"CODE_VALUE","CHILD_ARGUMENTS":[]},{"ARGUMENT_NAME":"HEALTHPLAN","ARGUMENT_VALUE\ ":"Blue Cross","PARENT_ENTITY_ID":2520032839.0,"PARENT_ENTITY_NAME":"CODE_VALUE","CHILD_ARGUMENTS":[]},{"ARGUMENT_NAME":"\ HEALTHPLAN","ARGUMENT_VALUE":"Medicare","PARENT_ENTITY_ID":15089133.0,"PARENT_ENTITY_NAME":"CODE_VALUE","CHILD_ARGUMENTS":[]}]}}' go */ '{"listrequest":{"user_id":51274229.0,"pos_cd":2192727847.0,"search_indicator":1,"load_demographics":0,"arguments":[\ {"ARGUMENT_NAME":"ACMPRSNLGROUPS","ARGUMENT_VALUE":"MK4602 - RWL","PARENT_ENTITY_ID":42615699.0,"PARENT_ENTITY_NAME":"PARAMETER\ ","CHILD_ARGUMENTS":[{"ARGUMENT_VALUE":"Shen, Jenny","PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":18663690.0},{"ARGUMENT_VALUE\ ":"Kasaei Bond, , KB, ,","PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":55772222.0},{"ARGUMENT_VALUE":"Mancuso, Paul","\ PARENT_ENTITY_NAME":"PRSNL","PARENT_ENTITY_ID":19491429.0},{"ARGUMENT_VALUE":"Devendra Bond, , DB, ,","PARENT_ENTITY_NAME":"\ PRSNL","PARENT_ENTITY_ID":55772276.0}]},\ {"ARGUMENT_NAME":"AGELESS","ARGUMENT_VALUE":"63","\ PARENT_ENTITY_ID":0.0,"PARENT_ENTITY_NAME":""},{"ARGUMENT_NAME":"PPRCODES","ARGUMENT_VALUE":"Birth Physician","PARENT_ENTITY_ID":\ 1109.0,"PARENT_ENTITY_NAME":"PARAMETER","CHILD_ARGUMENTS":[]},{"ARGUMENT_NAME":"PPRCODES","ARGUMENT_VALUE":"Care Coordinator","\ PARENT_ENTITY_ID":6185567.0,"PARENT_ENTITY_NAME":"PARAMETER","CHILD_ARGUMENTS":[]},{"ARGUMENT_NAME":"PPRCODES","ARGUMENT_VALUE":"\ Primary Care Physician","PARENT_ENTITY_ID":1115.0,"PARENT_ENTITY_NAME":"PARAMETER","CHILD_ARGUMENTS":[]}]}}' go /* ;Filtering '{"LISTREQUEST":{"user_id":51274229.0,"pos_cd":2192727847.0,"search_indicator":0,"load_demographics":0,"arguments":[{"\ ARGUMENT_NAME":"RECOMMSTATUS","ARGUMENT_VALUE":"DUE","PARENT_ENTITY_ID":2.0,"PARENT_ENTITY_NAME":"RECOMMSTATUS"},{"ARGUMENT_NAME\ ":"RECOMMSTATUS","ARGUMENT_VALUE":"NEARDUE","PARENT_ENTITY_ID":1.0,"PARENT_ENTITY_NAME":"RECOMMSTATUS"},{"ARGUMENT_NAME":"\ RECOMMSTATUS","ARGUMENT_VALUE":"NOTDUE","PARENT_ENTITY_ID":4.0,"PARENT_ENTITY_NAME":"RECOMMSTATUS"},{"ARGUMENT_NAME":"\ RECOMMSTATUS","ARGUMENT_VALUE":"OVERDUE","PARENT_ENTITY_ID":3.0,"PARENT_ENTITY_NAME":"RECOMMSTATUS"},{"ARGUMENT_NAME":"\ EXPECTATIONS","ARGUMENT_VALUE":"Adult Influenza","PARENT_ENTITY_ID":175071081.0,"PARENT_ENTITY_NAME":"HM_EXPECT"}],"patients":[{"\ person_id":18665867.0},{"person_id":18750784.0}]}}' go */ execute mp_dcp_get_pl_wrapper "MINE", json go
1f82a5ac417b0efa85447551f94ffc8abddbbbd9
449d555969bfd7befe906877abab098c6e63a0e8
/2417/CH7/EX7.5/Ex7_5.sce
ea7380015e8c8c62b18d8e6071b18ae6f598fd1a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,297
sce
Ex7_5.sce
//scilab 5.4.1 clear; clc; printf("\t\t\tProblem Number 7.5\n\n\n"); // Chapter 7 : Mixtures Of Ideal Gases // Problem 7.5 (page no. 326) // Solution //Referring to figure 7.3,we have for CO2, nCO2=10/44; //mole //no of moles of carbon dioxide=ratio of mass and molecular weight //10 lb of per pound //molecular weight of CO2=44 //and for N2, nN2=5/28.02; //mole //no of moles of nitrogen=ratio of mass and molecular weight //5 lb of nitrogen per pound printf("The total number of moles in the mixture is %f mole\n",nCO2+nN2); //Therefore, xCO2=nCO2/(nCO2+nN2); //mole fraction of carbon dioxide=ratio of no of moles of carbon dioxide and total moles in mixture xN2=nN2/(nCO2+nN2); //mole fraction of nitrogen=ratio of no of moles of oxygen and total moles in mixture printf("The mole fraction of carbon dioxide is %f and the mole fraction of nitrogen is %f\n",xCO2,xN2); //the molecular weight of mixture=sum of products of mole fraction of each gas component MWm=(xCO2*44) + (xN2*28.02); //the molecular weight of mixture printf("The molecular weight of air is %f\n",MWm); //Because the mixture is 15 lbm (10CO2 + 5N2),the volume of the mixture is found from pm*Vm=mm*Rm*Tm pm=100; //mixture pressure //psia Tm=460+70; //mixture temperature //R(absolute temperature) Rm=1545/37.0; //gas constant of mixture mm=15; //mass of mixture //Unit:lb //So,rearranging the equation,gives Vm=(mm*Rm*Tm)/(pm*144); //mixture volume //ft^3 //1 in^2= 144 ft^2 printf("The mixture volume is %f ft^3\n",Vm); //the partial volume of carbon dioxide is the total volume multiplied by the mole fraction.Thus, VCO2=Vm*xCO2; //the partial volume of CO2 //ft^3 printf("The partial volume of carbon dioxide is %f ft^3\n",VCO2); VN2=Vm*xN2; //the partial volume of N2 //ft^3 printf("The partial volume of nitrogen is %f ft^3\n",VN2); //The partial pressure of each constituent is proportional to its mole fraction,for these conditions, pCO2=pm*xCO2; //the partial pressure of carbon dioxide= final pressure * the mole fraction of CO2 //psia printf("The partial pressure of carbon dioxide is %f psia\n",pCO2); pN2=pm*xN2; //the partial pressure of nitrogen=final pressure * the mole fraction of nitrogen //psia printf("The partial pressure of nitrogen is %f psia\n\n",pN2);
07672bc0fe598d05bba2d280fa7a9715fee0127d
449d555969bfd7befe906877abab098c6e63a0e8
/172/CH17/EX17.9/ex9.sce
4da76a7549d5b7473c8eca7925bb03709029c39f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
531
sce
ex9.sce
//ques9 //determining exit plane properties in control volume clear clc //x-inlet //y-exit Mx=1.5;//mach number for inlet My=0.7011;//mach number for exit Px=272.4;//inlet pressure in kPa Tx=248.3;//inlet temperature in K Pox=1000;//stagnation pressure for inlet Py=2.4583*Px;//Exit Pressure in kPa Ty=1.320*Tx;//Exit temperature in K Poy=0.9298*Pox;//Exit pressure in kPa printf('Exit pressure = %.1f kPa \n',Py); printf(' Exit temperature = %.1f K \n',Ty); printf(' Exit stagnation pressure = %.1f kPa \n',Poy);
ffe1260fcf89fa707c1997e3575661baaa1fcbc7
449d555969bfd7befe906877abab098c6e63a0e8
/530/CH5/EX5.4/example_5_4.sce
0feb272ec1a5fe8cf9021b6da769fd77907f1040
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
810
sce
example_5_4.sce
clear; clc; // A Textbook on HEAT TRANSFER by S P SUKHATME // Chapter 5 // Heat Transfer by Forced Convection // Example 5.4 // Page 219 printf("Example 5.4, Page 219 \n\n") D_i = 0.05 ; // [m] m = 300 ; // [kg/min] m1 = m/60 ; // [kg/sec] rho = 846.7 ; // [kg/m^3] k = 68.34 ; // [W/m K] c = 1274; // [J/kg K] v = 0.2937*10^-6 ; // [m^2/s] Pr = 0.00468 ; Re_D = 4*m1/(%pi*D_i*rho*v); // Assuming both temperature and velocity profile are fully developed over the length of tube // using eqn 5.3.6 Nu_D = 6.3 + 0.0167*(Re_D^0.85)*(Pr^0.93); h = Nu_D*k/D_i; // Equating the heat transferred through the wall of the tube to the change of enthalpy pf sodium L = 300/60*1274*(500-400)/(h*%pi*D_i*30) printf("Length of tube over which the temperature rise occurs = %f m",L)
46045a7cdce09ecaf7f3688be2d40abf3296b2e4
1db0a7f58e484c067efa384b541cecee64d190ab
/macros/trial_iirlp2mb.sci
941918498c984b2ad2ff9f68c5fcb9570733141b
[]
no_license
sonusharma55/Signal-Toolbox
3eff678d177633ee8aadca7fb9782b8bd7c2f1ce
89bfeffefc89137fe3c266d3a3e746a749bbc1e9
refs/heads/master
2020-03-22T21:37:22.593805
2018-07-12T12:35:54
2018-07-12T12:35:54
140,701,211
2
0
null
null
null
null
UTF-8
Scilab
false
false
775
sci
trial_iirlp2mb.sci
function [Num,Den,AllpassNum,AllpassDen] = iirlp2mb(varargin) B = varargin(1) A = varargin(2) Wo = varargin(3) Wt = varargin(4) rhs = argn(2) lhs = argn(1) if(rhs < 4 | rhs > 5) error("Wrong number of input arguments.") end if(rhs == 5) Pass = varargin(5); if(Pass == 'pass') pass_stop = -1 elseif(Pass == 'stop') pass_stop = 1 else error("Pass must be pass or stop.") end else pass_stop = -1 end if(Wo <= 0) error("Wo is <= 0.") end if(Wo >= 1) error("Wo is >= 1."); end oWt = 0; for i = 1 : length(Wt) if(Wt(i) <= 0) error("Wt is <= 0."); end if(Wt(i) >= 1) error("Wt is >= 1."); end if(Wt(i) <= oWt) error("Wt not monotonically increasing."); else oWt = Wt(i); end end endfunction
f1afd02a446e93606994dc42d45f803af673f988
449d555969bfd7befe906877abab098c6e63a0e8
/278/CH5/EX5.8/ex_5_8.sce
2f4ecb552e453b20614eba09f43c556621a5d644
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
268
sce
ex_5_8.sce
//find width and depth of beam //refer fig 5.7 clc W=400//N L=300//mm f=40//N/mm^2 //h=2*b //Z=b*h^2/6=2b^3/3//mm^3 M=W*L//N-mm //f=M/Z b=[M*1.5/(f)]^(1/3)//mm h=2*b//mm printf("the width of beam is ,%f mm\n",b) printf("the height of beam is,%f mm\n",h)
99df9873f3826125c236408f2d75c5ddbc348858
449d555969bfd7befe906877abab098c6e63a0e8
/1523/CH4/EX4.51/ex4_51.sce
f162b8429ae26ce20bb9ea1d15ec54bdf79e2d14
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
361
sce
ex4_51.sce
//AC Circuits : example 4.51 :(pg 4.40 & 4.41) P=2000; pf=0.5; V=230; S=(P/pf); phi=acosd(pf); I=(P/(V*pf)); Q=(V*I*sind(phi)); disp("P=2000 W"); disp("pf=0.5 (leading)"); disp("V=230 V"); disp("P=V*I*cos(phi)"); printf("\nI=%.2f A",I); printf("\nS=V*I=P/cos(phi)=%.f VA",S); printf("\nphi=%.f degrees",phi); printf("\nQ=V*I*sin(phi)=%.f VAR",Q);
6818515aea32ff375beefadf5e429c6e4e901d0f
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.4/Unix-Windows/scilab-2.4/macros/metanet/min_lcost_flow2.sci
f95073a308a51a86d2053cbb547a123dbdc84648
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
1,134
sci
min_lcost_flow2.sci
function [c,phi,flag]=min_lcost_flow2(g) // Copyright INRIA [lhs,rhs]=argn(0) if rhs<>1 then error(39), end // check g check_graph(g) // check capacities ma=prod(size(g('tail'))) n=g('node_number') mincap=g('edge_min_cap') maxcap=g('edge_max_cap') if mincap==[] then mincap=zeros(1,ma) end if maxcap==[] then maxcap=zeros(1,ma) end verif=find(mincap<>0) if verif<>[] then error('Minimum capacities must be equal to zero') end verif=find(maxcap<0) if verif<>[] then error('Maximum capacities must be non negative') end if or(maxcap<>round(maxcap)) then error('Maximum capacities must be integer') end // check costs costs=g('edge_cost') if costs==[] then costs=zeros(1,ma) end if or(costs<>round(costs)) then error('Costs must be integer') end // check demand demand=g('node_demand') if demand==[] then demand=zeros(1,n) end if or(demand<>round(demand)) then error('Demands must be integer') end if sum(demand)<>0 then error('Sum of demands must be equal to zero') end // compute linear min cost flow by relaxation method (Bertsekas) [c,phi,flag]=m6relax(g('head'),g('tail'),costs,maxcap,demand,arc_number(g),n)
b0e4e7475ef34172880ab7d5083029627df15773
449d555969bfd7befe906877abab098c6e63a0e8
/914/CH3/EX3.2/ex3_2.sce
0db37b9bb11e35ea1fa93cade7d960d2a9fee8db
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
766
sce
ex3_2.sce
clc; warning('off'); printf("\n\n example3.2 - pg68"); // given syms x; SIx2=-3.8*10^5; //[j*m^-2*sec^-1] - flux at x=0.1,i.e through face2 Qgen=1.5*10^6; //[j*m^-3*sec^-1] - uniform generation in the volume T2=100+273.15; //[K] temperature at face 2 x2=0.1; //[m] k=380; //[W/mK] - thermal conductivity // using the equation der(SIx)*x=SIx+c1;where c1 is tyhe constant of integration c1=(Qgen*x2)-SIx2; disp(c1) SIx=Qgen*x-c1; disp(SIx,"SIx="); printf("\n where SIx is in units of j m^-2 sec^-1 and x is in units of m"); // using the equation -k*T=der(SIx)*x^2-c1*x+c2;where c2 is the constant of integration c2=-k*T2-(Qgen*(x2)^2)/2+c1*x2; T=-(Qgen/k)*x^2+(c1/k)*x-(c2/k); disp(T,"T="); printf("\n where T is in units of kelvin(K)");
463138e5edae006ca3e6b21d9920b9cc3bcc9f04
449d555969bfd7befe906877abab098c6e63a0e8
/24/CH2/EX2.1.d/Example2_1d.sce
49520d56b068d74186480d932acb37b3f67db722
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
462
sce
Example2_1d.sce
//Given that exec('Example2_1a.sce', -1) exec('Example2_1a.sce', -1) clc //Sample Problem 2-1d printf("\n**Sample Probelm 2-1d**\n") time_station = 45 //in min //he trevels 2 km back to the truck final_displacement = overall_displacement + 2 //in km final_average_velocity = final_displacement /(delta_t + time_station /60) printf("Average velocity from the begining of the drive till reaching back to the truck is %f km/h", final_average_velocity)
f906e9ab87a6e711e67d53a018c3eab5328ce90d
449d555969bfd7befe906877abab098c6e63a0e8
/1427/CH16/EX16.7/16_7.sce
8ff3b557b92866d4c1b7084781589747a8c82aa9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
406
sce
16_7.sce
//ques-16.7 //Calculating time required clc t1=50;//initial half-life (in s) t2=25;//new half-life (in s) a2=1;//concentration (in mol/L) a1=0.5;//concentration (in mol/L) n=1+(log10(t1/t2)/log10(a2/a1)); //n=2; 2nd order reaction k=1/(t1*a1); p=20;//percentage reduction x=a1*(1-(p/100));//concentration left after reduction (in mol/L) t=x/(a1*k*(a1-x)); printf("Time required is %d s.",t);
832dff420342615e9bc2b1bf5fef9d36f6eb6033
449d555969bfd7befe906877abab098c6e63a0e8
/1217/CH1/EX1.20/Exa1_20.sce
bc7078a2bc517ce10aebedb7a8e8ac8e359ddc25
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
830
sce
Exa1_20.sce
//Exa 1.20 clc; clear; close; //given data IR=2;//in mA I2=10;//in uA I3=20;//in uA VBE1=0.7;//in volts VT=25;//in mVolts VCC=10;//in volts VEE=-10;//in volts R=(VCC-VBE1-VEE)/IR;//in kohm disp("On examining circuit it can be seen that transistor Q1 and Q2 are connected in parallel, to form two widlar current source, one consisting of transistor Q1 and Q2 and the other consisting of Q1 and Q3."); RE2=(VT/(I2*10^-3))*log(IR/(I2*10^-3));//in kohm RE3=(VT/(I3*10^-3))*log(IR/(I3*10^-3));//in kohm VBE2=VBE1-RE2*I2*10^-6;//in volts VBE3=VBE1-RE3*I3*10^-6;//in volts RE2=RE2/1000;//in kohm RE3=RE3/1000;//in kohm disp(R,"Value of R in kohm is : ") disp(RE2,"Value of RE2 in kohm is : ") disp(RE3,"Value of RE3 in kohm is : ") disp(VBE2,"Value of VBE2 in Volt is : ") disp(VBE3,"Value of VBE3 in Volt is : ")
985094485c2b0961e10ce7359eb759f26f6a179d
449d555969bfd7befe906877abab098c6e63a0e8
/2252/CH17/EX17.14/Ex17_14.sce
e93f7d9eaac3a98da1163cfd00fe40a833fd3190
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
462
sce
Ex17_14.sce
//when the machine is working as generator V=240//terminal voltage across the load P=40D+3//load on generator Il=P/V//load current Rsh=60//resistance of shunt field Ish=V/Rsh Ia=Il+Ish Ra=.03//armature resistance e=2*1//voltage drop at brushes Eg=V+Ia*Ra+e N=450//speed as a generator at this load //let k=P*phi*Z/(60*A) k=Eg/N //when the machine is working as motor Ia=Il-Ish Eb=V-Ia*Ra-e N=Eb/k mprintf("Speed as a motor=%d rpm", round(N))
09afde120a9ff5b13a4518c16d4f965af020981a
27fecbbeb6c49dcf03b9bddf1b867c31e13a3825
/Simulações/Relatório 04/QUESTÃO 3/3_paiva.sce
a266165febf7ce2e44b687778dd6807956f2d81d
[]
no_license
LucasHattoriCosta/Poli
42c9fc2d34c31e01336265fbdac3e4921d56e096
b1ac609c3675539b4e921909c35ea196ffc44df3
refs/heads/master
2023-03-15T12:22:03.745943
2020-06-29T17:32:48
2020-06-29T17:32:48
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,784
sce
3_paiva.sce
//Tarefa 1 - Flavius //Condições iniciais pi=%pi g=9.8 //Gravidade em m/s R=3 //Raio do tubo (m) l = 0.5 //Semicomprimento da corrente (m) c = 0.1 //Coeficiente de atrito viscoso (kg/m*s) ro = 0.1 //Densidade linear da corrente (kg/m) m = ro*2*l //Massa total da corrente (kg) //Espaço de estados function [y_dot]=deriva(t,y0) k=y0(1,:) kdot=y0(2,:) dk_dt=kdot d2k_dt2=-((g*R*(cos((k-l)/R)-cos((k+l)/R)))/(2*l))-(2*l*c*kdot) y_dot=[dk_dt;d2k_dt2] endfunction //Item a //1) theta=-pi/4 theta_dot=0 sigma=theta*R sigma_dot=theta_dot*R //Tempo t0=0 dt=0.005 tf=100 t=t0:dt:tf //Integrações X = ode([sigma;sigma_dot],t0,t,deriva) //1) theta(t) clf() scf(0) subplot(2,2,1) title('Posição angular em função do tempo') xlabel('t(s)') ylabel('theta(rad)') plot(t,X(1,:)/R) //2) theta_dot(t) subplot(2,2,2) title('Velocidade angular em função do tempo') xlabel('t(s)') ylabel('Velocidade angular(rad/s)') plot(t,X(2,:)/R) //3) theta_dot2(t) subplot(2,2,3) title('Aceleração angular em função de tempo') xlabel('t(s)') ylabel('Aceleração angular(m/s²)') plot(t,(-((g*R*(cos((X(1,:)-l)/R)-cos((X(1,:)+l)/R)))/(2*l))-(2*l*c*X(2,:)))/R) //7) theta_dot=theta_dot(theta) subplot(2,2,4) title('Velocidade angular em função de theta') xlabel('theta(rad)') ylabel('Velocidade angular(rad/s)') plot(X(1,:)/R,X(2,:)/R) //4) T=T(t) Energia Cinética T = ro*l*(X(2,:)**2) scf(1) title('Energia cinética em função do tempo') xlabel('t(s)') ylabel('T(J)') plot(t,T,'r') //5) V=V(t) V=m*g*R*(1-cos(X(1,:)/R)) title('Energia potencial em função do tempo') xlabel('t(s)') ylabel('V(J)') plot(t,V,'g') //6) Energia total title('Energia mecânica em função do tempo') xlabel('t(s)') ylabel('E(J)') plot(t,V + T) xs2png(0,'Q3ib1p1') xs2png(1,'Q3ib1p2')
70815fad71f1d88ca05c9ab90372286cb474fa42
13c3ed7bef4d80dabd836219bbf4396f07cb934a
/ledblink_pshbtn.sci
a8d7940e745b7aced93cf040b2843ab4a14034a5
[]
no_license
Mushirahmed/scilab_workspace
99f489a110a5e295ce9fca9991122d14840018d3
f58b91b87bb0357fff82dcb97b05541e7e976eca
refs/heads/master
2021-01-10T15:48:40.576771
2016-02-10T10:32:46
2016-02-10T10:32:46
43,348,489
0
0
null
null
null
null
UTF-8
Scilab
false
false
178
sci
ledblink_pshbtn.sci
function ledblink_pshbtn() for i=1:1000 p=cmd_digital_in(1,9); if p==0 cmd_digital_out(1,11,0); else cmd_digital_out(1,11,1); end end endfunction
dccd8809080ecbb1ce9232c4ec4a6b6eecbdf980
449d555969bfd7befe906877abab098c6e63a0e8
/3845/CH25/EX25.1/Ex25_1.sce
a8f15979ab73c8338ca0840baa14c40f21b98154
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
290
sce
Ex25_1.sce
//Example 25.1 c=3*10^8;//Speed of light (m/s) n=1.923;//Index of refraction for zircon, See Table 25.1 v=c/n;//Speed of light in zircon (m/s) printf('Speed of light in zircon = %0.2e m/s',v) //Openstax - College Physics //Download for free at http://cnx.org/content/col11406/latest
70c10a614f0d348a7abeac9114d2d05326ff8515
449d555969bfd7befe906877abab098c6e63a0e8
/998/CH29/EX29.6/Ex6.sce
75de5ea78be3ffb0f2f151dbcadc056229857bbb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
236
sce
Ex6.sce
//Ex:6 clc; clear; close; t_p=235.9;//Orbital period which is longer than a sidereal day in sec d_r=360*t_p/86400;//Drift rate per day printf("Drift rate =%f degree per day",d_r); printf("\n Since the earth moves towards east ");
d2574e3f56988d3399cb7e6ab88c7a616277077e
449d555969bfd7befe906877abab098c6e63a0e8
/1226/CH20/EX20.47/EX20_47.sce
fadc557bc97361ead0bcd6af9a891c6057bce21e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,128
sce
EX20_47.sce
clc;funcprot(0);//EXAMPLE 20.47 // Initialisation of Variables rp=5;..........//Stagnation pressure ratio ga etaisen=0.92;.......//Overall isentropic efficiency t1=290;.............//Inlet stagnation temperature in K p1=1;...............//Inlet stagnation pressure in bar Cbl=160;...........//Mean blade speed in m/s ga=1.4;...........//Ratio of specific heats Rd=0.5;............//Degree of reaction Cf=90;................//Axial velocity of air through compressor in m/s N=8;.............//No of stages m=1;.........//Mass flow in kg/s cp=1.005;............//Specific heat at constant pressure in kJ/kgK //Calculations tN1=t1*(rp^((ga-1)/ga));......//Temperature at the end of compression stage due to isentropic expansion in K tN=((tN1-t1)/etaisen)+t1; be1=atan(((cp*(tN-t1)*1000/(Cf*Cbl*N))+(Cbl/Cf))/2)*180/%pi; al1=atan((Cbl/Cf)-tan(be1*%pi/180))*180/%pi; printf("\nBlade angels are as follows (In degrees)\n\nalpha1=%f\t\tbeta1=%f\n\nalpha2=%f\tbeta2=%f\n\n",al1,be1,be1,al1) P=m*cp*(tN-t1);..........//Power required by the compressor in kW disp(P,"Power required by the compressor in kW:")
f62fb4a1827425f849f283cef1201d42f489bbb1
449d555969bfd7befe906877abab098c6e63a0e8
/1898/CH10/EX10.12/Ex10_12.sce
00c449e4f65827bb4dccb59ee92039702be89803
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
744
sce
Ex10_12.sce
clear all; clc; disp("Scilab Code Ex 10.12 : ") //Given: di = 60/1000; //m ri = di/2; d0 = 80/1000;//m ro = d0/2; T = 8000;//Nm M = 3500; //Nm sigma_y_sqr = 250^2; //MPa //Calculations: c = ro; J = (%pi/2)*(ro^4 - ri^4)*(10^6); I = (%pi/4)*(ro^4 - ri^4)*(10^6); tou_a = (T*c)/J; sigma_a = (M*c)/I; sigma_avg = (0-sigma_a)/2; R = sqrt(116.4^2 + sigma_avg^2); sigma1 = sigma_avg + R; sigma2 = sigma_avg - R; test = (sigma1^2 - (sigma1*sigma2) + sigma2^2); if(test<sigma_y_sqr) printf("\n\nThe material within the pipe will not yield."); end //-----------------------------------------------------------------------END---------------------------------------------------------------------------------
acfdf8ff292fecee8556c50b20ffec2632228578
449d555969bfd7befe906877abab098c6e63a0e8
/172/CH9/EX9.2/ex2.sce
5df3d2f350fb698ac520ced48237622e3a723a8a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
629
sce
ex2.sce
//example 2 //exit velocity of steam from nozzle clear clc hi=3051.2 //initial specific heat of enthalpy in kJ/kg si=7.1228 //initial specific entropy in kJ/kg-K se=si //final specific entropy Pe=0.3 //final pressure in MPa disp('from steam table,various properties at final state are ') he=2780.2 //final specific heat of enthalpy in kJ/kg-K Te=159.1 //final temperature in celsius vi=30 //velocity with which steam enters the nozzle in m/s ve=((2*(hi-he)+(vi^2/1000))*1000)^0.5 //final velocity of steam with which it exits in m/s printf("\n hence,exit velocity of the steam from the nozzle is ve=%.0f m/s.\n",ve)
4e1063957759d79c6e735ddccf955e39afb14517
449d555969bfd7befe906877abab098c6e63a0e8
/257/CH6/EX6.9/example6_9.sce
8109e18164dd6f9c3fe1b6c02813f2db2782619e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
400
sce
example6_9.sce
syms G1 G2 G3 G4 G5 G6 G7 G8 H1 H2 H3 H4; T1=G1*G2*G3*G5*G6*G4; T2=G1*G2*G7*G6; T3=G1*G2*G3*G4*G8 L1=-G4*H4; L2=-G5*G6*H1; L3=-G2*G3*G4*G5*H2 L4=-G2*G7*H2 L5=-G1*G2*G3*G4*G5*G6*H3 L6=-G1*G2*G6*G7*H3 L7=-G1*G2*G3*G4*G8*H3 L8=-G8*H1 delta=1-(L1+L2+L3+L4+L5+L6+L7+L8)+(L1*L4+L4*L8+L1*L6) del1=1; del2=1-L1; del3=1 TF=(T1*del1 + T2*del2 + T3*del3)/delta ; disp(TF,"C/R = ")
aaf03acfb4db9459908a60b99292861ee703d8af
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.4.1/Unix-Windows/scilab-2.4.1/macros/scicos_blocks/HALT_f.sci
e05254ee27bad11461b218f86ef1b95795451c3c
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
891
sci
HALT_f.sci
function [x,y,typ]=HALT_f(job,arg1,arg2) // Copyright INRIA x=[];y=[];typ=[]; select job case 'plot' then standard_draw(arg1) case 'getinputs' then [x,y,typ]=standard_inputs(arg1) case 'getoutputs' then [x,y,typ]=standard_outputs(arg1) case 'getorigin' then [x,y]=standard_origin(arg1) case 'set' then x=arg1; graphics=arg1(2);label=graphics(4) model=arg1(3); while %t do [ok,n,label]=getvalue('Set Halt block parameters',.. ['State on halt'],list('vec',1),label) if ~ok then break,end if ok then graphics(4)=label model(9)=n x(2)=graphics;x(3)=model break end end x(3)(11)=[] //compatibility case 'define' then n=0 model=list('hltblk',[],[],1,[],[],[0],[],[0],'d',[],[%f %f],' ',list()) label=string(n) gr_i=['xstringb(orig(1),orig(2),''STOP'',sz(1),sz(2),''fill'');'] x=standard_define([2 2],model,label,gr_i) end
ab33c91ded624dad0973ad056aeaa7317ce6ac0c
867aeab6c7faa32a24047121e1ee6e9fd75aefa2
/2020 fall/CMPUT 455/go0and1/test_simple_ko.tst
a4e6a8d384b36e56ae42798854d58c16121d504b
[]
no_license
boyuandong/fall_2020
3077235cee3504aaf0c77ecec86c74eb64043bbe
aa932f91de6df9e62d6e453f968e1b2da4a5f83a
refs/heads/main
2023-04-21T03:22:22.025715
2021-04-28T05:36:50
2021-04-28T05:36:50
359,421,071
0
0
null
null
null
null
UTF-8
Scilab
false
false
490
tst
test_simple_ko.tst
#----------------------------------------------------------------------------- # Tests of the simple ko rule for all Go*.py players. #----------------------------------------------------------------------------- boardsize 3 play b b2 play w a2 play b c1 play w b1 10 legal_moves b #? [A1 A3 B3 C2 C3] play b a1 20 legal_moves w #? [A3 B3 C2 C3] # B1 is illegal due to ko rule play w a3 30 legal_moves b #? [B1 B3 C2 C3] play b c2 40 legal_moves w #? [B1 B3 C3] # B1 is legal again
260458559ff86ec0529ea2289798be8263e9e9af
c83cc2a263b959650ce27d0968c93aad7321f114
/FirstGoAround/substrates/0000.sci
1c26b90826b7f3a162cd10320966f9d4bff73cf2
[]
no_license
bmarshall651/Momentum_Controller_Matlab
0c01cd1bce1a2262b3416efcbd81a52c928d6280
97c66d385237f5607055726e47ac8ec795769a59
refs/heads/master
2020-05-27T01:09:50.909742
2014-07-04T22:03:32
2014-07-04T22:03:32
21,508,195
1
0
null
null
null
null
UTF-8
Scilab
false
false
551
sci
0000.sci
#Momentum: B.09.20.456 (*) 372.600 Nov 12 2011 #Momentum Date and Time: Sun Jun 29 17:42:03 2014 # Cell Info name : Z:\bmarshall On My Mac\Dropbox\MATLAB\Marshall ADS Controller\FirstGoAround\\substrates\0000 NUMBER OF LAYERS 2, UNITS METRE BOTTOMPLANE CONDUCTIVITY 58000000 0 TOPPLANE OPEN LAYERS 0 THICKNESS INFINITY PERMITTIVITY VALUE 1 0 PERMEABILITY VALUE 1 0, 1 THICKNESS 0.00017018 PERMITTIVITY VALUE 3.66 -0.46482 DJORDJEVIC 1e-006 5 1000 PERMEABILITY VALUE 1 0 STRIP; END -1 -1, -1 0.002708110926;
5c2293a3ee90c2bc34588c2194882cd92a7b56ec
bdcdb5519332ddbd8a617f520463f1cba2229350
/codes/scilab/transport_Per_DF.sce
73138f6cd168c91a0448e4eaefc5d699ac1751f4
[]
no_license
gdelay/cours_agreg
23777cbd74dd21c8e17974e299ea5851aa522439
2dbfbb85937344be8e07158c6657d36e4f6f294f
refs/heads/master
2023-06-25T18:33:05.935240
2023-06-09T17:44:28
2023-06-09T17:44:28
247,672,260
3
2
null
2023-01-26T09:57:14
2020-03-16T10:23:00
Jupyter Notebook
UTF-8
Scilab
false
false
2,057
sce
transport_Per_DF.sce
//////// Equation de transport avec conditions periodiques par differences finies sur (0,1) clear /////// Parametres M = 160 // nb de subdivisions d'espace N = 120 // nb de pas de temps a = 1.0 // vitesse T = 0.5 // temps final // u0 : donnee initiale function z = u0(x) z = x.*x.*(1.0-x).*(1.0-x) endfunction //////////////// code principal hx = 1.0/M // pas d'espace ht = T/N // pas de temps // sous-divisions de l'espace et du temps X = linspace(0,1,M+1)' TT = linspace(0,T,N+1)' // initialisation des inconnues U0 = u0(X) U_am = U0 U_ce = U0 // nombre de cfl c = ht * a / hx // boucle en temps // schema decentre amont for i = 1:N // stockage du pas de temps precedent U_temp = U_am // mise a jour des inconnues for j = 2:M+1 U_am(j) = (1-c) * U_temp(j) + c * U_temp(j-1) end // condition periodique U_am(1) = U_am(M+1) end // schema centre for i = 1:N // stockage du pas de temps precedent U_temp = U_ce // mise a jour des inconnues for j = 2:M U_ce(j) = -0.5*c*U_temp(j+1) + U_temp(j) + 0.5*c * U_temp(j-1) end U_ce(M+1) = -0.5*c*U_temp(2) + U_temp(M+1) + 0.5*c * U_temp(M) // condition periodique U_ce(1) = U_ce(M+1) end // donnee initiale figure(1,"Figure_name",'equation de transport Dirichlet') //plot(X,U0,'o-b') // calcul et affichage de la solution exacte pos_ex = X - a*T - floor(X-a*T) U_ex = u0(pos_ex) plot(X,U_ex,'o-b') // affichage de la solution approchee par le schema decentre amont plot(X,U_am,'*-black') // affichage de la solution approchee par le schema centre plot(X,U_ce,'x-r') legend("solution exacte","schema decentre amont","schema centre") xtitle("Solution pour T=0.5, N=120 et M=160","Position (x)","Solution (u)") //figure(2,"Figure_name",'etude de la convergence') //plot(log10(vect_h),log10(vect_err),'o-b') //xtitle("Erreur du schema en fonction de h (echelle logarithmique)","Pas (h)","Erreur") //legend("k=5","k=1","k=0.5") //xtitle("Solution du problème de Poisson-Dirichlet","Position (x)","Solution (u)")
bbf57d877a1bac39b406e7d14e79c1741e9eb74e
449d555969bfd7befe906877abab098c6e63a0e8
/2084/CH3/EX3.7/3_7.sce
3da1d62757e7c19625a124fdcae893c0229eb1da
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
391
sce
3_7.sce
//developed in windows XP operating system 32bit //platform Scilab 5.4.1 clc;clear; //example 3.7 //calculation of maximum height reached by the ball //given data u=4; //initial velocity(in m/s) of the ball a=-10; //acceleration(in m/s^2) of the ball //calculation y=-((u*u)/(2*a)); //formula for vertical height(in m) disp(y,'maximum height(in m) reached by the ball is');
7fc222efd6a91b4dbce633aa6cdff10e3b4f77be
d465fcea94a1198464d7f8a912244e8a6dcf41f9
/system/kiks_kiksnet_disconnect.sci
18076fc5b35a37f042d7581cb9dd4cbb9036c1b0
[]
no_license
manasdas17/kiks-scilab
4f4064ed7619cad9e2117a6c0040a51056c938ee
37dc68914547c9d0f423008d44e973ba296de67b
refs/heads/master
2021-01-15T14:18:21.918789
2009-05-11T05:43:11
2009-05-11T05:43:11
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,478
sci
kiks_kiksnet_disconnect.sci
function [ret] = kiksnet_disconnect() // Ouput variables initialisation (not found in input variables) ret=[]; // Display mode mode(0); // Display warning for floating point exception ieee(1); // ----------------------------------------------------- // (c) 2000-2003 Theodor Storm (Theodor.Storm@home.se) // http://www.kiks.net // ----------------------------------------------------- global("KIKS_KIKSNET_MONITORING","KIKS_FID","KIKS_GUI_STATUS","KIKS_GUI_HDL","KIKSNET_ACTIVE") KIKSNET_ACTIVE = []; KIKS_KIKSNET_MONITORING = []; if mtlb_logic(mtlb_double(KIKS_FID),">=",0) then // !! L.11: Unknown function tcpip_close not converted, original calling sequence used tcpip_close(KIKS_FID); end; KIKS_FID = -1; // !! L.14: Matlab function findobj not yet converted, original calling sequence used // L.14: Name conflict: function name changed from findobj to %findobj mtlb_delete(%findobj(KIKS_GUI_HDL,"tag","kiksnet_clientstats")); // !! L.15: Matlab function set not yet converted, original calling sequence used // L.15: Name conflict: function name changed from set to %set %set(KIKS_GUI_HDL,"name","KiKS"); // !! L.16: Matlab function findobj not yet converted, original calling sequence used // L.16: Name conflict: function name changed from findobj to %findobj H = %findobj(KIKS_GUI_HDL,"Tag","kiksnet_server_btn"); // !! L.17: Matlab function set not yet converted, original calling sequence used // L.17: Name conflict: function name changed from set to %set %set(H,"String","administrate KiKSnet server"); // !! L.18: Matlab function findobj not yet converted, original calling sequence used // L.18: Name conflict: function name changed from findobj to %findobj H = %findobj(KIKS_GUI_HDL,"Tag","kiksnet_frame"); // !! L.19: Matlab function set not yet converted, original calling sequence used // L.19: Name conflict: function name changed from set to %set %set(H,"Position",[3,472,143,94]); // !! L.20: Matlab function findobj not yet converted, original calling sequence used // L.20: Name conflict: function name changed from findobj to %findobj H = %findobj(KIKS_GUI_HDL,"type","uicontrol"); for i = 1:size(mtlb_double(H)) // !! L.22: Matlab function set not yet converted, original calling sequence used // L.22: Name conflict: function name changed from set to %set %set(mtlb_e(H,i),"Visible",char(mtlb_e(KIKS_GUI_STATUS,i))); end; // !! L.24: Matlab function findobj not yet converted, original calling sequence used // L.24: Name conflict: function name changed from findobj to %findobj h = %findobj(KIKS_GUI_HDL); [gui_objs,tmp] = size(mtlb_double(h)); for i = 1:gui_objs // !! L.27: Matlab function get not yet converted, original calling sequence used // L.27: Name conflict: function name changed from get to %get tag = %get(mtlb_e(h,i),"Tag"); // !! L.28: Matlab function strncmp not yet converted, original calling sequence used if strncmp(tag,"t_kiksnetserver_",16) then // !! L.29: Matlab function set not yet converted, original calling sequence used // L.29: Name conflict: function name changed from set to %set %set(mtlb_e(h,i),"Visible","off"); end; end; kiks_delete_remote; // !! L.34: Unknown function kiks_spawn_robot not converted, original calling sequence used kiks_spawn_robot; // L.35: Drawing events are not queued in Scilab //drawnow // !! L.36: Unknown function kiks_status not converted, original calling sequence used kiks_status("<KiKSnet> Disconnected from KiKSnet server."); endfunction
c7942269d7d47cccd023e2f81aa5a9fb53317933
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set12/s_Higher_Engineering_Mathematics_B._S._Grewal_149.zip/Higher_Engineering_Mathematics_B._S._Grewal_149/CH2/EX2.16/ex16.sce
30f2c517644f2e89c81f4ac0b1d6411ed0ef2d87
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
120
sce
ex16.sce
errcatch(-1,"stop");mode(2); A=[0 1 2;1 2 3;2 3 4] B=[1 -2;-1 0;2 -1] disp("AB= ") A*B disp("BA= ") B*A exit();
ce8b527feb8d7e0530b48e93b0e14e914a04b637
449d555969bfd7befe906877abab098c6e63a0e8
/1535/CH8/EX8.13/Ch08Ex13.sci
1e57653b740c0fe8ba6c791cc3156bdf90f927d2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
622
sci
Ch08Ex13.sci
// Scilab Code Ex8.13: Page-176 (2010) c = 3e+008; // Speed of light in vacuum, m/s E = 4.5e+017; // Total energy of object, J px = 3.8e+008; // X-component of momentum, kg-m/s py = 3e+008; // Y-component of momentum, kg-m/s pz = 3e+008; // Z-component of momentum, kg-m/s p = sqrt(px^2+py^2+px^2); // Total momentum of the object, kg-m/s // From Relativistic mass-energy relation // E^2 = c^2*p^2 + m0^2*c^4, solving for m0 m0 = sqrt(E^2/c^4 - p^2/c^2); // Rest mass of the body, kg printf("\nThe rest mass of the body = %4.2f kg", m0); // Result // The rest mass of the body = 4.56 kg
f225587eb9d047de6640c553710845bc13ad3614
449d555969bfd7befe906877abab098c6e63a0e8
/1910/CH9/EX9.1/Chapter91.sce
38a3e9839cec0ede02a21d783448e0eb70043b15
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,761
sce
Chapter91.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clear; clc; disp("Introduction to heat transfer by S.K.Som, Chapter 9, Example 1") //A vertical cooling fin, Approximately a flat plate length,(L)=0.4m high is exposed to saturated steam(temprature,Tg=100°C) at atmospheric pressure. L=0.4; Tg=100; //The fin is maintained at temprature,Tw=90°C by cooling water. Tw=90; disp("The properties of condensate(liquid water) are evaluated at the mean film temprature ") //tf is mean film temprature disp("The mean film temprature in°C is") tf=(Tg+Tw)/2 //The properties of condensate are density(rho=962kg/m^3),conductivity(k=0.677W/(m*K)),viscosity(mu=3*10^-4 kg/(m*s)) rho=962; k=0.677; mu=3*10^-4; //The value rhov=0.598kg/m^3 and hfg=2.27*10^6J/kg at 100°C are found from steam table //g is acceleration due to gravity =9.81m/s^2 g=9.81; rhov=0.598;//rhov is vapour density hfg=2.27*10^6;//hfg is enthalpy of vaporisation //The average heat transfer coefficient over length L is hbarL=0.943*[(rho*(rho-rhov)*g*h*L^3)/(mu*k*(Tg-Tw))]^(1/4) disp("The average heat transfer coefficient over length L in W/(m^2*K)") hbarL=0.943*[(rho*(rho-rhov)*g*hfg*k^3)/(mu*L*(Tg-Tw))]^(1/4) //The rate of heat transfer per unit width is Q=hbarL*L*(Tg-Tw) disp("The rate of heat transfer per unit width in W/m ") Q=hbarL*L*(Tg-Tw) //The rate of condensation is given by mdotc=(Q/hfg) disp("The total rate of condensation in kg/(s*m)") mdotc=(Q/hfg) disp("We have to check whether the flow is laminar or not ") //Reynolds no is given by ReL=(4*mdotc)/(mu) disp("Reynolds no. is") ReL=(4*mdotc)/(mu) disp("Therefore the flow is laminar and hence the use of the equation is justified")
d1b649f2af3b35362abe3eb12d983bab23231c3c
1b969fbb81566edd3ef2887c98b61d98b380afd4
/Rez/bivariate-lcmsr-post_mi/bfas_ea_usi_d/~BivLCM-SR-bfas_ea_usi_d-PLin-VLin.tst
528ccf9048e597b4ba1c94828300a55960a519b2
[]
no_license
psdlab/life-in-time-values-and-personality
35fbf5bbe4edd54b429a934caf289fbb0edfefee
7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e
refs/heads/master
2020-03-24T22:08:27.964205
2019-03-04T17:03:26
2019-03-04T17:03:26
143,070,821
1
0
null
null
null
null
UTF-8
Scilab
false
false
11,974
tst
~BivLCM-SR-bfas_ea_usi_d-PLin-VLin.tst
THE OPTIMIZATION ALGORITHM HAS CHANGED TO THE EM ALGORITHM. ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 0.409711D+00 2 -0.594347D-02 0.297473D-02 3 0.247548D-01 -0.805409D-03 0.318763D+00 4 -0.593366D-03 0.152900D-03 -0.191904D-02 0.287037D-02 5 0.744558D-03 -0.142393D-04 -0.959797D-03 0.149141D-04 0.436006D-02 6 -0.805890D-03 0.518344D-04 -0.223165D-03 0.538024D-04 0.316808D-03 7 -0.341878D-03 0.503768D-04 0.234343D-03 0.198873D-03 -0.495497D-04 8 0.149997D-02 0.562172D-04 -0.199724D-03 -0.243974D-04 -0.905586D-04 9 -0.435399D+00 0.660574D-02 -0.214588D+00 -0.993184D-02 0.206870D+00 10 -0.962435D-01 -0.810902D-02 -0.380047D-01 0.526108D-02 0.231291D+00 11 -0.258927D-01 0.425777D-02 -0.336513D-01 -0.130753D-01 0.203576D-01 12 0.717739D+00 -0.673976D-01 0.473125D+00 -0.186945D-01 0.635190D-01 13 0.534217D-01 0.162283D-02 0.451133D-01 0.131030D-01 0.120230D-01 14 0.202322D+00 0.143262D-01 0.465971D+00 0.295328D-01 -0.153664D-01 15 -0.374847D+01 0.201023D-02 -0.764776D+00 0.308603D-02 -0.192633D+00 16 0.112505D-02 -0.121844D-01 0.103782D-02 -0.157499D-02 0.180894D-02 17 0.363606D-02 -0.885508D-05 0.196741D-02 -0.438164D-04 -0.108710D-02 18 -0.923781D+00 0.791826D-02 -0.883130D+00 -0.498306D-01 0.421740D-01 19 0.550340D-01 -0.625217D-02 0.159127D+00 -0.504816D-02 -0.154720D-01 20 -0.111083D+01 0.239153D-01 -0.225017D+00 0.271868D-01 -0.402270D-01 21 -0.647255D-01 0.338085D-02 -0.244385D+00 0.733681D-02 0.153545D-01 22 0.287573D-02 -0.292626D-04 0.663580D-02 -0.250069D-03 -0.891172D-04 23 -0.342600D-01 0.376211D-03 0.201071D-01 0.322643D-02 0.116368D-02 24 0.541786D-02 -0.426471D-03 0.289948D-02 0.348160D-03 -0.248430D-03 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 6 7 8 9 10 ________ ________ ________ ________ ________ 6 0.762539D-03 7 0.699312D-03 0.269324D-02 8 -0.261691D-04 -0.474825D-04 0.216159D-02 9 0.266696D-02 -0.771995D-02 -0.193123D-01 0.602007D+02 10 0.234091D-01 0.511402D-02 -0.665643D-02 0.116421D+02 0.244857D+02 11 0.464312D-01 0.391097D-01 0.750679D-02 0.903753D+00 0.484764D+01 12 0.580136D-02 0.268850D-01 0.187774D+00 0.514468D+01 0.453200D+01 13 0.460331D-01 0.806801D-01 0.143745D-01 0.486117D+00 0.235075D+00 14 0.116151D-01 0.430296D-02 0.167236D+00 -0.473501D+01 -0.570690D+00 15 0.224791D-01 0.513283D-01 0.400312D-01 -0.170064D+02 -0.162179D+02 16 0.933341D-03 0.248879D-02 -0.278532D-02 0.100089D+01 0.236107D+00 17 -0.384263D-03 -0.439379D-03 -0.117065D-03 -0.178301D+00 -0.706376D-01 18 -0.289566D-01 -0.854691D-01 0.485052D-01 0.658921D+01 -0.358127D+00 19 -0.784155D-02 0.431427D-02 -0.726589D-03 -0.242522D+01 -0.670814D+00 20 0.178715D-01 0.405674D-01 -0.219611D+00 -0.194303D+01 0.788923D+00 21 0.692080D-02 -0.595300D-02 0.112777D-02 0.279514D+01 0.860101D+00 22 -0.326933D-03 -0.357198D-03 -0.180002D-03 -0.326948D-01 -0.302381D-02 23 -0.409184D-03 -0.145151D-02 -0.841999D-03 0.162446D+00 0.694464D-01 24 -0.792986D-04 0.750080D-04 -0.183068D-03 -0.101368D-01 -0.271729D-01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 11 12 13 14 15 ________ ________ ________ ________ ________ 11 0.468382D+02 12 0.506212D+01 0.165199D+03 13 -0.914719D+00 0.318573D+01 0.113485D+02 14 0.660205D+00 0.138974D+02 -0.714372D+00 0.625289D+02 15 0.906300D+01 0.151253D+02 0.203417D+01 0.276288D+01 0.465574D+03 16 0.350384D+00 0.401782D-01 0.655795D-01 -0.235861D+00 0.207392D+01 17 -0.877832D-01 -0.131762D+00 -0.445087D-01 0.686590D-02 -0.194814D+01 18 -0.149369D+02 0.300428D+01 -0.184126D+01 0.169540D+01 0.394939D+02 19 0.237462D+01 0.529257D+00 -0.103373D+01 0.550317D-01 0.294671D+01 20 0.411275D+01 -0.743502D+02 0.436854D+00 -0.345719D+02 0.207890D+02 21 -0.207842D+01 -0.364854D+00 0.909399D+00 0.289533D-01 -0.198033D+01 22 -0.895559D-02 -0.296713D-02 -0.339797D-01 0.304880D-02 -0.190176D+00 23 0.586147D-01 0.129579D+00 -0.662282D-01 -0.129318D+00 -0.148326D+00 24 -0.464285D-01 0.183564D-01 0.419843D-02 0.123205D-01 -0.144173D+00 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 16 17 18 19 20 ________ ________ ________ ________ ________ 16 0.752895D+00 17 -0.583795D-01 0.226654D-01 18 0.445760D+00 -0.167967D+00 0.223235D+03 19 0.274310D+00 -0.181100D-01 -0.395335D+01 0.500838D+01 20 0.123905D+00 -0.892841D-01 -0.173052D+02 0.255886D+01 0.312616D+03 21 -0.128355D-01 -0.903465D-02 0.643232D+01 -0.460332D+01 -0.432103D+01 22 -0.139435D-01 0.300402D-02 -0.104019D+01 0.195029D-01 0.142307D+00 23 0.475079D-01 -0.176290D-02 -0.970575D+00 -0.617985D-01 0.282058D+01 24 -0.131912D-02 0.205780D-02 0.162705D+00 -0.161481D-01 -0.141616D+01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 21 22 23 24 ________ ________ ________ ________ 21 0.564702D+01 22 -0.697170D-01 0.121395D-01 23 0.840743D-01 0.130274D-03 0.382591D+00 24 0.150548D-01 -0.129163D-02 -0.352333D-01 0.144176D-01 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 1.000 2 -0.170 1.000 3 0.068 -0.026 1.000 4 -0.017 0.052 -0.063 1.000 5 0.018 -0.004 -0.026 0.004 1.000 6 -0.046 0.034 -0.014 0.036 0.174 7 -0.010 0.018 0.008 0.072 -0.014 8 0.050 0.022 -0.008 -0.010 -0.029 9 -0.088 0.016 -0.049 -0.024 0.404 10 -0.030 -0.030 -0.014 0.020 0.708 11 -0.006 0.011 -0.009 -0.036 0.045 12 0.087 -0.096 0.065 -0.027 0.075 13 0.025 0.009 0.024 0.073 0.054 14 0.040 0.033 0.104 0.070 -0.029 15 -0.271 0.002 -0.063 0.003 -0.135 16 0.002 -0.257 0.002 -0.034 0.032 17 0.038 -0.001 0.023 -0.005 -0.109 18 -0.097 0.010 -0.105 -0.062 0.043 19 0.038 -0.051 0.126 -0.042 -0.105 20 -0.098 0.025 -0.023 0.029 -0.034 21 -0.043 0.026 -0.182 0.058 0.098 22 0.041 -0.005 0.107 -0.042 -0.012 23 -0.087 0.011 0.058 0.097 0.028 24 0.070 -0.065 0.043 0.054 -0.031 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 6 7 8 9 10 ________ ________ ________ ________ ________ 6 1.000 7 0.488 1.000 8 -0.020 -0.020 1.000 9 0.012 -0.019 -0.054 1.000 10 0.171 0.020 -0.029 0.303 1.000 11 0.246 0.110 0.024 0.017 0.143 12 0.016 0.040 0.314 0.052 0.071 13 0.495 0.461 0.092 0.019 0.014 14 0.053 0.010 0.455 -0.077 -0.015 15 0.038 0.046 0.040 -0.102 -0.152 16 0.039 0.055 -0.069 0.149 0.055 17 -0.092 -0.056 -0.017 -0.153 -0.095 18 -0.070 -0.110 0.070 0.057 -0.005 19 -0.127 0.037 -0.007 -0.140 -0.061 20 0.037 0.044 -0.267 -0.014 0.009 21 0.105 -0.048 0.010 0.152 0.073 22 -0.107 -0.062 -0.035 -0.038 -0.006 23 -0.024 -0.045 -0.029 0.034 0.023 24 -0.024 0.012 -0.033 -0.011 -0.046 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 11 12 13 14 15 ________ ________ ________ ________ ________ 11 1.000 12 0.058 1.000 13 -0.040 0.074 1.000 14 0.012 0.137 -0.027 1.000 15 0.061 0.055 0.028 0.016 1.000 16 0.059 0.004 0.022 -0.034 0.111 17 -0.085 -0.068 -0.088 0.006 -0.600 18 -0.146 0.016 -0.037 0.014 0.123 19 0.155 0.018 -0.137 0.003 0.061 20 0.034 -0.327 0.007 -0.247 0.054 21 -0.128 -0.012 0.114 0.002 -0.039 22 -0.012 -0.002 -0.092 0.003 -0.080 23 0.014 0.016 -0.032 -0.026 -0.011 24 -0.056 0.012 0.010 0.013 -0.056 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 16 17 18 19 20 ________ ________ ________ ________ ________ 16 1.000 17 -0.447 1.000 18 0.034 -0.075 1.000 19 0.141 -0.054 -0.118 1.000 20 0.008 -0.034 -0.066 0.065 1.000 21 -0.006 -0.025 0.181 -0.866 -0.103 22 -0.146 0.181 -0.632 0.079 0.073 23 0.089 -0.019 -0.105 -0.045 0.258 24 -0.013 0.114 0.091 -0.060 -0.667 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 21 22 23 24 ________ ________ ________ ________ 21 1.000 22 -0.266 1.000 23 0.057 0.002 1.000 24 0.053 -0.098 -0.474 1.000
c7dcd6544a6e0d2e8b13babda3304310db308453
449d555969bfd7befe906877abab098c6e63a0e8
/3176/CH9/EX9.9/Ex9_9.sce
7630d366429f8a3d3e41bdabeea2e8881fce5dc4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
3,222
sce
Ex9_9.sce
//Ex9_9 // Illustration of Gray Scale Erosion and Dilation // Version : Scilab 5.4.1 // Operating System : Window-xp, Window-7 //Toolbox: Image Processing Design 8.3.1-1 //Toolbox: SIVP 0.5.3.1-2 //Reference book name : Digital Image Processing //book author: Rafael C. Gonzalez and Richard E. Woods clc; close; clear; xdel(winsid())//to close all currently open figure(s). function [f]=restoration_filter(v,type,m,n,Q,d) if argn(2) ==2 m=7;n=7;Q=1.5;d=10; elseif argn(2)==5 Q=parameter;d=parameter; elseif argn(2)==4 Q=1.5;d=2; else disp('wrong number of inputs'); end select type case'median' f=MedianFilter(v,[m n]); case'MIN' size1=m; [nr,nc]=size(v); temp=zeros(nr+2*floor(size1/2),nc+2*floor(size1/2)); temp(ceil(size1/2):nr+ceil(size1/2)-1,ceil(size1/2):nc+ceil(size1/2)-1)=v(1:$,1:$); for i=ceil(size1/2):nr+ceil(size1/2)-1 for j=ceil(size1/2):nc+ceil(size1/2)-1 t=temp(i-floor(size1/2):1:i+floor(size1/2),j-floor(size1/2):1:j+floor(size1/2)) ; y=gsort(t); temp2(i-floor(size1/2),j-floor(size1/2))=min(y); end end f=mat2gray(temp2); case'MAX' size1=m; [nr,nc]=size(v); temp=zeros(nr+2*floor(size1/2),nc+2*floor(size1/2)); temp(ceil(size1/2):nr+ceil(size1/2)-1,ceil(size1/2):nc+ceil(size1/2)-1)=v(1:$,1:$); for i=ceil(size1/2):nr+ceil(size1/2)-1 for j=ceil(size1/2):nc+ceil(size1/2)-1 t=temp(i-floor(size1/2):1:i+floor(size1/2),j-floor(size1/2):1:j+floor(size1/2)) ; y=gsort(t); temp2(i-floor(size1/2),j-floor(size1/2))=max(y); end end f=mat2gray(temp2); case'Mid_Point' size1=m; [nr,nc]=size(v); temp=zeros(nr+2*floor(size1/2),nc+2*floor(size1/2)); temp(ceil(size1/2):nr+ceil(size1/2)-1,ceil(size1/2):nc+ceil(size1/2)-1)=v(1:$,1:$); for i=ceil(size1/2):nr+ceil(size1/2)-1 for j=ceil(size1/2):nc+ceil(size1/2)-1 t=temp(i-floor(size1/2):1:i+floor(size1/2),j-floor(size1/2):1:j+floor(size1/2)) ; y=gsort(t); temp2(i-floor(size1/2),j-floor(size1/2))=0.5*(min(y)+max(y)); end end f=mat2gray(temp2); else disp('Unknownfiltertype.') end endfunction ///////////////////////////////////// Main Programm //////////////////// a=imread("Ex9_9.png"); gray=rgb2gray(a); //gray=im2double(gray); figure,ShowImage(gray,'Gray Image'); title('Original X-Ray Image','color','blue','fontsize',4); [M,N]=size(gray); //////////////////////////////////// MIN Filter //////////////////// h=restoration_filter(gray,'MIN',3,3); figure,ShowImage(h,'Recovered Image'); title('Erosion using Flat Structuring Element','color','blue','fontsize',4); /////////////////////////////////// MAX Filter //////////////////// h=restoration_filter(gray,'MAX',3,3); figure,ShowImage(h,'Recovered Image'); title('Dilation using Flat Structuring Element','color','blue','fontsize',4);
d9a0a54facfce0f464e97f1622229c48c72df2ed
449d555969bfd7befe906877abab098c6e63a0e8
/2175/CH6/EX6.10/6_10.sce
b7177d94dc3c345f8c1547dcb33a9ac0fb3ad133
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
587
sce
6_10.sce
clc; pO=7;//bar VO=1.5;//m^3 R_=8.3145; TO=313;//K nO=pO*VO*10^5/(R_*TO*10^3); pC=1;//bar VC=3;//m^3 TC=288;//K nC=pC*VC*10^5/(R_*TC*10^3); cvO=21.07; cvC=20.86; U1=nO*cvO*TO+nC*cvC*TC; U2_T=nO*cvO+nC*cvC; T=U1/U2_T; p=(nO+nC)*R_*T*10^3/(VO+VC)/10^5; disp("final temperature and pressure of mixture is:"); disp("bar",p,"K",T) //part(II) VA=4.5;//m^3 SA_S1_O=nO*R_*log(VA/VO); SA_S2_O=nO*cvO*log(TO/T); q1=SA_S1_O-SA_S2_O; SA_S1_C=nC*R_*log(VA/VC); SA_S2_C=nC*cvC*log(TC/T); q2=SA_S1_C-SA_S2_C; disp("change in entropy is:"); disp("kJ/k",q1+q2);
e82fd2100435c1659f697ef035fe883a06bd8dfc
9cb37875b74a713c93c09fa50ccc70ac0f71ecdb
/GS/SCENARIO/gsQuestionsGame.sce
15ab60d16e9efe5d5a668c6b4223b301cecee893
[]
no_license
jmainpri/move3d-assets
a5b621daaedaaf8784fed0da1e80d029c83f3983
939db49d17a14e052bb58324b70e6112803d3105
refs/heads/master
2021-01-16T17:48:56.669119
2016-02-16T14:04:09
2016-02-16T14:04:09
20,237,987
1
0
null
null
null
null
UTF-8
Scilab
false
false
6,739
sce
gsQuestionsGame.sce
#************************************************************ # Scenario of grande_salle # # date : Tue Apr 27 11:03:06 2010 #************************************************************ p3d_sel_desc_name P3D_ENV grande_salle p3d_sel_desc_name P3D_ROBOT ORANGEBOX p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT JIDO_ROBOT p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.129794 -3.016224 0.000000 0.000000 0.000000 0.000000 0.000000 30.000000 -113.126846 42.015732 137.545242 101.104729 -11.356933 -179.000000 0.015132 0.014652 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT ACHILE_HUMAN1 p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.801377 -2.851524 1.022616 0.000000 0.000000 -180.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 64.124878 30.000000 0.000000 45.909538 0.000000 0.000000 0.000000 -66.927238 19.174044 12.876105 -41.091446 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT LOWTABLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.893806 -0.856195 0.000000 0.000000 0.000000 -90.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT CHAIR1 p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.674533 -0.657080 0.000000 0.000000 0.000000 -40.707962 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT CHAIR2 p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.000000 0.000000 0.000000 0.000000 0.000000 -88.495567 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT TRASHBIN p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.564897 -3.773353 0.000000 0.000000 0.000000 161.061951 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT SHELF p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.651917 -3.002212 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT HRP2TABLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.250000 -3.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT ACCESSKIT p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.384955 -3.188299 0.764012 0.000000 0.000000 -169.911499 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT CUPHANDLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.107670 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT SPACENAVBOX p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.886431 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT BLUE_BOTTLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.160000 -2.700000 0.760000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT ORANGE_BOTTLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.163717 -3.300000 0.764012 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT YELLOW_BOTTLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.160000 -3.000000 0.764000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_sel_desc_name P3D_ROBOT RED_BOTTLE p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_camera_pos 4.921430 -2.486240 1.500000 6.436930 0.000000 0.181250 0.000000 0.000000 1.000000 0.000000
45cdce2aaf61de3744a197e5009d63de4370994d
449d555969bfd7befe906877abab098c6e63a0e8
/3507/CH17/EX17.6/Ex17_6.sce
d13c95412f8302197f7b1a398d167102db3b48ef
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
317
sce
Ex17_6.sce
//chapter17 //example17.6 //page387 // frequency is inversely proportional to thickness // so if thickness is reduced by 1%, frequency increases by 1% printf("If thickness of crystal is reduced by 1 percent, then \nfrequency is increased by 1 percent \nbecause frequency is inversely proportional to thickness \n")
280b438a3839b9bcd3bbbf30c59cab50b0379922
449d555969bfd7befe906877abab098c6e63a0e8
/3831/CH13/EX13.3/Ex13_3.sce
250b3c59ef3ac7dece2995e3c7ed5b8ca1a477b1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,272
sce
Ex13_3.sce
// Example 13_3 clc;funcprot(0); // Given data Q_boiler=300;// W p_1=20.0;// psia p_2s=14.7;// psia T_L=671.67;// R T_H=687.67;// R // Solution // (a) n_T_Carnot=(1-(T_L/T_H))*100;// % W_net_Carnot=(n_T_Carnot/100)*Q_boiler;// watts // (b) // Station 1-Engine inlet p_1=20.0;// psia x_1=1.00;// The quality of steam at Station 1 h_1=1156.4;// Btu/lbm s_1=1.7322;// Btu/lbm.R // Station 2s-Engine exit p_2s=14.7;// psia s_2s=s_1;// Btu/lbm.R s_f2=0.3122;// Btu/lbm.R s_fg2=1.4447;// Btu/lbm.R x_2s=(s_2s-s_f2)/s_fg2;// The quality of steam at Station 2s h_f2=180.1;// Btu/lbm h_fg2=970.4;// Btu/lbm h_2s=h_f2+(x_2s*h_fg2);// Btu/lbm // Station 3-Condenser exit p_3=p_2s;// psia x_3=0;// The quality of steam at Station 3 h_3=h_f2;// Btu/lbm v_3=0.01672;/// ft^3/lbm // Station 4s-Boiler inlet p_4s=p_1;// psia // s_4s=s_3; n_T_max=((h_1-h_2s-(v_3*(p_4s-p_3)))*(144/118.16))/((h_1-h_3-(v_3*(p_4s-p_3)))*(144/118.16));// The isentropic efficiency of the system n_T_max=n_T_max*100;// % printf("\n(a)The Carnot cycle thermal efficiency,(n_T)_Carnot=%1.2f percentage \n The net power output of the engine,W_net=%1.2f watts \n(b)The isentropic efficiency of the Rankine cycle,n_T_max=%1.2f percentage",n_T_Carnot,W_net_Carnot,n_T_max);
60e7c4ff654e6d321ad660a8fd84715751da7951
449d555969bfd7befe906877abab098c6e63a0e8
/3456/CH12/EX12.5/Ex12_5.sce
e906edbb8b9cc4d740da432cf4ee2c1123594825
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
394
sce
Ex12_5.sce
//Example 12.5 //Infinite Life Design //Page No. 422 clc;clear;close; Kt=1.68; //no unit q=0.9; //no unit sigma_ed=42000; //in psi Cs=0.9; //no unit Cf=0.75; //no unit Cz=0.81; //no unit Kf=q*(Kt-1)+1; sigma_e=sigma_ed*Cs*Cf*Cz; sigma_en=sigma_e/Kf; printf('\nFatigue Limit = %g psi',sigma_en);
410f2349de1fb9b154d735f2e28b640984a2d3ca
449d555969bfd7befe906877abab098c6e63a0e8
/1595/CH5/EX5.4/ex5_4.sce
e6913ca8adfec866bee287e95e2044b0b0c220a1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
266
sce
ex5_4.sce
//Frequency Modulation : Transmission : example 5-4 : (pg 214) d=20*10^3; fi=5*10^3; mf=d/fi; a=2*35; printf("\nmf = %.f",mf); printf("\nhighest significant side-frequency component is J7");//from bessel function printf("\nrequired bandwidth is %.f kHz",a);
67dd0e8bd2ba1c1b7af5b395d03bf0db4c436ea0
449d555969bfd7befe906877abab098c6e63a0e8
/1538/CH5/EX5.5/Ex5_5.sce
5bde362b211dd95ff3731386ac37e1ae4ea9d96a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,210
sce
Ex5_5.sce
//example-5.5 //page no-146 //given //wavelength of X-ray lambda=1.54 //A //diameter of powder camera D=114.6 //mm //radius of powder camera R=D/2 //mm //value of l l1=86 l2=100 l3=148 l4=180 l5=188 l6=232 l7=272 //we know that //theta=l/4 //so theta1=l1/4*(%pi)/180 //radians theta2=l2/4*(%pi)/180 //radians theta3=l3/4*(%pi)/180 //radians theta4=l4/4*(%pi)/180 //radians theta5=l5/4*(%pi)/180 //radians theta6=l6/4*(%pi)/180 //radians theta7=l7/4*(%pi)/180 //radians //now values of sin (theta) and sin(theta2) S1=sin(theta1) SS1=(sin(theta1))^2 S2=sin(theta1) SS2=(sin(theta1))^2 S3=sin(theta1) SS3=(sin(theta1))^2 S4=sin(theta1) SS4=(sin(theta1))^2 S5=sin(theta1) SS5=(sin(theta1))^2 S6=sin(theta1) SS6=(sin(theta1))^2 S7=sin(theta1) SS7=(sin(theta1))^2 //so the ratio can be expressed as //3:4:8:11:12:16:19 printf ("from the extinction rule, we notice that this is an FCC Structure") //the lattice parameter for highest bragg's angle is //a=lambda*sqrt(h^2+k^2+l^2)/(2*sin(theta)) //here h^2+k^2+l^2=19 //and let h^2+k^2+l^2 =M for notation M=19 a=lambda*sqrt(M)/(2*sin(theta6)) //A printf ("lattice parameter of material is %f A",a)
0760f5fecc887af299ff0fa2b789203aa2a5a0e4
449d555969bfd7befe906877abab098c6e63a0e8
/1946/CH9/EX9.13/Ex_9_13.sce
0a124036c2b35da051022fcb29ee1ab3e7d7ebcf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
405
sce
Ex_9_13.sce
// Example 9.13;//output photo current clc; clear; close; e=1.6*10^-19;//elecronic charge rp=10^11;//photons per second hf=1.28*10^19;// energy in joule n=1;//efficency C=3*10^8;//SPEED of light in meter per second ht=6.62*10^-34;//plank constt. Po=(rp/hf)*10^9;//incident optical power in micro watt Ip=(n*Po*10^-6*e)/(hf);//output photo current disp(Ip,"output photo current in ampere is")
4c375898bd5eaedaa1d62549b701b0e907bfbea4
449d555969bfd7befe906877abab098c6e63a0e8
/3739/CH4/EX4.8/EX4_8.sce
d2c760f8043c58751041d9563ec7340f4b79d44d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
592
sce
EX4_8.sce
//Chapter 4, Example 4.8, page 149 clc //Initialisation tec1=10**18 //total electron content f=1.5 //frequency in Hertz tec2= 10**17 //total electron content //Calculation teta = 600 //Faraday rotation in mRadian T=5 //time delay in ns gd=0.5 //time delay difference in ns //Results printf("(1) Faraday rotation = %d mRad",teta) printf("\n(2) Time delay = %d ns",T) printf("\n(3) G/D = %.1f ns",gd)
272666d64402fbc64518fbaa01acd212fd42d99b
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set7/s_Electronic_Measurements_And_Instrumentation_R._K._Rajput_2096.zip/Electronic_Measurements_And_Instrumentation_R._K._Rajput_2096/CH1/EX1.44/ex_1_44.sce
a8cfbb23c76940eb2fb2acae32d23a3045451b12
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
301
sce
ex_1_44.sce
errcatch(-1,"stop");mode(2);//Example 1.44://limiting error ; ; lp=1.2;//limiting error in the measurement of power ll=0.8;//limiting error in the measurement of current lr=lp+2*ll;//limting error in meaurement of resistance disp(lr," peercentage limiting error in percentage is ±") exit();
08557f04a1fa30d6334f34f3ea8003a316d6b92c
449d555969bfd7befe906877abab098c6e63a0e8
/3802/CH3/EX3.14/Ex3_14.sce
a13026bf7fa4d444caea243f7d2215f14ed51511
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
875
sce
Ex3_14.sce
//Book Name:Fundamentals of Electrical Engineering //Author:Rajendra Prasad //Publisher: PHI Learning Private Limited //Edition:Third ,2014 //Ex3_14.sce clc; clear; //i(t)=sqrt(2)*1e-4*cos(4*10^7*t); a1=complex(5,4.04);b1=complex(0,-0.04);c1=1/10; //these are the coefficient values of VA,VB and source obtained from the node A in the given circuit a2=complex(200,-0.04);b2=complex(1.2,-1.56);c2=0; //these are the coefficient values of VA,VB and source obtained from the node B in the given circuit del=det([a1 b1;a2 b2]); delB=det([a1 c1;a2 c2]); VB=delB/del; VB_mag=sqrt(real(VB)^2+imag(VB)^2); VB_ang=atand(imag(VB)/real(VB))+180; printf("\n Vo=%1.1f angle:%3.1f degree \n",VB_mag,VB_ang) //Answer vary due to roundoff error //Result:Vo(t)=sqrt(2)*1.5*cos(4*10^7*t+157.7)
d69bf5036f76c4c39744067b29f0f73e6e211d20
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH12/EX12.30/example12_30.sce
43cc6470ca77df4a3d75602c9dc6238ddeff6c3d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
416
sce
example12_30.sce
clc // Given that f = 12e6 // oscillator frequency of cyclotron in Hz r = 0.53 // radius of dee in meter e = 1.6e-19 // charge on an electron in Coulomb // Sample Problem 30 on page no. 12.43 printf("\n # PROBLEM 30 # \n") printf(" Standard formula used \n") printf(" f = B*q/(2*pi*m) \n") B = (2 * %pi * f * 2 * 1.67e-27) / e printf("\n Value of magnetic induction needed to accelerate deuteron in it is %f T.",B)
d946ab9f997221a33c5528b26e15fee283cb123b
1573c4954e822b3538692bce853eb35e55f1bb3b
/DSP Functions/allpassbpc2bpc/test_9.sce
d801dd719c870514f5496c55ee69d0e8ecdb5293
[]
no_license
shreniknambiar/FOSSEE-DSP-Toolbox
1f498499c1bb18b626b77ff037905e51eee9b601
aec8e1cea8d49e75686743bb5b7d814d3ca38801
refs/heads/master
2020-12-10T03:28:37.484363
2017-06-27T17:47:15
2017-06-27T17:47:15
95,582,974
1
0
null
null
null
null
UTF-8
Scilab
false
false
357
sce
test_9.sce
// Test # 9 : Valid input test case #1 exec('./allpassbpc2bpc.sci',-1); [n,d]=allpassbpc2bpc([0.3,0.7],[0.2,0.8]); disp(d); disp(n); // //Scilab Output //d=1. 1.355D-17 + 0.2212317i //n=1.355D-17-0.2212317i 1. //Matlab Output //n=0.0000 - 0.2212i 1.0000 + 0.0000i //d=1.0000 + 0.0000i 0.0000 + 0.2212i
6193517a815d5d8a99248416b5b2503c7a0d95af
449d555969bfd7befe906877abab098c6e63a0e8
/3640/CH3/EX3.8/Ex3_8.sce
4a65edec298954fc05bc0154d90ede5f02e9d526
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
446
sce
Ex3_8.sce
clc //example below is an extension of Ex3_7 //values below from Ex3_7 V2B=240 //secndary side voltage a=10 //0.8 pf lagging V1=2496.44 V=V1/a //secondary voltage at full load mprintf("|V1/a|=%fV\n",V) Regulation=(V-V2B)/V2B //ans may vary due to roundoff error mprintf("Regulation=(|V1/a|-V2B)/V2B=%f\n",Regulation) //0.8 pf leading V1=2347.8 V=V1/a mprintf("V at 0.8 pf leading=%fV\n",V) mprintf("Regulation=%f\n",(V-V2B)/V2B)
357dce285998ee7cf0b6fc9f7d1b73348cb9584f
717ddeb7e700373742c617a95e25a2376565112c
/964/CH1/EX1.2/1_2.sce
3787623365177697c61f583565d2527530b84b5b
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
332
sce
1_2.sce
clc; clear; g=9.8;//m/s^2; acceleration due to gravity m=68.1;//kg c=12.5;//kg/sec; drag coefficient count=2; v(1)=0; disp(v(1),"v(m/s)=",0,"Time(s)=") for i=2:2:12 v(count)=v(count-1)+(g-c*v(count)/m)*(2); disp(v(count),"v(m/s)=",i,"Time(s)=") count=count+1; end disp(g*m/c,"v(m/s)=","infinity","Time(s)=")
aaacc3043ec4b67567d492700a21ede9271f64d0
449d555969bfd7befe906877abab098c6e63a0e8
/1586/CH17/EX17.7/EX17_7.sce
21656b1bcfafd0c839dcf3eceee90345f91fab35
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,072
sce
EX17_7.sce
clc;funcprot(0);//EXAMPLE 17.7 // Initialisation of Variables f1=0.4;...............//Volume fraction of Fiber f2=0.6;...............//Volume fraction of Aluminium rho1=2.36;...........//Density of Fibers in g/cm^3 rho2=2.70;...........//Density of Aluminium in g/cm^3 psi1=55*10^6;..............//Modulus of elasticity of Fiber in psi psi2=10*10^6;..............//Modulus of elasticity of Aluminium in psi ts1=400000;..............//Tensile strength of fiber in psi ts2=5000;..............//Tensile strength of Aluminium in psi //Calculations rho=(f1*rho1)+(f2*rho2);........//Density of mixture in g/cm^3 Ec1=(f1*psi1)+(f2*psi2);........//Modulus of elasticity of mixture in psi TSc=(f1*ts1)+(f2*ts2);........//Tensile Strength of mixture in psi Ec2=1/((f1/psi1)+(f2/psi2));........//Modulus of elasticity perpendicular to fibers in psi disp(rho,"Density of mixture in g/cm^3:") disp(Ec1,"Modulus of elasticity of mixture in psi:") disp(TSc,"Tensile Strength of mixture in psi:") disp(Ec2,"Modulus of elasticity perpendicular to fibers in psi:")
49879e8e8186d0017de8a1101e03d8f349f5061b
449d555969bfd7befe906877abab098c6e63a0e8
/2024/CH9/EX9.3/9_3.sce
ec7847d493600321785452f7369b1fbcf6ab8605
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
301
sce
9_3.sce
clc //Initialization of variables rpt=0.569 b=0.8 p1=50 //psia cp=0.24 T1=520 //R k=1.4 v2=12.2 v1=3.86 m=1 //calculations pt=p1*rpt Vtrev=223.77*sqrt(cp*T1*(1- rpt^((k-1)/k)) /(1- b^4 *(v1/v2)^2)) vt=(p1/pt)^(1/k) *v1 At=m*vt/Vtrev //results printf("Area of throat = %.5f ft^2",At)
f0f9b032065331450828b6f44c026f0121206988
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/vco/vco9.sce
4fe8b2e16c6f0a9e805faf0c1ca08e427503811f
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
280
sce
vco9.sce
//i/p vector contains zeros x=[1 .2 .3 0 .2 .3 1 0 -1]; y=vco(x,100,550); disp(y); ////output // column 1 to 6 // // 0.4154150 - 0.8090170 - 0.6548607 0.4154150 0.9740119 - 0.1423148 // // column 7 to 9 // // - 0.6548607 0.4154150 0.4154150
f97d6b6458a10fb1366720b1c94a8cf0f50c69b9
449d555969bfd7befe906877abab098c6e63a0e8
/61/CH9/EX9.2/ex9_2.sce
f85b98f2dc30d39a6ac2a321a21672f53bd46654
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
278
sce
ex9_2.sce
//ex9.2 V_in=176*10^-3; R_in=2.9*10^3; //total input resistance from previous question A_p=42429; //power gain from previous question V_CC=15; I_CC=0.6; //emitter current P_in=V_in^2/R_in; P_out=P_in*A_p; P_DC=I_CC*V_CC; eff=P_out/P_DC; disp(eff,'efficiency')
b8059ab9a0f7ca9fcd7de7e837e92e3eb31b389d
449d555969bfd7befe906877abab098c6e63a0e8
/1826/CH3/EX3.8/ex3_8.sce
abb9c52f38884a265f82bfe2237d90c504b09054
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
148
sce
ex3_8.sce
// Example 3.8, page no-94 clear clc lam=0.1//nm T=(2.516^2)/(lam)^2 printf("temperature of thermal neutron corresponding to 1A is %.0f K",T)
e8b11625d113c177ef291ae4917608e175e1947b
449d555969bfd7befe906877abab098c6e63a0e8
/3638/CH8/EX8.3/Ex8_3.sce
bff1d201ca1724fc2f07a986793ff5c4e66b8abd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
491
sce
Ex8_3.sce
//Introduction to Fiber Optics by A. Ghatak and K. Thyagarajan, Cambridge, New Delhi, 1999 //Example 8.3 //OS=Windows XP sp3 //Scilab version 5.5.2 clc; clear; //given lambda0=1300e-9;//operating wavelength of single mode fiber in m omega=5e-6;//spot size of fiber in m alphat=0.1;//maximum value of loss in dB u=sqrt(alphat*(omega^2)/4.34);//corresponding maximum value of transverse offset in m mprintf("Maximum value of u=%.2f um",u/1e-6);//division by 1e-6 to convert in um
3685835d91ef4697ee6c465ee64c436455058d33
6227c5ef4e1c5d72cdebd6eac81f82161dda7e17
/digi_dc_dc/Scilab/PIDtuning/PID_regulator.sci
88f488b04e36aa6bdd59bf45cf4647c2d41c6539
[]
no_license
maxsimmonds1337/Scilab
b4e8a03a9fbeda4d8f6e51e07d205bcf51addce8
b413659e2b697565c24ad440d158f5bd28203570
refs/heads/master
2022-11-04T23:17:50.045864
2020-06-13T20:35:24
2020-06-13T20:35:24
272,081,285
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,849
sci
PID_regulator.sci
//Function to calculate a PID regulator from a Transfer function a crossover frecuency and phase margin function [Kp,Kd,Ki,Tz,Tuz,Gcz,p_m,fcross,g_m,f_pi]=PID_regulator(fc,pm,fs,H,Gcompensate) //H is the sensor that gets the variable to regulate, resisitive sensor in voltage mode //fc crossover frequency pm phase margin in degrees Gcompensate the transfer function to compensate //fs sampling freq //stacksize('max') //Uncompensated loop gain Tuz=H*Gcompensate //Cross-over pulsation wc=2*%pi*fc; wp=2*fs; //pole due to the discrete nature //wcp=2*fs*tan(wc/fs*1/2); //cross over frequency in P domain as defined in page 127 //wcp=10.3e3 //fcp=wcp/(2*%pi); //To evaluate the gain and phase //Evaluation of tuz at the desired crossover frequency response=repfreq(Tuz,fc); m=abs(response); //magnitude in natural units [mdB,p]=dbphi(response);// p is phase in degrees note that it has a wrap at 180 degree //This prewarp is the one that makes problems //if(real(response)<0) then // if(and([real(response)<0,imag(response)>0])) then pto180=180-p p=-180-pto180 //Unwrapping the phase end p=p*%pi/180; pmu=%pi+p;//phase margin uncompensated is the phase margin you will have if you just escale Tuz so mag at wc is 0 //Check that the phase margin is achievable with PID at given crossover frequency wp=2*fs; //pole due to the discrete nature wcp=2*fs*tan(wc/fs*1/2); //cross over frequency in P domain as defined in page 127 pw= atan(wcp/wp) //phase effect maxpm= pmu +%pi/2 - pw;//Maximum phase margin pm=pm/180*%pi; // pm expressed in rad if pm>maxpm then disp('Phase boost needed at fc above 90 deg (max achieved by PID)') abort//exit function elseif(pm<pmu) disp('No phase boost needed use PI') abort //exit function end ////// Very careful //pmu=max(pmu,0) wPD=wcp/tan(pm-pmu+pw)//pulsation of the zero for the phase boost //according to 4.29 (pag 128) pag 133 includes unwrapping in this calculation i have done it in line 27 //The gain at that frequency is chosen so the open-loop gain is 0 dB Gpd_0=1/m*sqrt(1+(wcp/wp)^2)/sqrt(1+(wcp/wPD)^2) //Zero of the PI chosen so frequency is 1/20 of the crossover frequeuency wPI=2*%pi*fc/20; Gpi_inf=1; //PI gain at infinity 1 so it does not affect //Paralell PID Gains from page 125 Kp=Gpi_inf*Gpd_0*(1+wPI/wPD-2*wPI/wp) Ki=2*Gpi_inf*Gpd_0*wPI/wp; Kd=1/2*Gpi_inf*Gpd_0*(1-wPI/wp)*(wp/wPD-1); //Paralell PID regulator transfer function z=poly(0,'z') //definition of Z tfPID=Kp+Ki/(1-z^-1)+Kd*(1-z^-1); Gcz=syslin(1/fs,tfPID) //PID system Tz=Gcz*Tuz//Open-loop gain //Representations of the frequency responses frq=1e0:1:fs/2; scf() subplot(1,2,1) bode(Gcz,frq,'PID transfer') subplot(1,2,2) bode([Tz; Tuz],frq,['Compensated','Uncompensated']) //Phase and gain margins [fcross,p_m,f_pi,g_m]=margins(Tz,frq) endfunction
4be9f142b5091ffbf0f351a9d81cf50c79cab801
449d555969bfd7befe906877abab098c6e63a0e8
/137/CH12/EX12.7/prob12_7.sce
17a609e649fcf31240ba00baee3b81586a1eb333
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
421
sce
prob12_7.sce
// page no 555 // Example 12.7 clc; B=4; SNR=20.5; // given r=20*(B+1);//as B=4 //output SNR is given as So/No=3*B^2*r*(m^2'/mp^2) m=4;// m=mp/6m is given SNRt=3*(B^2)*r*(1/m)^2; disp(SNRt,"threshold SNR = "); // to calculate output SNR in dB SNRdB=20*log(SNR); disp(+'dB',SNRdB,"Threshold SNR in dB = "); if 20.5< SNRdB disp("system is in threshold") else disp('system is not in threshold"); end
345db962df2de5f8d4c23c4176e32f25ddd46490
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/fftfilt/fftfilt10.sce
a7e25b29994443bdf378585edaf18e326791e148
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
130
sce
fftfilt10.sce
x=[0 0 0 0 0 0 0 0]; b=[0 0 0 0 00 0 0 0]; y=fftfilt(b,x); disp(y); ////output // 0. 0. 0. 0. 0. 0. 0. 0.
9783746ed2607b949839139a4e81e6357f3fa45f
449d555969bfd7befe906877abab098c6e63a0e8
/770/CH2/EX2.11/2_11.sce
a31786648f7445c548f7a68e26c7d676ed6332af
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
3,557
sce
2_11.sce
clear; clc; funcprot(0); // Example - 2.11 // Page number - 53 printf("Example - 2.11 and Page number - 53\n\n"); // Given P = 6*10^(6);// [Pa] - Pressure P_max = 12*10^(6);// [Pa] - Max pressure to which cylinder may be exposed T = 280;//[K] - Temperature R = 8.314;//[J/mol*K] - Universal gas constant //(1).Assuming ideal gas behaviour, V_ideal = (R*T)/P;//[m^(3)/mol] //Now when temperature and pressure are increased,the molar volume remains same,as total volume and number of moles are same. //For max pressure of 12 MPa,temperature is T_max_ideal = (P_max*V_ideal)/R; printf(" (1).The maximum temperature assuming ideal behaviour is %f K\n",T_max_ideal); // (2).Assuming virial equation of state // For component 1 (methane),at 280 K Tc_1 = 190.6;//[K] Pc_1 = 45.99*10^(5);//[N/m^(2)] Vc_1 = 98.6;//[cm^(3)/mol] Zc_1 = 0.286; w_1 = 0.012; Tr_1 = T/Tc_1;//Reduced temperature B1_0 = 0.083 - (0.422/(Tr_1)^(1.6)); B1_1 = 0.139 - (0.172/(Tr_1)^(4.2)); //We know,(B*Pc)/(R*Tc) = B_0+(w*B_1) B_11 = ((B1_0 + (w_1*B1_1))*(R*Tc_1))/Pc_1;//[m^(3)/mol] //For component 2 (Propane) Tc_2 = 369.8;//[K] Pc_2 = 42.48*10^(5);//[N/m^(2)] Vc_2 = 200;//[cm^(3)/mol] Zc_2 = 0.276; w_2 = 0.152; Tr_2 = T/Tc_2;// Reduced temperature B2_0 = 0.083 - (0.422/(Tr_2)^(1.6)); B2_1 = 0.139 - (0.172/(Tr_2)^(4.2)); B_22 = ((B2_0 + (w_2*B2_1))*(R*Tc_2))/Pc_2;//[m^(3)/mol] //For cross coeffcient y1 = 0.8;//mole fraction of component 1 y2 = 0.2;//mole fraction of component 2 Tc_12 = (Tc_1*Tc_2)^(1/2);//[K] w_12 = (w_1 + w_2)/2; Zc_12 = (Zc_1 + Zc_2)/2; Vc_12 = (((Vc_1)^(1/3) + (Vc_2)^(1/3))/2)^(3);//[cm^(3)/mol] Vc_12 = Vc_12*10^(-6);//[m^(3)/mol] Pc_12 = (Zc_12*R*Tc_12)/Vc_12;//[N/m^(2)] Tr_12 = T/Tc_12; //At reduced temperature,Tr_12, B_0 = 0.083 - (0.422/(Tr_12)^(1.6)); B_1 = 0.139 - (0.172/(Tr_12)^(4.2)); B_12 = ((B_0 + (w_12*B_1))*R*Tc_12)/Pc_12;//[m^(3)/mol] //For the mixture B = y1^(2)*B_11+2*y1*y2*B_12 + y2^(2)*B_22;//[m^(3)/mol] //Now given virial equation is, Z=1+(B*P)/(R*T) Z = 1 + (B*P)/(R*T); //Also Z = (P*V)/(R*T).Therefore, V_real = (Z*R*T)/P;//[m^(3)/mol] // This molar volume remains the same as the volume and number of moles remains fixed. // Sice Z is a function of presure and temperature,we shall assume a temperature,calculate Z and again calculate temperature,till convergence is obtained. // We will use the concept of iteration to compute the convergent value of temperature // Let us start with the temperature at ideal conditions i.e T = 560 K, T_prime = 560;//[K] fault = 10; while(fault > 1) T_prime_r1 = T_prime/Tc_1; B_prime1_0 = 7.7674*10^(-3); B_prime1_1 = 0.13714; B_prime_11 = ((B_prime1_0 + (w_1*B_prime1_1))*(R*Tc_1))/Pc_1;//[m^(3)/mol] //Similarly for component 2, T_prime_r2 = T_prime/Tc_2; B_prime2_0 = -0.1343; B_prime2_1 = 0.10887; B_prime_22 = ((B_prime2_0 + (w_2*B_prime2_1))*(R*Tc_2))/Pc_2;//[m^(3)/mol] //For cross coefficient (assuming k12=0) //Tc_12 , w_12 , Zc_12 , Vc_12 and Pc_12 have already been calculated above,now T_prime_r12 = T_prime/Tc_12;// //At reduced temperature,T_prime_r12, B_prime_0 = 0.083 - (0.422/(T_prime_r12)^(1.6)); B_prime_1 = 0.139 - (0.172/(T_prime_r12)^(4.2)); B_prime_12 = ((B_prime_0+(w_12*B_prime_1))*R*Tc_12)/Pc_12;//[m^(3)/mol] //For the mixture B_prime = y1^(2)*B_prime_11 + 2*y1*y2*B_prime_12 + y2^(2)*B_prime_22;//[m^(3)/mol] Z_prime = 1 + (B_prime*P_max)/(R*T_prime); T_new = (P_max*V_real)/(Z_prime*R); fault = abs(T_prime - T_new); T_prime = T_new; end printf(" (2).The maximum temperature assuming the gas to follow virial equation of stste is %f K\n",T_new);
825fa4376204d4c95fd1327d56147b84bed299f2
449d555969bfd7befe906877abab098c6e63a0e8
/243/CH11/EX11.1/11_01.sce
6caabe4c7dcc33690df9f319c5b4ac6e960357b0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
359
sce
11_01.sce
//Example No. 11_01 //First order forward difference //Pg No. 348 clear ;close ;clc ; x = poly(0,"x"); deff('F = f(x)','F = x^2'); deff('DF = df(x,h)','DF = (f(x+h)-f(x))/h'); dfactual = derivat(f(x)); h = [0.2 ; 0.1 ; 0.05 ; 0.01 ] for i = 1:4 y(i) = df(1,h(i)); err(i) = y(i) - horner(dfactual,1) end table = [h y err]; disp(table)
cac647fac3906917601ba964b7ae4ba1286f915c
449d555969bfd7befe906877abab098c6e63a0e8
/3821/CH5/EX5.1/Example5_1.sce
1290e5e804f525e1675aa2eff33ca930f6d9e0ff
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
385
sce
Example5_1.sce
//Example 5.1 Page No:81 //Find Diameter of the rod //Input data clc; clear; MSR=3.2; //Main scale reading of cylindrical rod in cm NCD=7; //Number of coinciding Vernier Scale division Lc=0.1*10^-3; //Least count of the instrument in mm //Calculation DOR=MSR+(NCD*Lc); //Diameter of the rod //Output printf('Diameter of the rod= %f cm \n',DOR);
f3fb64ff80f47dd8de7da09e4c11d329a1707ef8
b29e9715ab76b6f89609c32edd36f81a0dcf6a39
/ketpic2escifiles6/Phparadata.sci
835c173e5185190539e879fc8d4ecdbd1eebfb21
[]
no_license
ketpic/ketcindy-scilab-support
e1646488aa840f86c198818ea518c24a66b71f81
3df21192d25809ce980cd036a5ef9f97b53aa918
refs/heads/master
2021-05-11T11:40:49.725978
2018-01-16T14:02:21
2018-01-16T14:02:21
117,643,554
1
0
null
null
null
null
UTF-8
Scilab
false
false
112
sci
Phparadata.sci
// 08.08.21 // 09.10.27 function Out=Phparadata(VL,FaceL) Out=Facesdata(list(VL,FaceL),'para'); endfunction
6c2f19adf8359e521a33982a52de361f3246ac57
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/macros/m2sci/sci_qz.sci
4c4865ae9fabc7c1a7c74583a23dea72224a8942
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
506
sci
sci_qz.sci
function [stk,txt,top]=sci_qz() // Copyright INRIA txt=[] m=stk(top)(3) if m=='?' then m=stk(top-1)(3),end if lhs==1 then stk=list('gschur('+stk(top-1)(1)+','+stk(top)(1)+')','0',m,m,'1') else s=list('gschur('+stk(top-1)(1)+','+stk(top)(1)+')','-1',m,m,'1') if lhs==5 then [AA, BB, Q, Z, V]=lhsvarsnames() txt=[txt;lhsargs([AA, BB, Q, Z, V])+' = mtlb_qz'+.. rhsargs([stk(top-1)(1),stk(top)(1)])] s=list(' ','-2','m','m','0') end stk=list() for k=1:lhs stk(k)=s end end
6d6b39cf7ac8184d5c9c8c054e5a56d8b63d8008
9cdd26fd695db9d56130f413ee657965f681081c
/models/epidemic_final_size/ere_sir.sce
8e8dcd6ba6b6048e8f659fd3861dacdb276dbeac
[ "MIT" ]
permissive
epimodels/epicookbook
584006d90ce986ff8b5499d652e5e0a3980b76da
496088ddc8fc913505d92877e0a687c81976c8f2
refs/heads/master
2020-06-20T22:52:40.839163
2019-07-17T16:28:15
2019-07-17T16:28:15
197,278,302
0
1
null
null
null
null
UTF-8
Scilab
false
false
473
sce
ere_sir.sce
function final_size=SIR_fs(N,bet,gamm) final_size = zeros(N+1,1); final_size(2) = 1; for Z2 = 0:N; for Z1 = Z2+1:N-1 p1 = 1 / ( 1 + gamm/(bet*(N-Z1))); final_size(Z1+2) = final_size(Z1+2) + final_size(Z1+1)*p1; final_size(Z1+1) = final_size(Z1+1)*(1-p1); end end endfunction N = 20; bet = 2/(N-1); gamm = 1; tic(); final_size=SIR_fs(N,bet,gamm); toc() bar(0:N,final_size)
87f29d04d202d8332bd730dc3c541c760a5f9ba7
1b3c63cb7f854378c5f1991637692ae2bf8265ac
/lqry/testlqry.sce
5fc1d21c16732fefa0b7df788b432f0bdaa9f64b
[]
no_license
FOSSEE-Internship/FOSSEE-Control-Systems-Toolbox
9900107267e5f508f77858d128e01293966e9e10
2878a38e4e55806b1777f9da2e0395f321e1c952
refs/heads/master
2020-12-02T18:20:34.659219
2017-10-26T12:26:57
2017-10-26T12:26:57
96,516,803
0
1
null
2017-10-26T13:44:56
2017-07-07T08:24:44
Scilab
UTF-8
Scilab
false
false
370
sce
testlqry.sce
sys1=ssrand(3,1,3); //randomly generated sysytem [a1,b1,c1,d1]=abcd(sys1); [nx1,nu1]=size(sys1.b); q1=rand(nx1,nx1);q1=(q1+q1')/2; r1=rand(nu1,nu1);r1=(r1+r1')/2; n1=rand(nu1,nx1); [k1,x1]=lqry(sys1,q1,r1,n1) //%continuos t1=0.1 sys2=dscr(sys1,t1); [k2,x2]=lqry(sys2,q1,r1,n1) //discrete savematfile('testlqqry.mat','a1','b1','c1','d1','q1','r1','n1','t1')
ab91b364a8e6bd46e02de3b1a29a7afe95cc949a
449d555969bfd7befe906877abab098c6e63a0e8
/2078/CH5/EX5.12/Example5_12.sce
d3cec04085a3e5e9f390a9e5d823a62bef0f989b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
466
sce
Example5_12.sce
//Exa 5.12 clc; clear; close; //Given data : P=50*10^6;//W f=50;//Hz l=150;//km pf=0.8;//power factor VRL=110*10^3;//Volt VR=VRL/sqrt(3);//Volt cos_fi_r=pf; sin_fi_r=sqrt(1-cos_fi_r^2); R=0.1*l;//ohm XL=0.5*l;//ohm Z=R+%i*XL;//ohm IR=P/(sqrt(3)*VRL*pf);//A IR=IR*(cos_fi_r-%i*sin_fi_r);//A Y=3*10^-6*l;//S ICR=1/2*%i*Y*VR;//A IL=IR+ICR;//A VS=VR+IL*Z;//Volt VSL=sqrt(3)*abs(VS);//Volt disp(VSL/1000,"Sending end line to line voltage(kV) :");
69f9ab62e5c7e716619997a92a9530bb5a1f6c9b
449d555969bfd7befe906877abab098c6e63a0e8
/1016/CH7/EX7.1/ex7_1.sce
1fbf8dc39ada46c007cd311fdc2cd511f3b95868
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
135
sce
ex7_1.sce
clc;clear; //Example 7.1 //given data W=11000;//wavelength in angrstrom //calcuations Eg=W/12400; disp(Eg,'Energy Gap in eV')
c6a602b0f26adeb7ad3477c029ffa6d164e3ee91
449d555969bfd7befe906877abab098c6e63a0e8
/689/CH8/EX8.11/11.sce
772b0ce81402201dcfc8033c9f9c25a98743c613
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
287
sce
11.sce
clc; funcprot(0); //Example 8.11 Absolute Coefficients with metric units // Initialisation of variables S = 35; V = 40; alpha = 4; rho = 0.125; // Calculations Cl = 0.76; // Value of Cl from fig 8.10 L = Cl*(rho/2)*S*V^2; //Results disp(L,"Required Lift (Kg):");
b96475265923dd84bc87cd506cad61b48f365c75
449d555969bfd7befe906877abab098c6e63a0e8
/884/CH1/EX1.3/Example1_3.sce
e660dba03444839df160921d5190bfdc080f7cca
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
585
sce
Example1_3.sce
// Conversion among temperature scales clear; clc; printf("\t Example 1.3\n"); //for Solder C=224;//melting point of solder, C F=C*9/5+32;//melting point of solder, F printf("\t the melting point of solder is : %4.0f F\n",F); //for Helium F=-452;//boiling point of helium, F C=(F-32)*5/9;//boiling point of helium, C printf("\t the boiling point of helium is : %4.0f C\n",C); //for Mercury C=-38.9;//meltiing point of mercury, C K=C+273.15;//meltiing point of mercury, K printf("\t the meltiing point of mercury is : %4.2f K\n",K); //End
5151b076e2a43aa9105bdb932119ca4c8773f17f
a8392820bef2e8fe1ff5fb93c9bdb6b782f6a970
/Assignment 3/Code/combined_pe.sce
901fc21ac5106003d3988fec6abbca34542e703f
[]
no_license
debarnab-mitra/Wireless-and-Mobile-communication
0704c8bd7a6f752d13e263f1a2e8f67394a5a01a
49d305f7f70ff1cec2d8b6394a66ca8e97da1b3e
refs/heads/master
2020-04-02T20:48:34.115870
2018-10-26T05:06:27
2018-10-26T05:06:27
154,779,847
0
0
null
null
null
null
UTF-8
Scilab
false
false
7,653
sce
combined_pe.sce
clear f_samp = 2000*10^6; fc = 800*10^6; Ts = 1/f_samp; n = linspace(1,2000,2000); n_points = 10000; A = linspace(0.1,10,20)*(10^-3); j = 1; R = 100*10^(-3) PLdB = 128.1 + 37.6*log10(R); PL = sqrt(10^(-PLdB/10)/2); while j <=20; I = 2*grand(n_points, 1, "bin", 1, 0.5) - 1; Q = 2*grand(n_points, 1, "bin", 1, 0.5) - 1; //coef of cos2pifct and sin2pifct X = A(j)*complex(I,Q); //fading HR = grand(n_points, 1, "nor", 0, 1/sqrt(2)); HI = grand(n_points, 1, "nor", 0, 1/sqrt(2)); H_sq = grand(n_points,1,"exp",1/sqrt(2)); h = complex(HR,HI); fc = 800*10^6; i = 1; //Noise noise_powerdBm = -100; //sigma = (0.001*(10^(noise_powerdBm/20)))/2; No = 10^-13; sigma = sqrt(No/2); NR = grand(n_points, 1, "nor", 0, sigma); NI = grand(n_points, 1, "nor", 0, sigma); N = complex(NR,NI); num_error = 0; bit_error = 0; while i <= n_points ////y = |h|^2X + h*N //y = (HR(i)^2 + HI(i)^2)*PL*X(i) + N(i); //instead of this //for each X take 2000 samples of cos2pifct and sine2pifct and multiply with X //then multiple with PL*h //then addd noise //then again multiple with same samples and avg y = (HR(i)^2 + HI(i)^2)*PL*(real(X(i))*cos(2*%pi*fc*n*Ts) + imag(X(i))*sin(2*%pi*fc*n*Ts)) + grand(1 ,length(n), "nor", 0, sigma); //demodulation steps y_demod_I = y*(cos(2*%pi*fc*n*Ts))'; y_demod_Q = y*(sin(2*%pi*fc*n*Ts))'; I_demod(i) = sign(y_demod_I); Q_demod(i) = sign(y_demod_Q); if (I(i) ~= I_demod(i)) or (Q(i) ~= Q_demod(i)) num_error = num_error + 1; end if (I(i) ~= I_demod(i)) bit_error = bit_error + 1; end if (Q(i) ~= Q_demod(i)) bit_error = bit_error + 1; end i = i+1; end Pe(j) = num_error/n_points; P_bit_error(j) = bit_error/(2*n_points); j = j+1; end sym_t = 10^-6; BER = P_bit_error/sym_t; plot(10*log10((A.^2)/0.001) - noise_powerdBm,(Pe),'colo','blue'); //plot(10*log10((A.^2)/(10^-13)),(P_bit_error),'bs-'); //plot(10*log10((A.^2)/(10^-13)),BER,'bs-'); //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// clear f_samp = 2000*10^6; fc = 800*10^6; Ts = 1/f_samp; n = linspace(1,2000,2000); n_points = 10000; A = linspace(0.1,10,20)*(10^-3); j = 1; R = 100*10^(-3) PLdB = 128.1 + 37.6*log10(R); PL = sqrt(10^(-PLdB/10)/2); while j <=20; I = 2*grand(n_points, 1, "bin", 1, 0.5) - 1; Q = 2*grand(n_points, 1, "bin", 1, 0.5) - 1; //coef of cos2pifct and sin2pifct X = A(j)*complex(I,Q); //fading HR = zeros(3,n_points); HI = zeros(3,n_points); HR_1 = grand(n_points, 1, "nor", 0, 1/sqrt(2)); HI_1 = grand(n_points, 1, "nor", 0, 1/sqrt(2)); //H_sq = grand(n_points,1,"exp",1/sqrt(2)); HR_2 = grand(n_points, 1, "nor", 0, 1/sqrt(2)); HI_2 = grand(n_points, 1, "nor", 0, 1/sqrt(2)); HR_3 = grand(n_points, 1, "nor", 0, 1/sqrt(2)); HI_3 = grand(n_points, 1, "nor", 0, 1/sqrt(2)); h = complex(HR,HI); fc = 800*10^6; i = 1; //Noise noise_powerdBm = -100; //sigma = (0.001*(10^(noise_powerdBm/20)))/2; No = 10^-13; sigma = sqrt(No/2); NR = grand(n_points, 1, "nor", 0, sigma); NI = grand(n_points, 1, "nor", 0, sigma); N = complex(NR,NI); num_error = 0; while i <= n_points //y = |h|^2X + h*N signal_powerdB_1 = HI_1(i)^2+HR_1(i)^2; signal_powerdB_2 = (HI_2(i)^2+HR_2(i)^2); signal_powerdB_3 = (HI_3(i)^2+HR_3(i)^2); [index,val] = max(signal_powerdB_1,signal_powerdB_2,signal_powerdB_3); //y = val*PL*X(i) + N(i); //y = (sqrt(H_sq(i)))*PL*X(i) + N(i); y = val*PL*(real(X(i))*cos(2*%pi*fc*n*Ts) + imag(X(i))*sin(2*%pi*fc*n*Ts)) + grand(1 ,length(n), "nor", 0, sigma); //demodulation steps y_demod_I = y*(cos(2*%pi*fc*n*Ts))'; y_demod_Q = y*(sin(2*%pi*fc*n*Ts))'; I_demod(i) = sign(y_demod_I); Q_demod(i) = sign(y_demod_Q); if (I(i) ~= I_demod(i)) or (Q(i) ~= Q_demod(i)) num_error = num_error + 1; end i = i+1; end Pe(j) = num_error/n_points; j = j+1; end plot(10*log10((A.^2)/0.001) - noise_powerdBm,(Pe),'colo','red'); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// clear f_samp = 2000*10^6; fc = 800*10^6; Ts = 1/f_samp; n = linspace(1,2000,2000); n_points = 10000; A = linspace(0.1,10,20)*(10^-3); j = 1; R = 100*10^(-3) PLdB = 128.1 + 37.6*log10(R); PL = sqrt(10^(-PLdB/10)/2); while j <=20; I = 2*grand(n_points, 1, "bin", 1, 0.5) - 1; Q = 2*grand(n_points, 1, "bin", 1, 0.5) - 1; //coef of cos2pifct and sin2pifct X = A(j)*complex(I,Q); //fading HR = zeros(3,n_points); HI = zeros(3,n_points); HR_1 = grand(n_points, 1, "nor", 0, 1/sqrt(2)); HI_1 = grand(n_points, 1, "nor", 0, 1/sqrt(2)); //H_sq = grand(n_points,1,"exp",1/sqrt(2)); HR_2 = grand(n_points, 1, "nor", 0, 1/sqrt(2)); HI_2 = grand(n_points, 1, "nor", 0, 1/sqrt(2)); HR_3 = grand(n_points, 1, "nor", 0, 1/sqrt(2)); HI_3 = grand(n_points, 1, "nor", 0, 1/sqrt(2)); h = complex(HR,HI); fc = 800*10^6; i = 1; //Noise noise_powerdBm = -100; //sigma = (0.001*(10^(noise_powerdBm/20)))/2; No = 10^-13; sigma = sqrt(No/2); NR_1 = grand(n_points, 1, "nor", 0, sigma); NI_1 = grand(n_points, 1, "nor", 0, sigma); NR_2 = grand(n_points, 1, "nor", 0, sigma); NI_2 = grand(n_points, 1, "nor", 0, sigma); NR_3 = grand(n_points, 1, "nor", 0, sigma); NI_3 = grand(n_points, 1, "nor", 0, sigma); //N1 = complex(NR,NI); //N2 = complex(NR,NI); //N3 = complex(NR,NI); num_error = 0; while i <= n_points //y = |h|^2X + h*N //y_1 = (HR_1(i)^2 + HI_1(i)^2)*PL*X(i) + N1(i); //y_2 = (HR_2(i)^2 + HI_2(i)^2)*PL*X(i) + N2(i); //y_3 = (HR_3(i)^2 + HI_3(i)^2)*PL*X(i) + N3(i); //y = (sqrt(H_sq(i)))*PL*X(i) + N(i); y_1 = (HR_1(i)^2 + HI_1(i)^2)*PL*(real(X(i))*cos(2*%pi*fc*n*Ts) + imag(X(i))*sin(2*%pi*fc*n*Ts)) + grand(1 ,length(n), "nor", 0, sigma); y_2 = (HR_2(i)^2 + HI_2(i)^2)*PL*(real(X(i))*cos(2*%pi*fc*n*Ts) + imag(X(i))*sin(2*%pi*fc*n*Ts)) + grand(1 ,length(n), "nor", 0, sigma); y_3 = (HR_3(i)^2 + HI_3(i)^2)*PL*(real(X(i))*cos(2*%pi*fc*n*Ts) + imag(X(i))*sin(2*%pi*fc*n*Ts)) + grand(1 ,length(n), "nor", 0, sigma); //demodulation steps y_demod_I_1 = y_1*(cos(2*%pi*fc*n*Ts))'; y_demod_Q_1 = y_1*(sin(2*%pi*fc*n*Ts))'; y_demod_I_2 = y_2*(cos(2*%pi*fc*n*Ts))'; y_demod_Q_2 = y_2*(sin(2*%pi*fc*n*Ts))'; y_demod_I_3 = y_3*(cos(2*%pi*fc*n*Ts))'; y_demod_Q_3 = y_3*(sin(2*%pi*fc*n*Ts))'; I_demod_1(i) = sign(y_demod_I_1) Q_demod_1(i) = sign(y_demod_Q_1) //X_1= complex(I_demod_1(i),Q_demod_1(i)); I_demod_2(i) = sign(y_demod_I_2) Q_demod_2(i) = sign(y_demod_Q_2); ///X_2= complex(I_demod_2(i),Q_demod_2(i)); I_demod_3(i) = sign(y_demod_I_3) Q_demod_3(i) = sign(y_demod_Q_3) no_of_1_I = nnz(members([I_demod_1(i),I_demod_2(i),I_demod_3(i)],1)); if(no_of_1_I >= 2) I_demod(i) = 1; else I_demod(i) = -1; end no_of_1_Q = nnz(members([Q_demod_1(i),Q_demod_2(i),Q_demod_3(i)],1)); if(no_of_1_Q >= 2) Q_demod(i) = 1; else Q_demod(i) = -1 end if (I(i) ~= I_demod(i)) or (Q(i) ~= Q_demod(i)) num_error = num_error + 1; end i = i+1; end Pe(j) = num_error/n_points; j = j+1; end plot(10*log10((A.^2)/0.001) - noise_powerdBm,(Pe),'colo','green'); xtitle( 'Pe vs Tx SNR', 'Tx SNR', 'Pe'); legend(["No diversity","Antenna diversity", "Time diversity"]); ////////////////////////////////////////////////////////////////////////
6842bc0821c629bf4ea7ea087c0d2e24537372e8
449d555969bfd7befe906877abab098c6e63a0e8
/3831/CH9/EX9.7/Ex9_7.sce
91cfa862fedaa1145cd7e7f424ced2d2ee938f23
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
424
sce
Ex9_7.sce
// Example 9_7 clc;funcprot(0); // Given data mdot=0.500;// kg/s p_1=8.00;// MPa T_1=300;// °C T_2=100;// °C x_2=1.00;// The quality of steam at station 2 T_b=20.0;// °C h_1=2785.0;// kJ/kg h_2=2676.0;// kJ/kg s_1=5.7914;// kJ/kg.K s_2=7.3557;// kJ/kg.K // Calculation W_max=mdot*[(h_1-((T_b+273.15)*s_1))-(h_2-((T_b+273.15)*s_2))];// kW printf("\nThe maximum (reversible) power,W_max=%3.0f kW",W_max);
7ddb4209522f0bf186c863f0e19ebbffcbc64aba
449d555969bfd7befe906877abab098c6e63a0e8
/2471/CH3/EX3.3/Ex3_3.sce
48c81812a97edad04e66406fe95596af1e331bae
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
293
sce
Ex3_3.sce
clear ; clc; // Example 3.3 printf('Example 3.3\n\n'); //Page No. 59 // given P = 60000;/// Principal Amount in Pound i = 0.18;// Interest Rate n = 10;//years R = P*((i*(1+i)^n)/((1+i)^n -1));//Rate of Capital Recovery printf('The annual investment required is %.1f Pound\n',R)
636b50c53bb190bc7e8676191da08c421b4f7f67
80f8fa4e9b7d5b8eb7eb71f024f6560b8a1d7d0a
/RF Measurement Fundamentals/MathScripts/FileWriting.sce
7acf7d38c6a10b067f825eec2037fd28567e3594
[]
no_license
alexpostrock/LVReusedLib
df73f9a219efe4a12d20396a6c84951f1cd5adad
a0e1480b6d0385b26d4870b885070e96a80a3545
refs/heads/master
2020-04-08T02:32:46.018869
2019-11-26T04:00:47
2019-11-26T04:00:47
158,938,842
0
0
null
null
null
null
UTF-8
Scilab
false
false
462
sce
FileWriting.sce
clf(); // clears existing plots clear; // clear variable memory N=1024; chdir('C:\Documents and Settings\Keith Schaub\Desktop'); noise=rand(1,N,'normal'); //noise=rand(1,N,'uniform'); noise=noise/1000; if MSDOS then unix('del noiseFile.txt'); else unix('rm -f noiseFile.txt'); end xr = noise; plot(xr); write('noiseFile.txt',xr); xclick(); // waits for mouse click clf(); // clear plot X=fft(xr,-1); // forward FFT XdB = 20*log10(2/N*abs(X)); plot(XdB);
2f852a776aa38e332cb5523e0d7c756180466f79
25ecbf436e9499640445c5f8dd256d12dcfecf2a
/Vclamp/StochHH_K5 DAss Vclamp.sci
500b445ff7e080550fbbb0db8cc4c28123cf9bab
[]
no_license
ModelDBRepository/141272
89fa654099db5fe443f1d34b43071108882d740e
67f44e52600c751f37f731f71a5b13a21fd28e8e
refs/heads/master
2020-05-29T18:22:46.893645
2019-05-31T02:44:35
2019-05-31T02:44:35
189,298,198
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,194
sci
StochHH_K5 DAss Vclamp.sci
// Potassium channel from original HH model // Voltage clamp simulations with non-stationary noise analysis // Coupled activation particles (5-state channel), Diffusion approximation algorithm // Steady-state approximation of variables in stochastic terms. stacksize('max'); nsim=200; //number of sweeps to be simulated Tstop=6; dt=0.001; //Total time and dt in ms points = round(Tstop/dt) //number of points per sweep NK=300; //number of potassium channels Vhold=-90; //voltage for t=0 Vtest=70; rand('normal'); p=1; Norec = zeros(points,nsim); v = Vhold*ones(1,nsim); //calculus of equilibrium state at t=0 an=0.01*(v+55)./(1-exp(-(v+55)/10)); bn=0.125*exp(-(v+65)/80); N=an./bn; Kstatesum=(1+N)^4; n=[ones(1,nsim);4*N;6*N.^2;4*N.^3;N.^4]./(ones(5,1)*Kstatesum); //Now we change voltage for the rest of the simulation v = Vtest*ones(1,nsim); an=0.01*(v+55)./(1-exp(-(v+55)/10)); bn=0.125*exp(-(v+65)/80); tic(); tint=1; //period for reporting simulation time (see lines 34 and 62) for tt=dt:tint:Tstop //Nested FORs are only for the purpose of reporting the time (see line 62) for t = tt:dt:tt+tint-dt Norec(p,:) = n(5,:)*NK; p=p+1; trans_n=[-4*an.*n(1,:)+bn.*n(2,:); //Deterministic part of state transitions -(bn+3*an).*n(2,:)+4*an.*n(1,:)+2*bn.*n(3,:); -(2*bn+2*an).*n(3,:)+3*an.*n(2,:)+3*bn.*n(4,:); -(3*bn+an).*n(4,:)+2*an.*n(3,:)+4*bn.*n(5,:); -4*bn.*n(5,:)+an.*n(4,:)]; // Stochastic terms R1-R4 do not include variable (n) values but only kinetic constants R=rand(4,nsim).*sqrt((dt/NK)*[8*an.*bn.^(4); 24*an.^(2).*bn.^3; 24*an.^(3).*bn.^2; 8*an.^(4).*bn]./(ones(4,1)*(an+bn).^4)); Wtn=[R(1,:); -R(1,:)+R(2,:); -R(2,:)+R(3,:); -R(3,:)+R(4,:); -R(4,:);] n=n+dt*trans_n+Wtn; n(1,:) = ones(1,nsim) - sum(n(2:5,:),1) //adjusting the sum of states equal to 1 end printf("time %g ms\n",t) end time=toc() scf(0); clf plot(dt:dt:Tstop,Norec) scf(1); clf plot(dt:dt:Tstop,[mean(Norec,2),variance(Norec,2)]) scf(2); clf plot(mean(Norec,2),variance(Norec,2)) printf("time = %g\n",time);
2946e91b9d083dc9321bfe0466dae80aef56b763
449d555969bfd7befe906877abab098c6e63a0e8
/1883/CH2/EX2.4.11/Example2_18.sce
b61bff46c5e0a7b5bbb1c80e426a1db1addf9ea5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
380
sce
Example2_18.sce
//Chapter-2,Example2_4_11,pg 2-28 m=1 //first ordr spectrum wavelength=5790*10^-10 //wavelength of light angle=19.994 //angle of diffraction N=2.54*sind(angle)/(m*wavelength*100) printf('\nNumber of lines per 2.54 cm is N = %.0f lines',N)
7202f8ade96529d7c58a3b2e227b4d7302627447
449d555969bfd7befe906877abab098c6e63a0e8
/2873/CH11/EX11.16/Ex11_16.sce
72b2ff340eaf2898ce2fd7a833fad156be5ce7d7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
724
sce
Ex11_16.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clear; clc; disp("Engineering Thermodynamics by Onkar Singh Chapter 11 Example 16") m1=3;//rate at which moist air enter in heating coil in m^3/s disp("The type of heating involved is sensible heating.Locating satte 1 on psychrometric chart corresponding to 15 degree celcius dbt and 80% relative humidity the other property values shall be,") disp("h1=36.4 KJ/kg,omega1=0.0086 kg/kg of air,v1=0.825 m^3/kg") h1=36.4; omega1=0.0086; v1=0.825; disp("final state 2 has,h2=52 KJ/kg") h2=52; disp("mass of air(m)=m1/v1 in kg/s") m=m1/v1 m=3.64;//approx. disp("amount of heat added(Q)in KJ/s") disp("Q=m*(h2-h1)") Q=m*(h2-h1)
367d3660744603f07ad35499f300b9fba6fc5668
449d555969bfd7befe906877abab098c6e63a0e8
/3850/CH35/EX35.3/Ex35_3.sce
3fa045c8b3eb3bf6efc758c483c914a7156f8558
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
537
sce
Ex35_3.sce
//To Find the Magnitude of Magnetic Force experienced by 10 cm of a wire //Example 35.3 clear; clc; i=5;//Current in Amperes d=2.5*10^-2;//Separation between the wires in metres k=2*10^-7;// Constant k=(u0/(2*%pi)) B=k*i/d;//Magnetic Field at the site of one wire due to other in T l=10*10^-2;//length of the wire in metres F=i*l*B;//Magnetic force experienced by the 10 cm of the wire due to the other printf("Magnetic force experienced by the 10 cm of the wire due to the other = %.1f*10^-5 N",F*10^5);
98c011bdd5f68891b984cc2f44880b1d2adf5d3b
39c5c468df5e2bde0147a30cf092fc8da3e7ed3e
/UFRGS/calcNumerico/area2/P2_numerico_oberdan/M7 - Interpolação/M7 - Q5-8 - interpolacao-menos-pontos.sce
a2d0a0bf03e93b84af0f86ac0f474ad1ab8b7314
[]
no_license
andredxc/Files
9dffc9fe5f7e923b83035d794dfa15c930cdb898
e32309b9ab548b829b04be66c2776cf9c9c6656e
refs/heads/master
2021-06-03T10:44:01.606242
2020-09-21T15:39:48
2020-09-21T15:39:48
107,410,076
0
0
null
null
null
null
UTF-8
Scilab
false
false
534
sce
M7 - Q5-8 - interpolacao-menos-pontos.sce
clear /** * Se diz pra extrapolar/interpolar em menos pontos, * só meter menos pontos nos vetores abaixo */ x=[3 4]' //ALTERAR y=3./x //ALTERAR n=length(x) //plot(x,y,'ro-'),xgrid // Monta matriz de Vandermonde for i=1:n for j=1:n V(i,j)=x(i)^(j-1) end end a=inv(V)*y X=3+89/100 //ALTERAR // x para interpolar // Caso desejar descobrir apenas um ponto, X=valor que deseja interpolar // Chamar "p" no scilab ao final da execucao p=0 for k=1:n p=p+a(k)*X.^(k-1) //Monta o polinomio end //plot(X,p,'b.-') disp(p)
2f1b60816baa5492a628df208fc487dc8e2cc858
449d555969bfd7befe906877abab098c6e63a0e8
/1364/CH2/EX2.7.2/2_7_2.sce
6a570aa7ca36ef0bcfb0b189ce88838ae6225955
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
221
sce
2_7_2.sce
clc //initialisation of variables d= 2 //ft a= 30 //degrees p= 200 //ft w= 62.3 //lbf/ft^3 //CALCULATIONS T= (%pi/4)*(d^2/2240)*w*p*sqrt(2*(1-cosd(a))) //RESULTS printf (' Resultant static thrust= %.2f tonf',T)
cce5fa04adf8bd01d2b5e6a63191dc9b20deda14
449d555969bfd7befe906877abab098c6e63a0e8
/1076/CH3/EX3.15/3_15.sce
c7495c1a49a0f59dd1e04fba55a95ccfce2ff528
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
427
sce
3_15.sce
clear; clc; Z=complex(180*cosd(75) , 180*sind(75)); Y=complex(1e-3*cosd(90) , 1e-3*sind(90)); g=sqrt(Y*Z); Zc=sqrt(Z/Y); Z1=Zc * sinh(g); Y1=(1/Zc) *1e3*( (cosh(g)-1)/sinh(g)); mprintf("\nZpi= %s", string(round(abs(Z1)*100)/100) +'/_'+ string(round(atand(imag(Z1)/real(Z1))*100)/100) ) mprintf("\nYpi/2= %s *1E-3", string(round(abs(Y1)*10000)/10000) +'/_'+ string(round(atand(imag(Y1)/real(Y1))*10)/10) )
4a1376c8c0cfc5c20dd508e56d57ca2c6ce7261f
449d555969bfd7befe906877abab098c6e63a0e8
/2783/CH8/EX8.13/Ex8_13.sce
9e2367e3ab22d692a7bc90946b7e6b1f267b0ef6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
241
sce
Ex8_13.sce
clc //initialization of new variables clear Cd=0.32 S=1.8 //m^2 Pe=300 //hp u=100 //km/h r=1.2 //kg/m^3 //calculations D=Cd*1/2*r*(u/3.6)^2*(S) P=D*u/3.6 //result printf('Power required = %.1f kW = %.1f hp',P/1000,P*1.341/1000)
beef1384e9edb229688f20d519f54e8a37f17747
717ddeb7e700373742c617a95e25a2376565112c
/2474/CH2/EX2.3/Ch02Ex03.sce
2cbf4ed351d56d9981d9cae6bef316acd6b6b083
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
1,179
sce
Ch02Ex03.sce
// Scilab code Ex2.3: Pg.74-75 (2008) clc; clear; // For simplicity let velocity of light be unity c = 1; // Velocity of light, m/s m = 1e-09; // Mass of micrometeorite, kg u_x = 0.01*c; // Velocity of micrometeorite E = (0.5)*m*u_x^2+(m*c^2); // Energy of micrometeorite measured by earth observer, J p_x = m*u_x; // Momentum of micrometeorite measured by earth observer, kg-m/s u = 0.5*c; // Velocity of S' frame, m/s Beta = u/c; // Simplification factor gama = 1/sqrt(1-Beta^2); // Simplification factor E_s = gama*(E-u*p_x); // Energy of micrometeorite measured by observer in the stationary frame, J p_x_s = gama*(p_x-(u*E)/c^2); // Momentum of micrometeorite measured by observer in the moving, kg-m/s printf("\nThe energy of micrometeorite measured by observer in moving frame = %7.5e Sq.c J unit", E_s); printf("\nThe momentum of micrometeorite measured by observer in moving frame = %4.2ec kg-m/s unit", p_x_s); // Result // The energy of micrometeorite measured by observer in moving frame = 1.14898e-009 Sq.c J unit // The momentum of micrometeorite measured by observer in moving frame = -5.66e-010c kg-m/s unit
88e6f9e7d4a8e5280957bf3dece2c011f8763816
6cb749937ed1f53a5c22d6d7276c82f9a56ea0f4
/arduino_svn/help/fr_FR/ARDUINO_SETUP_help.tst
a4122528e652b840344387657984fe98250c77cd
[]
no_license
fizcris/Scilab_Xcos_arduino_toolbox_david_MPU6050
2aacb3b5f75d49f1d8c8b46fa51f2b0c53afc985
d488f268526d0cf6140f19426813b4b289566d37
refs/heads/master
2021-06-25T01:19:38.819142
2021-06-18T22:43:11
2021-06-18T22:43:11
26,444,710
2
6
null
null
null
null
UTF-8
Scilab
false
false
1,516
tst
ARDUINO_SETUP_help.tst
\name ARDUINO_SETUP \palette Arduino \smalldescription Permet de configuration le port de communication série entre l'arduino et scilab. \description Ce bloc doit \bold{obligatoirement} être placé sur le schéma lors de l'utilisation d'autres blocs de la toolbox. Il permet de définir le port de communication entre la carte Arduino et Xcos. Le port à utiliser peut être déterminé en lançant l'application Arduino et en vérifiant le com indiqué dans Outils/Port série. Celui-ci peut également être modifié dans le Gestionnaire de périphériques / Ports (options Avancées). Il n'est pas possible actuellement d'utiliser plusieurs cartes Arduino. La toolbox n'est utilisable que sous Windows pour l'instant. \bold{Attention pour utiliser la toolbox Arduino, il est indispensable de charger dans la carte Arduino le programme toolbox_arduino.ino disponible sur le site :} http://www.demosciences.fr \dialogbox \image{ARDUINO_SETUP_dialogbox.png} Le port de communication doit être spécifié (entre 2 et 9 sinon un message d'erreur apparaît). Le numéro de carte Arduino doit être égal à 1 actuellement (sinon un message d'erreur apparaît) \example1 L'exemple ci-dessus montre l'utilisation du bloc dans le cas du clignotement de la led 13 de la carte UNO définie sur le port de communication 5. Les blocs utilisent les paramètres par défaut, sauf pour le bloc PULSE de la palette standard dont on spécifie le déphasage à 0. \image{ARDUINO_SETUP_example.png} \seealso TIME_SAMPLE
09b127da667cf1bfd747cfeb88c3ed6007b29d0b
449d555969bfd7befe906877abab098c6e63a0e8
/3683/CH2/EX2.8/Ex2_8.sce
dcd510ad176be4018464c36aa88d72b28586993f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
832
sce
Ex2_8.sce
b=250//width, in mm D=600//overall depth, in mm bottom_cover=50//in mm top_cover=50//in mm d=D-bottom_cover//effective depth, in mm sigma_cbc=5//in MPa sigma_st=140//in MPa m=18.66//modular ratio M=95*10^6//in N-mm //to find critical depth of neutral axis Xc=d/(1+sigma_st/(m*sigma_cbc))//in mm //to find Ast1 Ast1=b*Xc*sigma_cbc/(2*sigma_st)//in sq mm Ast1=982//round-off, in sq mm Mr=b*Xc*sigma_cbc/2*(d-Xc/3)//moment of resistance of singly reinforced beam, in N-mm M1=M-Mr//remaining bending moment, in N-mm //to find Ast2 Ast2=M1/(sigma_st*(d-top_cover))//in sq mm Ast2=421//round-off, in sq mm Ast=Ast1+Ast2//in sq mm //to find Asc Asc=m*Ast2*(d-Xc)/((1.5*m-1)*(Xc-top_cover))//in sq mm Asc=565//round-off, in sq mm mprintf("Tensile steel required=%d mm^2\nCompression steel required=%d mm^2",Ast,Asc)
c3a194077270c09979d4441d9eae1be96cf3a002
717ddeb7e700373742c617a95e25a2376565112c
/3044/CH7/EX7.14/Ex7_14.sce
9c46dfe0868b1fcf5504935d96f68c7fe3dd02ed
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
479
sce
Ex7_14.sce
// Variable declaration n = 15 // sample size Mean1 = 75.20 // sample mean Mean2 = 77 // sample mean std_dev = 3.6 // standard deviation // Calculation // z(0.05) = 1.645 Z = 1.645 y1 = Z + sqrt(n)*((Mean1-Mean2) / std_dev) // lower limit of range // probability corresponding to Z>y1 is 0.614 p = 0.614 // P(Z > -0.219) = 0.614 prob = 1 - p // Result printf ( "Type-2 error probability: %.3f",prob)
a673c8518696aa24ab6e978a28d16a543e30cf7c
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH12/EX12.12/Ex12_12.sce
a41306a6d3dd59fe7388d8fa72b91e8a5b15b044
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
281
sce
Ex12_12.sce
clear //Given r=0.5 //m n=2 //r.p.s B=0.4*10**-4 //T //Calculation // w=2*%pi*n e=0.5*B*r**2*w //Result printf("\n Magnitude of induced e.m.f between the axle and rim is %0.2f *10**-5 V",e*10**5)
985650a3a6db21cc68461b39fbc373b9a3d4dbf5
449d555969bfd7befe906877abab098c6e63a0e8
/2381/CH9/EX9.4/ex_4.sce
1a4092a4ea090639094f2c1b4fc29abd7dc38ee8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
416
sce
ex_4.sce
//Example 4// Velocity, Amplitude of pressure and particle velocity amplitude clc; clear; close; //given data : gama=1.4; P=1.013*10^5; p1=1.29;// in kg/m^3 A=2.5*10^-7;// in m v=sqrt(gama*P/p1); disp(v,"The velocity,v(m/s) = ") n=1000;// in Hz lamda=v/n; disp(lamda,"Wavelength,lamda(m) = ") p=p1*v*2*%pi*n*A; disp(p,"Amplitude of pressure,p(N/m^2) = ") u=2*%pi*n*A; disp(u,"Particle velocity amplitude,u(m/s) = ")
0262374fc0bf586bddb725e6f46f929dac9a55bb
449d555969bfd7befe906877abab098c6e63a0e8
/2102/CH5/EX5.6/exa_5_6.sce
5393f7586887614cfab72e41dd4b297e87abbd53
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
288
sce
exa_5_6.sce
// Exa 5.6 clc; clear; close; // Given data V1= 5;// in V IncreaseInVolt= 1.5;// in V C_T1= 20;// in pF // Formula C_T= lamda/sqrt(V) lamda= C_T1*sqrt(V1); // When V2= V1+IncreaseInVolt;// in V C_T2= lamda/sqrt(V2); disp(C_T1-C_T2,"The decrease in capacitance in pF is : ")
0f199b8a38edcc1e63974c3a131eca07a4caf55a
ed58f6c9bdf9eb17094d5539044c81165230563f
/data/mds/01-crud-followed-by-read.tst
0be0a950ce1977cae89c8fb47e143ccae0bebe57
[ "MIT" ]
permissive
joeatbayes/http-stress-test
d10bdb028e5bdc80959f3d1a71a280c23be86f6b
f53789928714fbb62de6c9ebf1184a16d9eb4005
refs/heads/master
2021-07-18T16:23:05.953472
2020-06-09T03:21:40
2020-06-09T03:21:40
176,176,023
5
4
MIT
2020-02-07T12:33:05
2019-03-18T00:09:11
Go
UTF-8
Scilab
false
false
4,203
tst
01-crud-followed-by-read.tst
# Add Data to MDS repository including using Custom # headers. Then read back portions of that data # to demonstrate that the data previously written # is available. Demonstrates custom headers and # RE positive matching and RE Negative matching # Also demonstrates advanced use of #WAIT to ensure # CRUD oprations are complete before the reads are # attempted # # See: https://www.freeformatter.com/json-escape.html for online JSON escape tool for post body. # See: https://jsonlint.com/ for online tool to validate the JSON # See: GenericHTTPTestClient.go for utility than runs this test file. { "id": "0183", "verb": "PUT", "uri": "http://127.0.0.1:9601/mds/test/1817127X3", "headers": { "Content-Type": "application/JSON", "Meta-Roles": "PUBLIC" }, "expected": 200, "rematch": ".*sucess.*", "message": "saving JSON record", "body": "{\"patientAgeRange\": \"NA\", \"orgName\": \"JOHN MUIR PHYSICIAN NETWORK\", \"combName\": \"PORTEOUS, BRENT\", \"product\": \"NA\", \"primaryLocation\": \"NA\", \"exclude\": false, \"uniqueLocKey\": \"JOHN MUIR PHYSICIAN NETWORK..1450 TREAT BLVD..945972168\", \"loc\": {\"lat\": 37.91, \"lon\": -122.07}, \"addr\": {\"city\": \"WALNUT CREEK\", \"zip\": \"945972168\", \"county\": \"NA\", \"state\": \"CA\", \"street\": \"1450 TREAT BLVD\", \"zipPlus4\": \"NA\"}, \"medicadeId\": \"6608789813\", \"languages\": \"NA\", \"email\": \"NA\", \"fax\": \"NA\", \"npi\": \"1083040463\", \"specialty\": [\"FAMILY PRACTICE\"], \"drName\": {\"middle\": \"\", \"last\": \"PORTEOUS\", \"suffix\": \"\", \"first\": \"BRENT\"}, \"phone\": \"9252969000\", \"publicTransitAccess\": \"NA\", \"handicapAccess\": \"NA\", \"credentials\": \"\", \"acceptMedicaid\": null, \"OfficeHours\": \"NA\", \"medSchool\": \"OTHER\", \"locations\": [{\"ccn\": \"050276\", \"lbn\": \"CONTRA COSTA REGIONAL MEDICAL CENTER\"}], \"gender\": \"M\", \"gradYear\": \"2012\"}" } #END #WAIT # Pause causes the test driver to wait until all threads are idle before running next line. { "id" : "0184G", "verb" : "GET", "uri" : "http://127.0.0.1:9601/mds/test/1817127X3", "expected" : 200, "rematch" : ".*JOHN MUIR.*", "message" :"Read after write" } #END #WAIT # Pause causes the test driver to wait until all threads are idle before running next line. # Test simple retrieve of a record that should exist. { "id" : "0184M", "verb" : "GET", "uri" : "http://127.0.0.1:9601/mds/test/1817127X3", "expected" : 200, "rematch" : ".*JOHN MUIR.*", "message" :"Read after write existing record" } #END # Test to Demonstrate failure when we get Data and shouldn't have received any. # Should fail { "id" : "0184F", "verb" : "GET", "uri" : "http://127.0.0.1:9601/mds/test/1817127X3", "expected" : 200, "Renomatch" : ".*JOHN MUIR.*", "message" :"Check re No Match functionality should fail" } #END # Test to verify record we do not expect to exist fails. # Should Suceed { "id" : "0185", "verb" : "GET", "uri" : "http://127.0.0.1:9601/mds/test/1817127X5", "expected" : 404, "Message" :"Check expected 404 on known bad key", "Renomatch" : "*.JOHN*." } #END # Demontrate a failed test where the status code # is not what was expected. # Should suceed { "id" : "0186", "verb" : "GET", "uri" : "http://127.0.0.1:9601/mds/test/1817127X5", "expected" : 519, "Message" :"Check unepected response code " } #END #WAIT # Wait until after the reads above have complete or could delete the records out from under them # Should Succeed { "id" : "0187", "verb" : "DELETE", "uri" : "http://127.0.0.1:9601/mds/test/1817127X3", "message" : "Delete a JSON record", "expected" : 200, "xyz" : 983 } #END #WAIT # Wait for the delete to complete so we can check for the 404 #GET after delete of same ID should fail { "id" : "0188", "verb" : "GET", "uri" : "http://127.0.0.1:9601/mds/test/1817127X3", "expected" : 404, "Message" :"Read after delete" } #END # Second delete of same ID should fail #WAIT { "id" : "0189", "verb" : "DELETE", "uri" : "http://127.0.0.1:9601/mds/test/1817127X3", "message" : "Delete a previously deleted record", "expected" : 404 } #END
6be4b22a01c1742ed2765472a4f1203743b0075c
e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4
/New LSTMAttn Model/.data/lemma-split/GOLD-TEST/frm.tst
a6abf8ba57770c6f770c03eb3eed533ef47e0fdc
[]
no_license
davidgu13/Lemma-vs-Form-Splits
c154f1c0c7b84ba5b325b17507012d41b9ad5cfe
3cce087f756420523f5a14234d02482452a7bfa5
refs/heads/master
2023-08-01T16:15:52.417307
2021-09-14T20:19:28
2021-09-14T20:19:28
395,023,433
3
0
null
null
null
null
UTF-8
Scilab
false
false
277,429
tst
frm.tst
iolyer iolye V;SBJV;SG;1;PRS iolyer iolyoyent V;IPFV;IND;PL;3;PST;LGSPEC2 iolyer iolyeroit V;COND;SG;3;LGSPEC1 iolyer iolyeroyent V;COND;PL;3;LGSPEC2 iolyer iolyeryons V;COND;PL;1;LGSPEC2 iolyer iolyes V;SBJV;SG;2;PRS iolyer iolyyez V;IPFV;IND;PL;2;PST;LGSPEC2 iolyer iolyeront V;IND;PL;3;FUT iolyer iolyastes V;PFV;IND;PL;2;PST iolyer iolyoys V;IPFV;IND;SG;1;PST;LGSPEC2 iolyer iolyeroys V;COND;SG;1;LGSPEC2 iolyer iolyiez V;IPFV;IND;PL;2;PST;LGSPEC1 iolyer iolyeroient V;COND;PL;3;LGSPEC1 iolyer iolyez V;IND;PL;2;PRS iolyer iolyerons V;IND;PL;1;FUT iolyer iolyent V;SBJV;PL;3;PRS iolyer iolyes V;IND;SG;2;PRS iolyer iolyoit V;IPFV;IND;SG;3;PST;LGSPEC1 iolyer iolyoyt V;IPFV;IND;SG;3;PST;LGSPEC2 iolyer iolyez V;SBJV;PL;2;PRS iolyer iolya V;PFV;IND;SG;3;PST iolyer iolyer V;NFIN iolyer iolye V;IND;SG;1;PRS iolyer iolyerions V;COND;PL;1;LGSPEC1 iolyer iolyasmes V;PFV;IND;PL;1;PST iolyer iolyasses V;IPFV;SBJV;SG;2;PST iolyer iolyassiez V;IPFV;SBJV;PL;2;PST iolyer iolyent V;IND;PL;3;PRS iolyer iolyyons V;IPFV;IND;PL;1;PST;LGSPEC2 iolyer iolyois V;IPFV;IND;SG;1;PST;LGSPEC1 iolyer iolyeryez V;COND;PL;2;LGSPEC2 iolyer iolyerai V;IND;SG;1;FUT;LGSPEC1 iolyer iolyoys V;IPFV;IND;SG;2;PST;LGSPEC2 iolyer iolyassent V;IPFV;SBJV;PL;3;PST iolyer iolyeriez V;COND;PL;2;LGSPEC1 iolyer iolyons V;IND;PL;1;PRS iolyer iolyerois V;COND;SG;2;LGSPEC1 iolyer iolyerez V;IND;PL;2;FUT iolyer iolyons V;SBJV;PL;1;PRS iolyer iolyerois V;COND;SG;1;LGSPEC1 iolyer iolyions V;IPFV;IND;PL;1;PST;LGSPEC1 iolyer iolyons V;IMP;PL;1 iolyer iolyassions V;IPFV;SBJV;PL;1;PST iolyer iolyeray V;IND;SG;1;FUT;LGSPEC2 iolyer iolye V;SBJV;SG;3;PRS iolyer iolyera V;IND;SG;3;FUT iolyer iolyast V;IPFV;SBJV;SG;3;PST iolyer iolyeroys V;COND;SG;2;LGSPEC2 iolyer iolyeras V;IND;SG;2;FUT iolyer iolyas V;PFV;IND;SG;2;PST iolyer iolyeroyt V;COND;SG;3;LGSPEC2 iolyer iolya V;PFV;IND;SG;1;PST iolyer iolyasse V;IPFV;SBJV;SG;1;PST iolyer iolye V;IND;SG;3;PRS iolyer iolye V;IMP;SG;2 iolyer iolyerent V;PFV;IND;PL;3;PST iolyer iolyois V;IPFV;IND;SG;2;PST;LGSPEC1 iolyer iolyez V;IMP;PL;2 iolyer iolyoient V;IPFV;IND;PL;3;PST;LGSPEC1 cercher cerchons V;IND;PL;1;PRS cercher cercheras V;IND;SG;2;FUT cercher cercherai V;IND;SG;1;FUT;LGSPEC1 cercher cercheroyent V;COND;PL;3;LGSPEC2 cercher cerchoient V;IPFV;IND;PL;3;PST;LGSPEC1 cercher cerchois V;IPFV;IND;SG;1;PST;LGSPEC1 cercher cerchoys V;IPFV;IND;SG;1;PST;LGSPEC2 cercher cerchyez V;IPFV;IND;PL;2;PST;LGSPEC2 cercher cerchez V;IND;PL;2;PRS cercher cercheroient V;COND;PL;3;LGSPEC1 cercher cerchast V;IPFV;SBJV;SG;3;PST cercher cerche V;IND;SG;3;PRS cercher cercheriez V;COND;PL;2;LGSPEC1 cercher cercheroys V;COND;SG;1;LGSPEC2 cercher cerchois V;IPFV;IND;SG;2;PST;LGSPEC1 cercher cerches V;IND;SG;2;PRS cercher cercherent V;PFV;IND;PL;3;PST cercher cerche V;IND;SG;1;PRS cercher cerchez V;SBJV;PL;2;PRS cercher cerchent V;SBJV;PL;3;PRS cercher cerchiez V;IPFV;IND;PL;2;PST;LGSPEC1 cercher cerchez V;IMP;PL;2 cercher cerchoyent V;IPFV;IND;PL;3;PST;LGSPEC2 cercher cercha V;PFV;IND;SG;1;PST cercher cerchera V;IND;SG;3;FUT cercher cerchas V;PFV;IND;SG;2;PST cercher cercheroit V;COND;SG;3;LGSPEC1 cercher cercheroys V;COND;SG;2;LGSPEC2 cercher cerches V;SBJV;SG;2;PRS cercher cercher V;NFIN cercher cerche V;IMP;SG;2 cercher cerchoys V;IPFV;IND;SG;2;PST;LGSPEC2 cercher cerchons V;IMP;PL;1 cercher cerchastes V;PFV;IND;PL;2;PST cercher cercheryons V;COND;PL;1;LGSPEC2 cercher cerchyons V;IPFV;IND;PL;1;PST;LGSPEC2 cercher cerchasses V;IPFV;SBJV;SG;2;PST cercher cercheront V;IND;PL;3;FUT cercher cerchent V;IND;PL;3;PRS cercher cercherez V;IND;PL;2;FUT cercher cerchoit V;IPFV;IND;SG;3;PST;LGSPEC1 cercher cerche V;SBJV;SG;1;PRS cercher cerchoyt V;IPFV;IND;SG;3;PST;LGSPEC2 cercher cercherois V;COND;SG;1;LGSPEC1 cercher cerchons V;SBJV;PL;1;PRS cercher cerchassent V;IPFV;SBJV;PL;3;PST cercher cerchassiez V;IPFV;SBJV;PL;2;PST cercher cercheroyt V;COND;SG;3;LGSPEC2 cercher cercha V;PFV;IND;SG;3;PST cercher cercheray V;IND;SG;1;FUT;LGSPEC2 cercher cerchasse V;IPFV;SBJV;SG;1;PST cercher cerche V;SBJV;SG;3;PRS cercher cercherons V;IND;PL;1;FUT cercher cerchions V;IPFV;IND;PL;1;PST;LGSPEC1 cercher cercherois V;COND;SG;2;LGSPEC1 cercher cercherions V;COND;PL;1;LGSPEC1 cercher cerchasmes V;PFV;IND;PL;1;PST cercher cerchassions V;IPFV;SBJV;PL;1;PST cercher cercheryez V;COND;PL;2;LGSPEC2 brusler brusloyt V;IPFV;IND;SG;3;PST;LGSPEC2 brusler brusleriez V;COND;PL;2;LGSPEC1 brusler bruslassions V;IPFV;SBJV;PL;1;PST brusler brusloyent V;IPFV;IND;PL;3;PST;LGSPEC2 brusler brusles V;IND;SG;2;PRS brusler brusleront V;IND;PL;3;FUT brusler brusloys V;IPFV;IND;SG;2;PST;LGSPEC2 brusler bruslerions V;COND;PL;1;LGSPEC1 brusler brusle V;IND;SG;3;PRS brusler bruslassent V;IPFV;SBJV;PL;3;PST brusler bruslons V;IMP;PL;1 brusler bruslez V;IND;PL;2;PRS brusler brusle V;IND;SG;1;PRS brusler bruslerez V;IND;PL;2;FUT brusler bruslons V;IND;PL;1;PRS brusler bruslastes V;PFV;IND;PL;2;PST brusler brusler V;NFIN brusler brusla V;PFV;IND;SG;3;PST brusler brusleray V;IND;SG;1;FUT;LGSPEC2 brusler bruslera V;IND;SG;3;FUT brusler brusleroient V;COND;PL;3;LGSPEC1 brusler bruslerois V;COND;SG;2;LGSPEC1 brusler brusleryons V;COND;PL;1;LGSPEC2 brusler bruslerons V;IND;PL;1;FUT brusler brusleryez V;COND;PL;2;LGSPEC2 brusler brusloient V;IPFV;IND;PL;3;PST;LGSPEC1 brusler brusle V;IMP;SG;2 brusler bruslez V;IMP;PL;2 brusler brusla V;PFV;IND;SG;1;PST brusler bruslez V;SBJV;PL;2;PRS brusler brusleroys V;COND;SG;2;LGSPEC2 brusler brusle V;SBJV;SG;3;PRS brusler bruslions V;IPFV;IND;PL;1;PST;LGSPEC1 brusler brusleroit V;COND;SG;3;LGSPEC1 brusler bruslois V;IPFV;IND;SG;2;PST;LGSPEC1 brusler bruslyons V;IPFV;IND;PL;1;PST;LGSPEC2 brusler bruslyez V;IPFV;IND;PL;2;PST;LGSPEC2 brusler bruslerent V;PFV;IND;PL;3;PST brusler brusloys V;IPFV;IND;SG;1;PST;LGSPEC2 brusler bruslois V;IPFV;IND;SG;1;PST;LGSPEC1 brusler bruslasmes V;PFV;IND;PL;1;PST brusler brusleroyt V;COND;SG;3;LGSPEC2 brusler brusle V;SBJV;SG;1;PRS brusler brusleroyent V;COND;PL;3;LGSPEC2 brusler bruslasses V;IPFV;SBJV;SG;2;PST brusler bruslas V;PFV;IND;SG;2;PST brusler bruslassiez V;IPFV;SBJV;PL;2;PST brusler bruslent V;IND;PL;3;PRS brusler brusles V;SBJV;SG;2;PRS brusler brusleras V;IND;SG;2;FUT brusler bruslerois V;COND;SG;1;LGSPEC1 brusler brusloit V;IPFV;IND;SG;3;PST;LGSPEC1 brusler bruslent V;SBJV;PL;3;PRS brusler brusliez V;IPFV;IND;PL;2;PST;LGSPEC1 brusler bruslons V;SBJV;PL;1;PRS brusler bruslast V;IPFV;SBJV;SG;3;PST brusler bruslerai V;IND;SG;1;FUT;LGSPEC1 brusler bruslasse V;IPFV;SBJV;SG;1;PST brusler brusleroys V;COND;SG;1;LGSPEC2 desadvouer desadvouasmes V;PFV;IND;PL;1;PST desadvouer desadvouez V;IMP;PL;2 desadvouer desadvouerez V;IND;PL;2;FUT desadvouer desadvoueroys V;COND;SG;2;LGSPEC2 desadvouer desadvouerions V;COND;PL;1;LGSPEC1 desadvouer desadvouassions V;IPFV;SBJV;PL;1;PST desadvouer desadvouoient V;IPFV;IND;PL;3;PST;LGSPEC1 desadvouer desadvouiez V;IPFV;IND;PL;2;PST;LGSPEC1 desadvouer desadvouer V;NFIN desadvouer desadvoueroys V;COND;SG;1;LGSPEC2 desadvouer desadvouyons V;IPFV;IND;PL;1;PST;LGSPEC2 desadvouer desadvouast V;IPFV;SBJV;SG;3;PST desadvouer desadvouois V;IPFV;IND;SG;2;PST;LGSPEC1 desadvouer desadvoues V;IND;SG;2;PRS desadvouer desadvoue V;SBJV;SG;3;PRS desadvouer desadvouoyt V;IPFV;IND;SG;3;PST;LGSPEC2 desadvouer desadvoueryez V;COND;PL;2;LGSPEC2 desadvouer desadvoua V;PFV;IND;SG;1;PST desadvouer desadvoueroient V;COND;PL;3;LGSPEC1 desadvouer desadvouerois V;COND;SG;1;LGSPEC1 desadvouer desadvouerons V;IND;PL;1;FUT desadvouer desadvouez V;SBJV;PL;2;PRS desadvouer desadvoues V;SBJV;SG;2;PRS desadvouer desadvouons V;IMP;PL;1 desadvouer desadvouent V;SBJV;PL;3;PRS desadvouer desadvouerois V;COND;SG;2;LGSPEC1 desadvouer desadvoua V;PFV;IND;SG;3;PST desadvouer desadvouyez V;IPFV;IND;PL;2;PST;LGSPEC2 desadvouer desadvouent V;IND;PL;3;PRS desadvouer desadvouassiez V;IPFV;SBJV;PL;2;PST desadvouer desadvouasses V;IPFV;SBJV;SG;2;PST desadvouer desadvoue V;IND;SG;3;PRS desadvouer desadvouoit V;IPFV;IND;SG;3;PST;LGSPEC1 desadvouer desadvouoys V;IPFV;IND;SG;2;PST;LGSPEC2 desadvouer desadvouons V;SBJV;PL;1;PRS desadvouer desadvoueriez V;COND;PL;2;LGSPEC1 desadvouer desadvouasse V;IPFV;SBJV;SG;1;PST desadvouer desadvoue V;SBJV;SG;1;PRS desadvouer desadvouerent V;PFV;IND;PL;3;PST desadvouer desadvouerai V;IND;SG;1;FUT;LGSPEC1 desadvouer desadvouez V;IND;PL;2;PRS desadvouer desadvouassent V;IPFV;SBJV;PL;3;PST desadvouer desadvouois V;IPFV;IND;SG;1;PST;LGSPEC1 desadvouer desadvouastes V;PFV;IND;PL;2;PST desadvouer desadvouions V;IPFV;IND;PL;1;PST;LGSPEC1 desadvouer desadvoueray V;IND;SG;1;FUT;LGSPEC2 desadvouer desadvouoys V;IPFV;IND;SG;1;PST;LGSPEC2 desadvouer desadvouoyent V;IPFV;IND;PL;3;PST;LGSPEC2 desadvouer desadvoueroyt V;COND;SG;3;LGSPEC2 desadvouer desadvoueroit V;COND;SG;3;LGSPEC1 desadvouer desadvoue V;IMP;SG;2 desadvouer desadvouons V;IND;PL;1;PRS desadvouer desadvouera V;IND;SG;3;FUT desadvouer desadvoueront V;IND;PL;3;FUT desadvouer desadvouas V;PFV;IND;SG;2;PST desadvouer desadvoueryons V;COND;PL;1;LGSPEC2 desadvouer desadvoueras V;IND;SG;2;FUT desadvouer desadvoue V;IND;SG;1;PRS desadvouer desadvoueroyent V;COND;PL;3;LGSPEC2 bransler bransleryez V;COND;PL;2;LGSPEC2 bransler bransliez V;IPFV;IND;PL;2;PST;LGSPEC1 bransler bransleroyt V;COND;SG;3;LGSPEC2 bransler branslent V;IND;PL;3;PRS bransler bransleriez V;COND;PL;2;LGSPEC1 bransler branslons V;IND;PL;1;PRS bransler branslons V;IMP;PL;1 bransler bransleray V;IND;SG;1;FUT;LGSPEC2 bransler bransloys V;IPFV;IND;SG;1;PST;LGSPEC2 bransler bransloyent V;IPFV;IND;PL;3;PST;LGSPEC2 bransler bransleryons V;COND;PL;1;LGSPEC2 bransler branslyons V;IPFV;IND;PL;1;PST;LGSPEC2 bransler branslassiez V;IPFV;SBJV;PL;2;PST bransler bransloit V;IPFV;IND;SG;3;PST;LGSPEC1 bransler bransle V;SBJV;SG;1;PRS bransler branslerois V;COND;SG;1;LGSPEC1 bransler branslera V;IND;SG;3;FUT bransler branslassions V;IPFV;SBJV;PL;1;PST bransler bransleras V;IND;SG;2;FUT bransler branslerent V;PFV;IND;PL;3;PST bransler branslions V;IPFV;IND;PL;1;PST;LGSPEC1 bransler branslois V;IPFV;IND;SG;1;PST;LGSPEC1 bransler bransle V;IMP;SG;2 bransler branslassent V;IPFV;SBJV;PL;3;PST bransler bransleroit V;COND;SG;3;LGSPEC1 bransler bransleroys V;COND;SG;2;LGSPEC2 bransler branslas V;PFV;IND;SG;2;PST bransler bransleroys V;COND;SG;1;LGSPEC2 bransler bransleroient V;COND;PL;3;LGSPEC1 bransler bransleroyent V;COND;PL;3;LGSPEC2 bransler branslez V;IND;PL;2;PRS bransler bransloyt V;IPFV;IND;SG;3;PST;LGSPEC2 bransler bransle V;SBJV;SG;3;PRS bransler branslerions V;COND;PL;1;LGSPEC1 bransler bransles V;SBJV;SG;2;PRS bransler branslast V;IPFV;SBJV;SG;3;PST bransler branslent V;SBJV;PL;3;PRS bransler branslyez V;IPFV;IND;PL;2;PST;LGSPEC2 bransler branslons V;SBJV;PL;1;PRS bransler bransle V;IND;SG;1;PRS bransler branslerois V;COND;SG;2;LGSPEC1 bransler branslasses V;IPFV;SBJV;SG;2;PST bransler bransloys V;IPFV;IND;SG;2;PST;LGSPEC2 bransler branslerez V;IND;PL;2;FUT bransler branslasse V;IPFV;SBJV;SG;1;PST bransler branslasmes V;PFV;IND;PL;1;PST bransler branslois V;IPFV;IND;SG;2;PST;LGSPEC1 bransler bransles V;IND;SG;2;PRS bransler bransloient V;IPFV;IND;PL;3;PST;LGSPEC1 bransler branslez V;IMP;PL;2 bransler branslez V;SBJV;PL;2;PRS bransler branslastes V;PFV;IND;PL;2;PST bransler bransleront V;IND;PL;3;FUT bransler bransla V;PFV;IND;SG;3;PST bransler branslerai V;IND;SG;1;FUT;LGSPEC1 bransler bransle V;IND;SG;3;PRS bransler bransler V;NFIN bransler branslerons V;IND;PL;1;FUT bransler bransla V;PFV;IND;SG;1;PST esvanter esvantoient V;IPFV;IND;PL;3;PST;LGSPEC1 esvanter esvantez V;IND;PL;2;PRS esvanter esvanteray V;IND;SG;1;FUT;LGSPEC2 esvanter esvantoit V;IPFV;IND;SG;3;PST;LGSPEC1 esvanter esvanteroyent V;COND;PL;3;LGSPEC2 esvanter esvantois V;IPFV;IND;SG;2;PST;LGSPEC1 esvanter esvantast V;IPFV;SBJV;SG;3;PST esvanter esvanteras V;IND;SG;2;FUT esvanter esvantons V;SBJV;PL;1;PRS esvanter esvantasse V;IPFV;SBJV;SG;1;PST esvanter esvanteriez V;COND;PL;2;LGSPEC1 esvanter esvante V;SBJV;SG;1;PRS esvanter esvanta V;PFV;IND;SG;1;PST esvanter esvantyons V;IPFV;IND;PL;1;PST;LGSPEC2 esvanter esvantasmes V;PFV;IND;PL;1;PST esvanter esvantassent V;IPFV;SBJV;PL;3;PST esvanter esvantassions V;IPFV;SBJV;PL;1;PST esvanter esvantera V;IND;SG;3;FUT esvanter esvantons V;IMP;PL;1 esvanter esvanta V;PFV;IND;SG;3;PST esvanter esvanteroit V;COND;SG;3;LGSPEC1 esvanter esvanteryez V;COND;PL;2;LGSPEC2 esvanter esvantois V;IPFV;IND;SG;1;PST;LGSPEC1 esvanter esvanteroient V;COND;PL;3;LGSPEC1 esvanter esvantasses V;IPFV;SBJV;SG;2;PST esvanter esvanteroys V;COND;SG;1;LGSPEC2 esvanter esvanterois V;COND;SG;1;LGSPEC1 esvanter esvantyez V;IPFV;IND;PL;2;PST;LGSPEC2 esvanter esvantions V;IPFV;IND;PL;1;PST;LGSPEC1 esvanter esvantent V;IND;PL;3;PRS esvanter esvanteroys V;COND;SG;2;LGSPEC2 esvanter esvantas V;PFV;IND;SG;2;PST esvanter esvantastes V;PFV;IND;PL;2;PST esvanter esvantes V;SBJV;SG;2;PRS esvanter esvantoys V;IPFV;IND;SG;2;PST;LGSPEC2 esvanter esvante V;IND;SG;1;PRS esvanter esvanterons V;IND;PL;1;FUT esvanter esvanter V;NFIN esvanter esvante V;SBJV;SG;3;PRS esvanter esvante V;IND;SG;3;PRS esvanter esvanteroyt V;COND;SG;3;LGSPEC2 esvanter esvante V;IMP;SG;2 esvanter esvantoyt V;IPFV;IND;SG;3;PST;LGSPEC2 esvanter esvantez V;SBJV;PL;2;PRS esvanter esvanterois V;COND;SG;2;LGSPEC1 esvanter esvantons V;IND;PL;1;PRS esvanter esvanteryons V;COND;PL;1;LGSPEC2 esvanter esvantent V;SBJV;PL;3;PRS esvanter esvantiez V;IPFV;IND;PL;2;PST;LGSPEC1 esvanter esvanterions V;COND;PL;1;LGSPEC1 esvanter esvanterez V;IND;PL;2;FUT esvanter esvantoyent V;IPFV;IND;PL;3;PST;LGSPEC2 esvanter esvantes V;IND;SG;2;PRS esvanter esvantez V;IMP;PL;2 esvanter esvanterai V;IND;SG;1;FUT;LGSPEC1 esvanter esvanterent V;PFV;IND;PL;3;PST esvanter esvanteront V;IND;PL;3;FUT esvanter esvantassiez V;IPFV;SBJV;PL;2;PST esvanter esvantoys V;IPFV;IND;SG;1;PST;LGSPEC2 mectre mectois V;IPFV;IND;SG;2;PST;LGSPEC1 mectre mectront V;IND;PL;3;FUT mectre mectre V;NFIN mectre mectroit V;COND;SG;3;LGSPEC1 mectre mectons V;IMP;PL;1 mectre mectras V;IND;SG;2;FUT mectre misse V;IPFV;SBJV;SG;1;PST mectre mis V;PFV;IND;SG;1;PST mectre mectroyt V;COND;SG;3;LGSPEC2 mectre mist V;IPFV;SBJV;SG;3;PST mectre mistes V;PFV;IND;PL;2;PST mectre missiez V;IPFV;SBJV;PL;2;PST mectre missent V;IPFV;SBJV;PL;3;PST mectre mets V;IND;SG;1;PRS mectre mit V;PFV;IND;SG;3;PST mectre mectiez V;IPFV;IND;PL;2;PST mectre mets V;IND;SG;2;PRS mectre mectoit V;IPFV;IND;SG;3;PST;LGSPEC1 mectre mectroyent V;COND;PL;3;LGSPEC2 mectre mectriez V;COND;PL;2 mectre mectoyt V;IPFV;IND;SG;3;PST;LGSPEC2 mectre mectrez V;IND;PL;2;FUT mectre mectes V;SBJV;SG;2;PRS mectre mectrions V;COND;PL;1 mectre mecte V;SBJV;SG;3;PRS mectre mections V;IPFV;IND;PL;1;PST mectre mismes V;PFV;IND;PL;1;PST mectre mectoys V;IPFV;IND;SG;1;PST;LGSPEC2 mectre missions V;IPFV;SBJV;PL;1;PST mectre met V;IND;SG;3;PRS mectre mectroye V;IND;SG;1;FUT;LGSPEC2 mectre mectroient V;COND;PL;3;LGSPEC1 mectre mectois V;IPFV;IND;SG;1;PST;LGSPEC1 mectre mectent V;IND;PL;3;PRS mectre mectrons V;IND;PL;1;FUT mectre mectra V;IND;SG;3;FUT mectre mectrois V;COND;SG;2;LGSPEC1 mectre mectez V;IND;PL;2;PRS mectre menctent V;SBJV;PL;3;PRS mectre mecte V;SBJV;SG;1;PRS mectre mectiez V;SBJV;PL;2;PRS mectre mets V;IMP;SG;2 mectre mectoys V;IPFV;IND;SG;2;PST;LGSPEC2 mectre mectoient V;IPFV;IND;PL;3;PST;LGSPEC1 mectre mectrois V;COND;SG;1;LGSPEC1 mectre mectroys V;COND;SG;1;LGSPEC2 mectre mirent V;PFV;IND;PL;3;PST mectre mectroie V;IND;SG;1;FUT;LGSPEC1 mectre mectez V;IMP;PL;2 mectre mectoyent V;IPFV;IND;PL;3;PST;LGSPEC2 mectre mis V;PFV;IND;SG;2;PST mectre mectons V;IND;PL;1;PRS mectre misses V;IPFV;SBJV;SG;2;PST mectre mectroys V;COND;SG;2;LGSPEC2 mectre mections V;SBJV;PL;1;PRS hebergier hebergieroit V;COND;SG;3;LGSPEC1 hebergier hebergeas V;PFV;IND;SG;2;PST hebergier heberges V;SBJV;SG;2;PRS hebergier hebergeastes V;PFV;IND;PL;2;PST hebergier hebergeassions V;IPFV;SBJV;PL;1;PST hebergier hebergyez V;IPFV;IND;PL;2;PST;LGSPEC2 hebergier hebergieras V;IND;SG;2;FUT hebergier hebergeois V;IPFV;IND;SG;2;PST;LGSPEC1 hebergier hebergeoit V;IPFV;IND;SG;3;PST;LGSPEC1 hebergier heberges V;IND;SG;2;PRS hebergier hebergeoys V;IPFV;IND;SG;1;PST;LGSPEC2 hebergier hebergeast V;IPFV;SBJV;SG;3;PST hebergier hebergiez V;SBJV;PL;2;PRS hebergier heberge V;IND;SG;3;PRS hebergier hebergierons V;IND;PL;1;FUT hebergier hebergeois V;IPFV;IND;SG;1;PST;LGSPEC1 hebergier hebergiez V;IND;PL;2;PRS hebergier hebergierez V;IND;PL;2;FUT hebergier hebergierent V;PFV;IND;PL;3;PST hebergier hebergierions V;COND;PL;1;LGSPEC1 hebergier hebergeassent V;IPFV;SBJV;PL;3;PST hebergier hebergions V;IPFV;IND;PL;1;PST;LGSPEC1 hebergier hebergierois V;COND;SG;1;LGSPEC1 hebergier hebergeoyt V;IPFV;IND;SG;3;PST;LGSPEC2 hebergier hebergea V;PFV;IND;SG;1;PST hebergier hebergyons V;IPFV;IND;PL;1;PST;LGSPEC2 hebergier hebergiez V;IMP;PL;2 hebergier hebergieroyent V;COND;PL;3;LGSPEC2 hebergier heberge V;IND;SG;1;PRS hebergier hebergiera V;IND;SG;3;FUT hebergier hebergent V;SBJV;PL;3;PRS hebergier hebergieront V;IND;PL;3;FUT hebergier hebergieroys V;COND;SG;2;LGSPEC2 hebergier hebergierai V;IND;SG;1;FUT;LGSPEC1 hebergier hebergiez V;IPFV;IND;PL;2;PST;LGSPEC1 hebergier heberge V;IMP;SG;2 hebergier hebergieriez V;COND;PL;2;LGSPEC1 hebergier hebergea V;PFV;IND;SG;3;PST hebergier hebergeassiez V;IPFV;SBJV;PL;2;PST hebergier hebergieryez V;COND;PL;2;LGSPEC2 hebergier heberge V;SBJV;SG;3;PRS hebergier hebergions V;IND;PL;1;PRS hebergier hebergions V;SBJV;PL;1;PRS hebergier hebergent V;IND;PL;3;PRS hebergier hebergions V;IMP;PL;1 hebergier hebergeoyent V;IPFV;IND;PL;3;PST;LGSPEC2 hebergier hebergierois V;COND;SG;2;LGSPEC1 hebergier hebergieroyt V;COND;SG;3;LGSPEC2 hebergier hebergeasmes V;PFV;IND;PL;1;PST hebergier hebergieray V;IND;SG;1;FUT;LGSPEC2 hebergier hebergieryons V;COND;PL;1;LGSPEC2 hebergier heberge V;SBJV;SG;1;PRS hebergier hebergier V;NFIN hebergier hebergeoient V;IPFV;IND;PL;3;PST;LGSPEC1 hebergier hebergeasses V;IPFV;SBJV;SG;2;PST hebergier hebergeoys V;IPFV;IND;SG;2;PST;LGSPEC2 hebergier hebergeasse V;IPFV;SBJV;SG;1;PST hebergier hebergieroys V;COND;SG;1;LGSPEC2 hebergier hebergieroient V;COND;PL;3;LGSPEC1 renouveller renouvelleryons V;COND;PL;1;LGSPEC2 renouveller renouvelleroient V;COND;PL;3;LGSPEC1 renouveller renouvelloys V;IPFV;IND;SG;1;PST;LGSPEC2 renouveller renouvelleront V;IND;PL;3;FUT renouveller renouvelle V;SBJV;SG;3;PRS renouveller renouvellons V;SBJV;PL;1;PRS renouveller renouvelleriez V;COND;PL;2;LGSPEC1 renouveller renouvellasmes V;PFV;IND;PL;1;PST renouveller renouvellois V;IPFV;IND;SG;2;PST;LGSPEC1 renouveller renouvellerois V;COND;SG;2;LGSPEC1 renouveller renouvellassiez V;IPFV;SBJV;PL;2;PST renouveller renouvella V;PFV;IND;SG;3;PST renouveller renouvelloyent V;IPFV;IND;PL;3;PST;LGSPEC2 renouveller renouvellerons V;IND;PL;1;FUT renouveller renouvellasse V;IPFV;SBJV;SG;1;PST renouveller renouvellas V;PFV;IND;SG;2;PST renouveller renouvelleroit V;COND;SG;3;LGSPEC1 renouveller renouvellerez V;IND;PL;2;FUT renouveller renouvellent V;SBJV;PL;3;PRS renouveller renouvelloyt V;IPFV;IND;SG;3;PST;LGSPEC2 renouveller renouvelleroys V;COND;SG;1;LGSPEC2 renouveller renouvelleryez V;COND;PL;2;LGSPEC2 renouveller renouvelle V;IND;SG;3;PRS renouveller renouvellyez V;IPFV;IND;PL;2;PST;LGSPEC2 renouveller renouvellez V;SBJV;PL;2;PRS renouveller renouvelloit V;IPFV;IND;SG;3;PST;LGSPEC1 renouveller renouvelle V;IMP;SG;2 renouveller renouvellois V;IPFV;IND;SG;1;PST;LGSPEC1 renouveller renouvelleroys V;COND;SG;2;LGSPEC2 renouveller renouvelloient V;IPFV;IND;PL;3;PST;LGSPEC1 renouveller renouveller V;NFIN renouveller renouvellerai V;IND;SG;1;FUT;LGSPEC1 renouveller renouvelleroyt V;COND;SG;3;LGSPEC2 renouveller renouvellera V;IND;SG;3;FUT renouveller renouvellions V;IPFV;IND;PL;1;PST;LGSPEC1 renouveller renouvellez V;IND;PL;2;PRS renouveller renouvelleras V;IND;SG;2;FUT renouveller renouvelleray V;IND;SG;1;FUT;LGSPEC2 renouveller renouvellyons V;IPFV;IND;PL;1;PST;LGSPEC2 renouveller renouvelloys V;IPFV;IND;SG;2;PST;LGSPEC2 renouveller renouvellez V;IMP;PL;2 renouveller renouvella V;PFV;IND;SG;1;PST renouveller renouvellastes V;PFV;IND;PL;2;PST renouveller renouvellons V;IND;PL;1;PRS renouveller renouvelle V;IND;SG;1;PRS renouveller renouvelles V;IND;SG;2;PRS renouveller renouvelle V;SBJV;SG;1;PRS renouveller renouvellons V;IMP;PL;1 renouveller renouvellent V;IND;PL;3;PRS renouveller renouvelleroyent V;COND;PL;3;LGSPEC2 renouveller renouvellerent V;PFV;IND;PL;3;PST renouveller renouvellassent V;IPFV;SBJV;PL;3;PST renouveller renouvellerions V;COND;PL;1;LGSPEC1 renouveller renouvellast V;IPFV;SBJV;SG;3;PST renouveller renouvellassions V;IPFV;SBJV;PL;1;PST renouveller renouvelles V;SBJV;SG;2;PRS renouveller renouvellasses V;IPFV;SBJV;SG;2;PST renouveller renouvelliez V;IPFV;IND;PL;2;PST;LGSPEC1 renouveller renouvellerois V;COND;SG;1;LGSPEC1 avoyr as V;IND;SG;2;PRS avoyr eusmes V;PFV;IND;PL;1;PST avoyr aurois V;COND;SG;1 avoyr aurions V;COND;PL;1 avoyr auroient V;COND;PL;3;LGSPEC1 avoyr aurez V;IND;PL;2;FUT avoyr aurois V;COND;SG;2 avoyr avons V;IND;PL;1;PRS avoyr avais V;IPFV;IND;SG;2;PST avoyr aions V;IMP;PL;1;LGSPEC2 avoyr avez V;IND;PL;2;PRS avoyr eusse V;IPFV;SBJV;SG;1;PST avoyr a V;IND;SG;3;PRS avoyr ai V;IND;SG;1;PRS;LGSPEC1 avoyr avait V;IPFV;IND;SG;3;PST avoyr avais V;IPFV;IND;SG;1;PST avoyr eust V;IPFV;SBJV;SG;3;PST avoyr aviez V;IPFV;IND;PL;2;PST avoyr auroie V;IND;SG;1;FUT;LGSPEC1 avoyr auroye V;IND;SG;1;FUT;LGSPEC2 avoyr ait V;SBJV;SG;3;PRS avoyr eussent V;IPFV;SBJV;PL;3;PST avoyr auront V;IND;PL;3;FUT avoyr auroyent V;COND;PL;3;LGSPEC2 avoyr eustes V;PFV;IND;PL;2;PST avoyr ayons V;IMP;PL;1;LGSPEC1 avoyr avoyr V;NFIN avoyr avoyent V;IPFV;IND;PL;3;PST;LGSPEC2 avoyr eurent V;PFV;IND;PL;3;PST avoyr eus V;PFV;IND;SG;1;PST avoyr aie V;SBJV;SG;1;PRS avoyr aura V;IND;SG;3;FUT avoyr avoient V;IPFV;IND;PL;3;PST;LGSPEC1 avoyr ont V;IND;PL;3;PRS avoyr aiez V;IMP;PL;2;LGSPEC2 avoyr ayent V;SBJV;PL;3;PRS;LGSPEC2 avoyr auras V;IND;SG;2;FUT avoyr ayez V;IMP;PL;2;LGSPEC1 avoyr ayons V;SBJV;PL;1;PRS avoyr eut V;PFV;IND;SG;3;PST avoyr aies V;SBJV;SG;2;PRS avoyr auriez V;COND;PL;2 avoyr ayez V;SBJV;PL;2;PRS avoyr eussions V;IPFV;SBJV;PL;1;PST avoyr aie V;IMP;SG;2 avoyr avions V;IPFV;IND;PL;1;PST avoyr eussiez V;IPFV;SBJV;PL;2;PST avoyr aurons V;IND;PL;1;FUT avoyr eus V;PFV;IND;SG;2;PST avoyr aurait V;COND;SG;3 avoyr ay V;IND;SG;1;PRS;LGSPEC2 avoyr eusses V;IPFV;SBJV;SG;2;PST avoyr aient V;SBJV;PL;3;PRS;LGSPEC1 moderer moderons V;SBJV;PL;1;PRS moderer moderassiez V;IPFV;SBJV;PL;2;PST moderer moderoys V;IPFV;IND;SG;2;PST;LGSPEC2 moderer moderer V;NFIN moderer moderent V;IND;PL;3;PRS moderer moderois V;IPFV;IND;SG;1;PST;LGSPEC1 moderer moderas V;PFV;IND;SG;2;PST moderer modereryez V;COND;PL;2;LGSPEC2 moderer moderoit V;IPFV;IND;SG;3;PST;LGSPEC1 moderer moderoyent V;IPFV;IND;PL;3;PST;LGSPEC2 moderer moderastes V;PFV;IND;PL;2;PST moderer moderasse V;IPFV;SBJV;SG;1;PST moderer modereriez V;COND;PL;2;LGSPEC1 moderer moderasses V;IPFV;SBJV;SG;2;PST moderer moderez V;IMP;PL;2 moderer modererions V;COND;PL;1;LGSPEC1 moderer modererons V;IND;PL;1;FUT moderer moderons V;IND;PL;1;PRS moderer modererez V;IND;PL;2;FUT moderer modererai V;IND;SG;1;FUT;LGSPEC1 moderer modereroit V;COND;SG;3;LGSPEC1 moderer modereroys V;COND;SG;2;LGSPEC2 moderer modere V;SBJV;SG;3;PRS moderer moderassions V;IPFV;SBJV;PL;1;PST moderer modereroyt V;COND;SG;3;LGSPEC2 moderer modereroient V;COND;PL;3;LGSPEC1 moderer modereroys V;COND;SG;1;LGSPEC2 moderer modere V;IMP;SG;2 moderer moderassent V;IPFV;SBJV;PL;3;PST moderer moderent V;SBJV;PL;3;PRS moderer moderera V;IND;SG;3;FUT moderer moderes V;IND;SG;2;PRS moderer moderiez V;IPFV;IND;PL;2;PST;LGSPEC1 moderer moderoient V;IPFV;IND;PL;3;PST;LGSPEC1 moderer moderyons V;IPFV;IND;PL;1;PST;LGSPEC2 moderer moderast V;IPFV;SBJV;SG;3;PST moderer moderois V;IPFV;IND;SG;2;PST;LGSPEC1 moderer moderoyt V;IPFV;IND;SG;3;PST;LGSPEC2 moderer moderez V;SBJV;PL;2;PRS moderer moderez V;IND;PL;2;PRS moderer modereront V;IND;PL;3;FUT moderer modereroyent V;COND;PL;3;LGSPEC2 moderer moderoys V;IPFV;IND;SG;1;PST;LGSPEC2 moderer moderasmes V;PFV;IND;PL;1;PST moderer modererent V;PFV;IND;PL;3;PST moderer moderions V;IPFV;IND;PL;1;PST;LGSPEC1 moderer modererois V;COND;SG;1;LGSPEC1 moderer modera V;PFV;IND;SG;3;PST moderer moderes V;SBJV;SG;2;PRS moderer modere V;SBJV;SG;1;PRS moderer modereryons V;COND;PL;1;LGSPEC2 moderer modere V;IND;SG;3;PRS moderer moderons V;IMP;PL;1 moderer modererois V;COND;SG;2;LGSPEC1 moderer modere V;IND;SG;1;PRS moderer modera V;PFV;IND;SG;1;PST moderer moderyez V;IPFV;IND;PL;2;PST;LGSPEC2 moderer modereray V;IND;SG;1;FUT;LGSPEC2 moderer modereras V;IND;SG;2;FUT moustrer moustrassent V;IPFV;SBJV;PL;3;PST moustrer moustryons V;IPFV;IND;PL;1;PST;LGSPEC2 moustrer moustrez V;IND;PL;2;PRS moustrer moustra V;PFV;IND;SG;1;PST moustrer moustrasse V;IPFV;SBJV;SG;1;PST moustrer moustroys V;IPFV;IND;SG;2;PST;LGSPEC2 moustrer moustrasses V;IPFV;SBJV;SG;2;PST moustrer moustrerois V;COND;SG;2;LGSPEC1 moustrer moustreryez V;COND;PL;2;LGSPEC2 moustrer moustroyent V;IPFV;IND;PL;3;PST;LGSPEC2 moustrer moustryez V;IPFV;IND;PL;2;PST;LGSPEC2 moustrer moustre V;SBJV;SG;3;PRS moustrer moustrerois V;COND;SG;1;LGSPEC1 moustrer moustreroyent V;COND;PL;3;LGSPEC2 moustrer moustras V;PFV;IND;SG;2;PST moustrer moustrons V;IMP;PL;1 moustrer moustrerons V;IND;PL;1;FUT moustrer moustre V;IND;SG;1;PRS moustrer moustreriez V;COND;PL;2;LGSPEC1 moustrer moustrasmes V;PFV;IND;PL;1;PST moustrer moustrast V;IPFV;SBJV;SG;3;PST moustrer moustrent V;IND;PL;3;PRS moustrer moustrois V;IPFV;IND;SG;1;PST;LGSPEC1 moustrer moustrons V;SBJV;PL;1;PRS moustrer moustreroys V;COND;SG;2;LGSPEC2 moustrer moustreryons V;COND;PL;1;LGSPEC2 moustrer moustrez V;SBJV;PL;2;PRS moustrer moustreroit V;COND;SG;3;LGSPEC1 moustrer moustre V;IND;SG;3;PRS moustrer moustra V;PFV;IND;SG;3;PST moustrer moustroient V;IPFV;IND;PL;3;PST;LGSPEC1 moustrer moustreroys V;COND;SG;1;LGSPEC2 moustrer moustrerent V;PFV;IND;PL;3;PST moustrer moustrez V;IMP;PL;2 moustrer moustre V;IMP;SG;2 moustrer moustrastes V;PFV;IND;PL;2;PST moustrer moustreray V;IND;SG;1;FUT;LGSPEC2 moustrer moustrerai V;IND;SG;1;FUT;LGSPEC1 moustrer moustreroient V;COND;PL;3;LGSPEC1 moustrer moustrerions V;COND;PL;1;LGSPEC1 moustrer moustres V;SBJV;SG;2;PRS moustrer moustrerez V;IND;PL;2;FUT moustrer moustre V;SBJV;SG;1;PRS moustrer moustreras V;IND;SG;2;FUT moustrer moustrois V;IPFV;IND;SG;2;PST;LGSPEC1 moustrer moustroit V;IPFV;IND;SG;3;PST;LGSPEC1 moustrer moustrer V;NFIN moustrer moustroyt V;IPFV;IND;SG;3;PST;LGSPEC2 moustrer moustrassions V;IPFV;SBJV;PL;1;PST moustrer moustroys V;IPFV;IND;SG;1;PST;LGSPEC2 moustrer moustres V;IND;SG;2;PRS moustrer moustreront V;IND;PL;3;FUT moustrer moustrassiez V;IPFV;SBJV;PL;2;PST moustrer moustrons V;IND;PL;1;PRS moustrer moustrera V;IND;SG;3;FUT moustrer moustriez V;IPFV;IND;PL;2;PST;LGSPEC1 moustrer moustrions V;IPFV;IND;PL;1;PST;LGSPEC1 moustrer moustreroyt V;COND;SG;3;LGSPEC2 moustrer moustrent V;SBJV;PL;3;PRS esloigner esloignent V;IND;PL;3;PRS esloigner esloignoys V;IPFV;IND;SG;2;PST;LGSPEC2 esloigner esloigner V;NFIN esloigner esloignerois V;COND;SG;1;LGSPEC1 esloigner esloigneroys V;COND;SG;1;LGSPEC2 esloigner esloignois V;IPFV;IND;SG;2;PST;LGSPEC1 esloigner esloignast V;IPFV;SBJV;SG;3;PST esloigner esloignons V;IND;PL;1;PRS esloigner esloigneroys V;COND;SG;2;LGSPEC2 esloigner esloigneryez V;COND;PL;2;LGSPEC2 esloigner esloignassiez V;IPFV;SBJV;PL;2;PST esloigner esloigne V;SBJV;SG;1;PRS esloigner esloignions V;IPFV;IND;PL;1;PST;LGSPEC1 esloigner esloignyons V;IPFV;IND;PL;1;PST;LGSPEC2 esloigner esloignent V;SBJV;PL;3;PRS esloigner esloignes V;SBJV;SG;2;PRS esloigner esloigniez V;IPFV;IND;PL;2;PST;LGSPEC1 esloigner esloigneryons V;COND;PL;1;LGSPEC2 esloigner esloignois V;IPFV;IND;SG;1;PST;LGSPEC1 esloigner esloignoyent V;IPFV;IND;PL;3;PST;LGSPEC2 esloigner esloignasmes V;PFV;IND;PL;1;PST esloigner esloigne V;SBJV;SG;3;PRS esloigner esloigneray V;IND;SG;1;FUT;LGSPEC2 esloigner esloignerent V;PFV;IND;PL;3;PST esloigner esloigneroient V;COND;PL;3;LGSPEC1 esloigner esloigneroyent V;COND;PL;3;LGSPEC2 esloigner esloigne V;IND;SG;3;PRS esloigner esloigneroit V;COND;SG;3;LGSPEC1 esloigner esloignasses V;IPFV;SBJV;SG;2;PST esloigner esloignez V;IND;PL;2;PRS esloigner esloignerois V;COND;SG;2;LGSPEC1 esloigner esloigneras V;IND;SG;2;FUT esloigner esloignoient V;IPFV;IND;PL;3;PST;LGSPEC1 esloigner esloignerez V;IND;PL;2;FUT esloigner esloignez V;IMP;PL;2 esloigner esloignastes V;PFV;IND;PL;2;PST esloigner esloignerai V;IND;SG;1;FUT;LGSPEC1 esloigner esloigne V;IND;SG;1;PRS esloigner esloignes V;IND;SG;2;PRS esloigner esloignoit V;IPFV;IND;SG;3;PST;LGSPEC1 esloigner esloignoyt V;IPFV;IND;SG;3;PST;LGSPEC2 esloigner esloignassions V;IPFV;SBJV;PL;1;PST esloigner esloignera V;IND;SG;3;FUT esloigner esloignassent V;IPFV;SBJV;PL;3;PST esloigner esloignons V;IMP;PL;1 esloigner esloignasse V;IPFV;SBJV;SG;1;PST esloigner esloignerions V;COND;PL;1;LGSPEC1 esloigner esloigneroyt V;COND;SG;3;LGSPEC2 esloigner esloignons V;SBJV;PL;1;PRS esloigner esloignoys V;IPFV;IND;SG;1;PST;LGSPEC2 esloigner esloigna V;PFV;IND;SG;1;PST esloigner esloigneront V;IND;PL;3;FUT esloigner esloigna V;PFV;IND;SG;3;PST esloigner esloignerons V;IND;PL;1;FUT esloigner esloignez V;SBJV;PL;2;PRS esloigner esloigneriez V;COND;PL;2;LGSPEC1 esloigner esloignas V;PFV;IND;SG;2;PST esloigner esloignyez V;IPFV;IND;PL;2;PST;LGSPEC2 esloigner esloigne V;IMP;SG;2 infourmer infourmiez V;IPFV;IND;PL;2;PST;LGSPEC1 infourmer infourmassiez V;IPFV;SBJV;PL;2;PST infourmer infourmeriez V;COND;PL;2;LGSPEC1 infourmer infourmeray V;IND;SG;1;FUT;LGSPEC2 infourmer infourmez V;IND;PL;2;PRS infourmer infourmons V;IND;PL;1;PRS infourmer infourmois V;IPFV;IND;SG;1;PST;LGSPEC1 infourmer infourmons V;IMP;PL;1 infourmer infourmerons V;IND;PL;1;FUT infourmer infourmera V;IND;SG;3;FUT infourmer infourmoyt V;IPFV;IND;SG;3;PST;LGSPEC2 infourmer infourmeroyent V;COND;PL;3;LGSPEC2 infourmer infourmeroit V;COND;SG;3;LGSPEC1 infourmer infourment V;IND;PL;3;PRS infourmer infourme V;SBJV;SG;1;PRS infourmer infourme V;IND;SG;1;PRS infourmer infourmeryons V;COND;PL;1;LGSPEC2 infourmer infourme V;SBJV;SG;3;PRS infourmer infourmerez V;IND;PL;2;FUT infourmer infourment V;SBJV;PL;3;PRS infourmer infourmassions V;IPFV;SBJV;PL;1;PST infourmer infourmerois V;COND;SG;2;LGSPEC1 infourmer infourmions V;IPFV;IND;PL;1;PST;LGSPEC1 infourmer infourmast V;IPFV;SBJV;SG;3;PST infourmer infourmez V;IMP;PL;2 infourmer infourma V;PFV;IND;SG;3;PST infourmer infourmassent V;IPFV;SBJV;PL;3;PST infourmer infourma V;PFV;IND;SG;1;PST infourmer infourmes V;IND;SG;2;PRS infourmer infourmeroient V;COND;PL;3;LGSPEC1 infourmer infourmasses V;IPFV;SBJV;SG;2;PST infourmer infourmeroys V;COND;SG;2;LGSPEC2 infourmer infourmoit V;IPFV;IND;SG;3;PST;LGSPEC1 infourmer infourme V;IND;SG;3;PRS infourmer infourmerent V;PFV;IND;PL;3;PST infourmer infourmeryez V;COND;PL;2;LGSPEC2 infourmer infourmois V;IPFV;IND;SG;2;PST;LGSPEC1 infourmer infourme V;IMP;SG;2 infourmer infourmerions V;COND;PL;1;LGSPEC1 infourmer infourmastes V;PFV;IND;PL;2;PST infourmer infourmyons V;IPFV;IND;PL;1;PST;LGSPEC2 infourmer infourmons V;SBJV;PL;1;PRS infourmer infourmoys V;IPFV;IND;SG;1;PST;LGSPEC2 infourmer infourmeront V;IND;PL;3;FUT infourmer infourmer V;NFIN infourmer infourmerai V;IND;SG;1;FUT;LGSPEC1 infourmer infourmerois V;COND;SG;1;LGSPEC1 infourmer infourmez V;SBJV;PL;2;PRS infourmer infourmeroys V;COND;SG;1;LGSPEC2 infourmer infourmasse V;IPFV;SBJV;SG;1;PST infourmer infourmes V;SBJV;SG;2;PRS infourmer infourmyez V;IPFV;IND;PL;2;PST;LGSPEC2 infourmer infourmoient V;IPFV;IND;PL;3;PST;LGSPEC1 infourmer infourmasmes V;PFV;IND;PL;1;PST infourmer infourmeras V;IND;SG;2;FUT infourmer infourmas V;PFV;IND;SG;2;PST infourmer infourmoyent V;IPFV;IND;PL;3;PST;LGSPEC2 infourmer infourmoys V;IPFV;IND;SG;2;PST;LGSPEC2 infourmer infourmeroyt V;COND;SG;3;LGSPEC2 emerger emergeassions V;IPFV;SBJV;PL;1;PST emerger emergeroit V;COND;SG;3;LGSPEC1 emerger emergions V;IPFV;IND;PL;1;PST;LGSPEC1 emerger emerges V;IND;SG;2;PRS emerger emergez V;IND;PL;2;PRS emerger emerge V;IMP;SG;2 emerger emergeois V;IPFV;IND;SG;1;PST;LGSPEC1 emerger emergeroys V;COND;SG;2;LGSPEC2 emerger emerge V;SBJV;SG;3;PRS emerger emergerez V;IND;PL;2;FUT emerger emergeras V;IND;SG;2;FUT emerger emergerons V;IND;PL;1;FUT emerger emergeoyt V;IPFV;IND;SG;3;PST;LGSPEC2 emerger emergent V;IND;PL;3;PRS emerger emergyez V;IPFV;IND;PL;2;PST;LGSPEC2 emerger emergyons V;IPFV;IND;PL;1;PST;LGSPEC2 emerger emergeray V;IND;SG;1;FUT;LGSPEC2 emerger emergeast V;IPFV;SBJV;SG;3;PST emerger emergez V;IMP;PL;2 emerger emergeryons V;COND;PL;1;LGSPEC2 emerger emergeons V;IMP;PL;1 emerger emergeassiez V;IPFV;SBJV;PL;2;PST emerger emergez V;SBJV;PL;2;PRS emerger emergeasse V;IPFV;SBJV;SG;1;PST emerger emergerois V;COND;SG;2;LGSPEC1 emerger emerge V;IND;SG;1;PRS emerger emergeoient V;IPFV;IND;PL;3;PST;LGSPEC1 emerger emergerions V;COND;PL;1;LGSPEC1 emerger emerge V;SBJV;SG;1;PRS emerger emerger V;NFIN emerger emerge V;IND;SG;3;PRS emerger emergea V;PFV;IND;SG;1;PST emerger emergeoit V;IPFV;IND;SG;3;PST;LGSPEC1 emerger emergeroyent V;COND;PL;3;LGSPEC2 emerger emergeasmes V;PFV;IND;PL;1;PST emerger emergeassent V;IPFV;SBJV;PL;3;PST emerger emergeroient V;COND;PL;3;LGSPEC1 emerger emergerent V;PFV;IND;PL;3;PST emerger emergeastes V;PFV;IND;PL;2;PST emerger emerges V;SBJV;SG;2;PRS emerger emergeasses V;IPFV;SBJV;SG;2;PST emerger emergeoyent V;IPFV;IND;PL;3;PST;LGSPEC2 emerger emergeas V;PFV;IND;SG;2;PST emerger emergeons V;SBJV;PL;1;PRS emerger emergeryez V;COND;PL;2;LGSPEC2 emerger emergeoys V;IPFV;IND;SG;1;PST;LGSPEC2 emerger emergeroyt V;COND;SG;3;LGSPEC2 emerger emergerai V;IND;SG;1;FUT;LGSPEC1 emerger emergiez V;IPFV;IND;PL;2;PST;LGSPEC1 emerger emergeroys V;COND;SG;1;LGSPEC2 emerger emergeois V;IPFV;IND;SG;2;PST;LGSPEC1 emerger emergeriez V;COND;PL;2;LGSPEC1 emerger emergeoys V;IPFV;IND;SG;2;PST;LGSPEC2 emerger emergea V;PFV;IND;SG;3;PST emerger emergerois V;COND;SG;1;LGSPEC1 emerger emergera V;IND;SG;3;FUT emerger emergeront V;IND;PL;3;FUT emerger emergent V;SBJV;PL;3;PRS emerger emergeons V;IND;PL;1;PRS abboyer abboyes V;SBJV;SG;2;PRS abboyer abboyez V;SBJV;PL;2;PRS abboyer abboyons V;IND;PL;1;PRS abboyer abboyeray V;IND;SG;1;FUT;LGSPEC2 abboyer abboya V;PFV;IND;SG;1;PST abboyer abboyasses V;IPFV;SBJV;SG;2;PST abboyer abboyas V;PFV;IND;SG;2;PST abboyer abboyerons V;IND;PL;1;FUT abboyer abboye V;IND;SG;3;PRS abboyer abboyeryons V;COND;PL;1;LGSPEC2 abboyer abboyeroyent V;COND;PL;3;LGSPEC2 abboyer abboyerez V;IND;PL;2;FUT abboyer abboyera V;IND;SG;3;FUT abboyer abboyerions V;COND;PL;1;LGSPEC1 abboyer abboyons V;IMP;PL;1 abboyer abboyois V;IPFV;IND;SG;2;PST;LGSPEC1 abboyer abboyeryez V;COND;PL;2;LGSPEC2 abboyer abboyerois V;COND;SG;2;LGSPEC1 abboyer abboyerent V;PFV;IND;PL;3;PST abboyer abboyyez V;IPFV;IND;PL;2;PST;LGSPEC2 abboyer abboyiez V;IPFV;IND;PL;2;PST;LGSPEC1 abboyer abboyoyent V;IPFV;IND;PL;3;PST;LGSPEC2 abboyer abboye V;SBJV;SG;3;PRS abboyer abboyoys V;IPFV;IND;SG;1;PST;LGSPEC2 abboyer abboyes V;IND;SG;2;PRS abboyer abboyons V;SBJV;PL;1;PRS abboyer abboyerai V;IND;SG;1;FUT;LGSPEC1 abboyer abboyasmes V;PFV;IND;PL;1;PST abboyer abboyastes V;PFV;IND;PL;2;PST abboyer abboyent V;IND;PL;3;PRS abboyer abboyez V;IMP;PL;2 abboyer abboyer V;NFIN abboyer abboyent V;SBJV;PL;3;PRS abboyer abboye V;IND;SG;1;PRS abboyer abboyasse V;IPFV;SBJV;SG;1;PST abboyer abboyez V;IND;PL;2;PRS abboyer abboyeroys V;COND;SG;2;LGSPEC2 abboyer abboyeroit V;COND;SG;3;LGSPEC1 abboyer abboyeront V;IND;PL;3;FUT abboyer abboya V;PFV;IND;SG;3;PST abboyer abboyoit V;IPFV;IND;SG;3;PST;LGSPEC1 abboyer abboyassent V;IPFV;SBJV;PL;3;PST abboyer abboyerois V;COND;SG;1;LGSPEC1 abboyer abboyeroient V;COND;PL;3;LGSPEC1 abboyer abboye V;SBJV;SG;1;PRS abboyer abboyois V;IPFV;IND;SG;1;PST;LGSPEC1 abboyer abboyoient V;IPFV;IND;PL;3;PST;LGSPEC1 abboyer abboyions V;IPFV;IND;PL;1;PST;LGSPEC1 abboyer abboyassiez V;IPFV;SBJV;PL;2;PST abboyer abboyassions V;IPFV;SBJV;PL;1;PST abboyer abboyoyt V;IPFV;IND;SG;3;PST;LGSPEC2 abboyer abboyyons V;IPFV;IND;PL;1;PST;LGSPEC2 abboyer abboyeriez V;COND;PL;2;LGSPEC1 abboyer abboyoys V;IPFV;IND;SG;2;PST;LGSPEC2 abboyer abboyeroyt V;COND;SG;3;LGSPEC2 abboyer abboyeroys V;COND;SG;1;LGSPEC2 abboyer abboyast V;IPFV;SBJV;SG;3;PST abboyer abboyeras V;IND;SG;2;FUT abboyer abboye V;IMP;SG;2 gaimenter gaimentoys V;IPFV;IND;SG;1;PST;LGSPEC2 gaimenter gaimenteroyent V;COND;PL;3;LGSPEC2 gaimenter gaimentois V;IPFV;IND;SG;2;PST;LGSPEC1 gaimenter gaimentois V;IPFV;IND;SG;1;PST;LGSPEC1 gaimenter gaimentes V;SBJV;SG;2;PRS gaimenter gaimenta V;PFV;IND;SG;1;PST gaimenter gaimenteroys V;COND;SG;1;LGSPEC2 gaimenter gaimente V;SBJV;SG;1;PRS gaimenter gaimentions V;IPFV;IND;PL;1;PST;LGSPEC1 gaimenter gaimentent V;SBJV;PL;3;PRS gaimenter gaimentasses V;IPFV;SBJV;SG;2;PST gaimenter gaimentyons V;IPFV;IND;PL;1;PST;LGSPEC2 gaimenter gaimente V;IND;SG;1;PRS gaimenter gaimentasse V;IPFV;SBJV;SG;1;PST gaimenter gaimentons V;IND;PL;1;PRS gaimenter gaimenterez V;IND;PL;2;FUT gaimenter gaimentas V;PFV;IND;SG;2;PST gaimenter gaimenteriez V;COND;PL;2;LGSPEC1 gaimenter gaimentera V;IND;SG;3;FUT gaimenter gaimentons V;IMP;PL;1 gaimenter gaimenter V;NFIN gaimenter gaimentez V;SBJV;PL;2;PRS gaimenter gaimenteroient V;COND;PL;3;LGSPEC1 gaimenter gaimentoit V;IPFV;IND;SG;3;PST;LGSPEC1 gaimenter gaimentoyent V;IPFV;IND;PL;3;PST;LGSPEC2 gaimenter gaimenterois V;COND;SG;2;LGSPEC1 gaimenter gaimente V;SBJV;SG;3;PRS gaimenter gaimentoient V;IPFV;IND;PL;3;PST;LGSPEC1 gaimenter gaimenteray V;IND;SG;1;FUT;LGSPEC2 gaimenter gaimenteront V;IND;PL;3;FUT gaimenter gaimentassions V;IPFV;SBJV;PL;1;PST gaimenter gaimenterois V;COND;SG;1;LGSPEC1 gaimenter gaimentoyt V;IPFV;IND;SG;3;PST;LGSPEC2 gaimenter gaimenta V;PFV;IND;SG;3;PST gaimenter gaimentons V;SBJV;PL;1;PRS gaimenter gaimentassiez V;IPFV;SBJV;PL;2;PST gaimenter gaimentiez V;IPFV;IND;PL;2;PST;LGSPEC1 gaimenter gaimenteras V;IND;SG;2;FUT gaimenter gaimentez V;IND;PL;2;PRS gaimenter gaimentoys V;IPFV;IND;SG;2;PST;LGSPEC2 gaimenter gaimenterons V;IND;PL;1;FUT gaimenter gaimentent V;IND;PL;3;PRS gaimenter gaimentast V;IPFV;SBJV;SG;3;PST gaimenter gaimenteryons V;COND;PL;1;LGSPEC2 gaimenter gaimenteryez V;COND;PL;2;LGSPEC2 gaimenter gaimentez V;IMP;PL;2 gaimenter gaimente V;IND;SG;3;PRS gaimenter gaimenteroys V;COND;SG;2;LGSPEC2 gaimenter gaimenteroit V;COND;SG;3;LGSPEC1 gaimenter gaimente V;IMP;SG;2 gaimenter gaimenterent V;PFV;IND;PL;3;PST gaimenter gaimenterai V;IND;SG;1;FUT;LGSPEC1 gaimenter gaimenteroyt V;COND;SG;3;LGSPEC2 gaimenter gaimentes V;IND;SG;2;PRS gaimenter gaimentastes V;PFV;IND;PL;2;PST gaimenter gaimentasmes V;PFV;IND;PL;1;PST gaimenter gaimenterions V;COND;PL;1;LGSPEC1 gaimenter gaimentassent V;IPFV;SBJV;PL;3;PST gaimenter gaimentyez V;IPFV;IND;PL;2;PST;LGSPEC2 noter nota V;PFV;IND;SG;1;PST noter noterai V;IND;SG;1;FUT;LGSPEC1 noter noterent V;PFV;IND;PL;3;PST noter note V;SBJV;SG;3;PRS noter note V;IND;SG;3;PRS noter noterez V;IND;PL;2;FUT noter notast V;IPFV;SBJV;SG;3;PST noter note V;SBJV;SG;1;PRS noter notons V;IND;PL;1;PRS noter noteroyent V;COND;PL;3;LGSPEC2 noter noteroys V;COND;SG;2;LGSPEC2 noter notassent V;IPFV;SBJV;PL;3;PST noter noterois V;COND;SG;1;LGSPEC1 noter notes V;IND;SG;2;PRS noter notoyent V;IPFV;IND;PL;3;PST;LGSPEC2 noter notasses V;IPFV;SBJV;SG;2;PST noter note V;IND;SG;1;PRS noter noteras V;IND;SG;2;FUT noter notions V;IPFV;IND;PL;1;PST;LGSPEC1 noter nota V;PFV;IND;SG;3;PST noter notasse V;IPFV;SBJV;SG;1;PST noter notoyt V;IPFV;IND;SG;3;PST;LGSPEC2 noter noter V;NFIN noter noteront V;IND;PL;3;FUT noter notasmes V;PFV;IND;PL;1;PST noter notastes V;PFV;IND;PL;2;PST noter noterons V;IND;PL;1;FUT noter noteray V;IND;SG;1;FUT;LGSPEC2 noter notoit V;IPFV;IND;SG;3;PST;LGSPEC1 noter noteroient V;COND;PL;3;LGSPEC1 noter note V;IMP;SG;2 noter notois V;IPFV;IND;SG;2;PST;LGSPEC1 noter noterois V;COND;SG;2;LGSPEC1 noter noteroys V;COND;SG;1;LGSPEC2 noter notas V;PFV;IND;SG;2;PST noter notes V;SBJV;SG;2;PRS noter notoient V;IPFV;IND;PL;3;PST;LGSPEC1 noter notoys V;IPFV;IND;SG;1;PST;LGSPEC2 noter notons V;SBJV;PL;1;PRS noter notois V;IPFV;IND;SG;1;PST;LGSPEC1 noter notons V;IMP;PL;1 noter notyons V;IPFV;IND;PL;1;PST;LGSPEC2 noter noteriez V;COND;PL;2;LGSPEC1 noter notez V;IMP;PL;2 noter notera V;IND;SG;3;FUT noter notassiez V;IPFV;SBJV;PL;2;PST noter notyez V;IPFV;IND;PL;2;PST;LGSPEC2 noter noteryons V;COND;PL;1;LGSPEC2 noter notez V;IND;PL;2;PRS noter notassions V;IPFV;SBJV;PL;1;PST noter noterions V;COND;PL;1;LGSPEC1 noter noteroit V;COND;SG;3;LGSPEC1 noter notent V;SBJV;PL;3;PRS noter notiez V;IPFV;IND;PL;2;PST;LGSPEC1 noter notent V;IND;PL;3;PRS noter notez V;SBJV;PL;2;PRS noter noteroyt V;COND;SG;3;LGSPEC2 noter noteryez V;COND;PL;2;LGSPEC2 noter notoys V;IPFV;IND;SG;2;PST;LGSPEC2 persuader persuaderyons V;COND;PL;1;LGSPEC2 persuader persuadassions V;IPFV;SBJV;PL;1;PST persuader persuadoyent V;IPFV;IND;PL;3;PST;LGSPEC2 persuader persuadoyt V;IPFV;IND;SG;3;PST;LGSPEC2 persuader persuaderoys V;COND;SG;2;LGSPEC2 persuader persuadyez V;IPFV;IND;PL;2;PST;LGSPEC2 persuader persuadons V;SBJV;PL;1;PRS persuader persuader V;NFIN persuader persuadera V;IND;SG;3;FUT persuader persuaderions V;COND;PL;1;LGSPEC1 persuader persuadoys V;IPFV;IND;SG;1;PST;LGSPEC2 persuader persuada V;PFV;IND;SG;1;PST persuader persuaderiez V;COND;PL;2;LGSPEC1 persuader persuadasses V;IPFV;SBJV;SG;2;PST persuader persuades V;IND;SG;2;PRS persuader persuadez V;IND;PL;2;PRS persuader persuaderyez V;COND;PL;2;LGSPEC2 persuader persuaderoyt V;COND;SG;3;LGSPEC2 persuader persuadons V;IMP;PL;1 persuader persuades V;SBJV;SG;2;PRS persuader persuadois V;IPFV;IND;SG;1;PST;LGSPEC1 persuader persuadassiez V;IPFV;SBJV;PL;2;PST persuader persuadoit V;IPFV;IND;SG;3;PST;LGSPEC1 persuader persuadons V;IND;PL;1;PRS persuader persuadions V;IPFV;IND;PL;1;PST;LGSPEC1 persuader persuadast V;IPFV;SBJV;SG;3;PST persuader persuadez V;IMP;PL;2 persuader persuade V;IMP;SG;2 persuader persuadyons V;IPFV;IND;PL;1;PST;LGSPEC2 persuader persuada V;PFV;IND;SG;3;PST persuader persuade V;IND;SG;1;PRS persuader persuadoient V;IPFV;IND;PL;3;PST;LGSPEC1 persuader persuadoys V;IPFV;IND;SG;2;PST;LGSPEC2 persuader persuaderent V;PFV;IND;PL;3;PST persuader persuaderois V;COND;SG;2;LGSPEC1 persuader persuadez V;SBJV;PL;2;PRS persuader persuadent V;SBJV;PL;3;PRS persuader persuadent V;IND;PL;3;PRS persuader persuaderois V;COND;SG;1;LGSPEC1 persuader persuade V;SBJV;SG;1;PRS persuader persuaderont V;IND;PL;3;FUT persuader persuadas V;PFV;IND;SG;2;PST persuader persuaderons V;IND;PL;1;FUT persuader persuadastes V;PFV;IND;PL;2;PST persuader persuade V;IND;SG;3;PRS persuader persuadasmes V;PFV;IND;PL;1;PST persuader persuaderoyent V;COND;PL;3;LGSPEC2 persuader persuadiez V;IPFV;IND;PL;2;PST;LGSPEC1 persuader persuaderez V;IND;PL;2;FUT persuader persuaderoys V;COND;SG;1;LGSPEC2 persuader persuadassent V;IPFV;SBJV;PL;3;PST persuader persuadasse V;IPFV;SBJV;SG;1;PST persuader persuaderai V;IND;SG;1;FUT;LGSPEC1 persuader persuadois V;IPFV;IND;SG;2;PST;LGSPEC1 persuader persuaderoient V;COND;PL;3;LGSPEC1 persuader persuaderoit V;COND;SG;3;LGSPEC1 persuader persuaderas V;IND;SG;2;FUT persuader persuaderay V;IND;SG;1;FUT;LGSPEC2 persuader persuade V;SBJV;SG;3;PRS matter matter V;NFIN eschapper eschapperas V;IND;SG;2;FUT eschapper eschappasse V;IPFV;SBJV;SG;1;PST eschapper eschappassent V;IPFV;SBJV;PL;3;PST eschapper eschapperent V;PFV;IND;PL;3;PST eschapper eschappa V;PFV;IND;SG;3;PST eschapper eschappassiez V;IPFV;SBJV;PL;2;PST eschapper eschapperyons V;COND;PL;1;LGSPEC2 eschapper eschapperoient V;COND;PL;3;LGSPEC1 eschapper eschappasses V;IPFV;SBJV;SG;2;PST eschapper eschappe V;SBJV;SG;1;PRS eschapper eschapperois V;COND;SG;1;LGSPEC1 eschapper eschapperai V;IND;SG;1;FUT;LGSPEC1 eschapper eschapperez V;IND;PL;2;FUT eschapper eschappe V;SBJV;SG;3;PRS eschapper eschappiez V;IPFV;IND;PL;2;PST;LGSPEC1 eschapper eschappoit V;IPFV;IND;SG;3;PST;LGSPEC1 eschapper eschappez V;SBJV;PL;2;PRS eschapper eschappa V;PFV;IND;SG;1;PST eschapper eschapperont V;IND;PL;3;FUT eschapper eschappions V;IPFV;IND;PL;1;PST;LGSPEC1 eschapper eschapperoit V;COND;SG;3;LGSPEC1 eschapper eschappez V;IMP;PL;2 eschapper eschappe V;IMP;SG;2 eschapper eschappent V;SBJV;PL;3;PRS eschapper eschappastes V;PFV;IND;PL;2;PST eschapper eschapper V;NFIN eschapper eschapperyez V;COND;PL;2;LGSPEC2 eschapper eschappoyent V;IPFV;IND;PL;3;PST;LGSPEC2 eschapper eschappoient V;IPFV;IND;PL;3;PST;LGSPEC1 eschapper eschappe V;IND;SG;3;PRS eschapper eschappassions V;IPFV;SBJV;PL;1;PST eschapper eschappent V;IND;PL;3;PRS eschapper eschapperoyent V;COND;PL;3;LGSPEC2 eschapper eschappez V;IND;PL;2;PRS eschapper eschappera V;IND;SG;3;FUT eschapper eschapperay V;IND;SG;1;FUT;LGSPEC2 eschapper eschapperiez V;COND;PL;2;LGSPEC1 eschapper eschappois V;IPFV;IND;SG;1;PST;LGSPEC1 eschapper eschappasmes V;PFV;IND;PL;1;PST eschapper eschapperoys V;COND;SG;1;LGSPEC2 eschapper eschappois V;IPFV;IND;SG;2;PST;LGSPEC1 eschapper eschappas V;PFV;IND;SG;2;PST eschapper eschappons V;IND;PL;1;PRS eschapper eschappons V;IMP;PL;1 eschapper eschapperons V;IND;PL;1;FUT eschapper eschappons V;SBJV;PL;1;PRS eschapper eschappoys V;IPFV;IND;SG;1;PST;LGSPEC2 eschapper eschappoys V;IPFV;IND;SG;2;PST;LGSPEC2 eschapper eschapperoys V;COND;SG;2;LGSPEC2 eschapper eschappes V;IND;SG;2;PRS eschapper eschappyons V;IPFV;IND;PL;1;PST;LGSPEC2 eschapper eschappoyt V;IPFV;IND;SG;3;PST;LGSPEC2 eschapper eschappes V;SBJV;SG;2;PRS eschapper eschapperois V;COND;SG;2;LGSPEC1 eschapper eschappast V;IPFV;SBJV;SG;3;PST eschapper eschapperions V;COND;PL;1;LGSPEC1 eschapper eschapperoyt V;COND;SG;3;LGSPEC2 eschapper eschappe V;IND;SG;1;PRS eschapper eschappyez V;IPFV;IND;PL;2;PST;LGSPEC2 despuceller despucellois V;IPFV;IND;SG;2;PST;LGSPEC1 despuceller despucellasses V;IPFV;SBJV;SG;2;PST despuceller despucellez V;SBJV;PL;2;PRS despuceller despucelleryons V;COND;PL;1;LGSPEC2 despuceller despucellera V;IND;SG;3;FUT despuceller despucellerez V;IND;PL;2;FUT despuceller despucellons V;IMP;PL;1 despuceller despucelloyt V;IPFV;IND;SG;3;PST;LGSPEC2 despuceller despucelliez V;IPFV;IND;PL;2;PST;LGSPEC1 despuceller despucelle V;SBJV;SG;1;PRS despuceller despucellerois V;COND;SG;1;LGSPEC1 despuceller despucelle V;IND;SG;1;PRS despuceller despucellasse V;IPFV;SBJV;SG;1;PST despuceller despucelloyent V;IPFV;IND;PL;3;PST;LGSPEC2 despuceller despucellerons V;IND;PL;1;FUT despuceller despucellast V;IPFV;SBJV;SG;3;PST despuceller despucellyons V;IPFV;IND;PL;1;PST;LGSPEC2 despuceller despucelleroys V;COND;SG;2;LGSPEC2 despuceller despucelles V;SBJV;SG;2;PRS despuceller despucelle V;SBJV;SG;3;PRS despuceller despucellerois V;COND;SG;2;LGSPEC1 despuceller despucelleroyent V;COND;PL;3;LGSPEC2 despuceller despucelloys V;IPFV;IND;SG;2;PST;LGSPEC2 despuceller despucelleroit V;COND;SG;3;LGSPEC1 despuceller despucellyez V;IPFV;IND;PL;2;PST;LGSPEC2 despuceller despucelloit V;IPFV;IND;SG;3;PST;LGSPEC1 despuceller despucellent V;SBJV;PL;3;PRS despuceller despucellez V;IMP;PL;2 despuceller despucellons V;SBJV;PL;1;PRS despuceller despucellas V;PFV;IND;SG;2;PST despuceller despucelloient V;IPFV;IND;PL;3;PST;LGSPEC1 despuceller despucellerent V;PFV;IND;PL;3;PST despuceller despucellons V;IND;PL;1;PRS despuceller despucellerions V;COND;PL;1;LGSPEC1 despuceller despucella V;PFV;IND;SG;1;PST despuceller despucelles V;IND;SG;2;PRS despuceller despucelleront V;IND;PL;3;FUT despuceller despucellent V;IND;PL;3;PRS despuceller despucellastes V;PFV;IND;PL;2;PST despuceller despucelleroient V;COND;PL;3;LGSPEC1 despuceller despucellois V;IPFV;IND;SG;1;PST;LGSPEC1 despuceller despucelle V;IMP;SG;2 despuceller despucelleroyt V;COND;SG;3;LGSPEC2 despuceller despucellassions V;IPFV;SBJV;PL;1;PST despuceller despucellerai V;IND;SG;1;FUT;LGSPEC1 despuceller despucellions V;IPFV;IND;PL;1;PST;LGSPEC1 despuceller despucelleras V;IND;SG;2;FUT despuceller despucelleriez V;COND;PL;2;LGSPEC1 despuceller despucellez V;IND;PL;2;PRS despuceller despucellasmes V;PFV;IND;PL;1;PST despuceller despucelloys V;IPFV;IND;SG;1;PST;LGSPEC2 despuceller despucellassent V;IPFV;SBJV;PL;3;PST despuceller despucelleray V;IND;SG;1;FUT;LGSPEC2 despuceller despucelleroys V;COND;SG;1;LGSPEC2 despuceller despucella V;PFV;IND;SG;3;PST despuceller despucelleryez V;COND;PL;2;LGSPEC2 despuceller despucelle V;IND;SG;3;PRS despuceller despucellassiez V;IPFV;SBJV;PL;2;PST despuceller despuceller V;NFIN esventer esventasse V;IPFV;SBJV;SG;1;PST esventer esventeroyent V;COND;PL;3;LGSPEC2 esventer esventoys V;IPFV;IND;SG;1;PST;LGSPEC2 esventer esventiez V;IPFV;IND;PL;2;PST;LGSPEC1 esventer esventast V;IPFV;SBJV;SG;3;PST esventer esventassiez V;IPFV;SBJV;PL;2;PST esventer esventez V;IMP;PL;2 esventer esventeroit V;COND;SG;3;LGSPEC1 esventer esventoient V;IPFV;IND;PL;3;PST;LGSPEC1 esventer esventent V;SBJV;PL;3;PRS esventer esvente V;IND;SG;1;PRS esventer esventeroys V;COND;SG;2;LGSPEC2 esventer esventer V;NFIN esventer esvente V;IND;SG;3;PRS esventer esventoit V;IPFV;IND;SG;3;PST;LGSPEC1 esventer esventyons V;IPFV;IND;PL;1;PST;LGSPEC2 esventer esventois V;IPFV;IND;SG;1;PST;LGSPEC1 esventer esventeroys V;COND;SG;1;LGSPEC2 esventer esventassent V;IPFV;SBJV;PL;3;PST esventer esvente V;IMP;SG;2 esventer esventerai V;IND;SG;1;FUT;LGSPEC1 esventer esventeroyt V;COND;SG;3;LGSPEC2 esventer esventeront V;IND;PL;3;FUT esventer esventerois V;COND;SG;2;LGSPEC1 esventer esventois V;IPFV;IND;SG;2;PST;LGSPEC1 esventer esventez V;IND;PL;2;PRS esventer esventoyt V;IPFV;IND;SG;3;PST;LGSPEC2 esventer esventa V;PFV;IND;SG;1;PST esventer esventasmes V;PFV;IND;PL;1;PST esventer esventerois V;COND;SG;1;LGSPEC1 esventer esventons V;IND;PL;1;PRS esventer esventasses V;IPFV;SBJV;SG;2;PST esventer esventeroient V;COND;PL;3;LGSPEC1 esventer esventa V;PFV;IND;SG;3;PST esventer esventastes V;PFV;IND;PL;2;PST esventer esventeray V;IND;SG;1;FUT;LGSPEC2 esventer esventez V;SBJV;PL;2;PRS esventer esvente V;SBJV;SG;1;PRS esventer esventassions V;IPFV;SBJV;PL;1;PST esventer esventerons V;IND;PL;1;FUT esventer esventes V;IND;SG;2;PRS esventer esventas V;PFV;IND;SG;2;PST esventer esventions V;IPFV;IND;PL;1;PST;LGSPEC1 esventer esventoys V;IPFV;IND;SG;2;PST;LGSPEC2 esventer esvente V;SBJV;SG;3;PRS esventer esventeriez V;COND;PL;2;LGSPEC1 esventer esventerez V;IND;PL;2;FUT esventer esventent V;IND;PL;3;PRS esventer esventeras V;IND;SG;2;FUT esventer esventyez V;IPFV;IND;PL;2;PST;LGSPEC2 esventer esventeryez V;COND;PL;2;LGSPEC2 esventer esventons V;IMP;PL;1 esventer esventoyent V;IPFV;IND;PL;3;PST;LGSPEC2 esventer esventeryons V;COND;PL;1;LGSPEC2 esventer esventons V;SBJV;PL;1;PRS esventer esventerent V;PFV;IND;PL;3;PST esventer esventera V;IND;SG;3;FUT esventer esventes V;SBJV;SG;2;PRS esventer esventerions V;COND;PL;1;LGSPEC1 sceller scellerois V;COND;SG;2;LGSPEC1 sceller scelle V;IND;SG;1;PRS sceller scella V;PFV;IND;SG;3;PST sceller scellions V;IPFV;IND;PL;1;PST;LGSPEC1 sceller scellerai V;IND;SG;1;FUT;LGSPEC1 sceller scelles V;SBJV;SG;2;PRS sceller scelloys V;IPFV;IND;SG;2;PST;LGSPEC2 sceller scelle V;IMP;SG;2 sceller scelleront V;IND;PL;3;FUT sceller scelleras V;IND;SG;2;FUT sceller scellez V;IND;PL;2;PRS sceller scellassiez V;IPFV;SBJV;PL;2;PST sceller scelles V;IND;SG;2;PRS sceller scelleroys V;COND;SG;1;LGSPEC2 sceller scellons V;SBJV;PL;1;PRS sceller scellasses V;IPFV;SBJV;SG;2;PST sceller scelleryez V;COND;PL;2;LGSPEC2 sceller scellent V;SBJV;PL;3;PRS sceller scellyons V;IPFV;IND;PL;1;PST;LGSPEC2 sceller scellois V;IPFV;IND;SG;2;PST;LGSPEC1 sceller scellerent V;PFV;IND;PL;3;PST sceller scelloys V;IPFV;IND;SG;1;PST;LGSPEC2 sceller scelleroyt V;COND;SG;3;LGSPEC2 sceller scellyez V;IPFV;IND;PL;2;PST;LGSPEC2 sceller scellerons V;IND;PL;1;FUT sceller scellast V;IPFV;SBJV;SG;3;PST sceller scellasmes V;PFV;IND;PL;1;PST sceller scelle V;SBJV;SG;3;PRS sceller scelliez V;IPFV;IND;PL;2;PST;LGSPEC1 sceller scelleryons V;COND;PL;1;LGSPEC2 sceller scellasse V;IPFV;SBJV;SG;1;PST sceller scelloient V;IPFV;IND;PL;3;PST;LGSPEC1 sceller scelloyt V;IPFV;IND;SG;3;PST;LGSPEC2 sceller scellons V;IND;PL;1;PRS sceller scelloit V;IPFV;IND;SG;3;PST;LGSPEC1 sceller scellassent V;IPFV;SBJV;PL;3;PST sceller sceller V;NFIN sceller scellerois V;COND;SG;1;LGSPEC1 sceller scellez V;IMP;PL;2 sceller scella V;PFV;IND;SG;1;PST sceller scelleroyent V;COND;PL;3;LGSPEC2 sceller scellois V;IPFV;IND;SG;1;PST;LGSPEC1 sceller scelleroient V;COND;PL;3;LGSPEC1 sceller scellerez V;IND;PL;2;FUT sceller scelleriez V;COND;PL;2;LGSPEC1 sceller scelleray V;IND;SG;1;FUT;LGSPEC2 sceller scelloyent V;IPFV;IND;PL;3;PST;LGSPEC2 sceller scelle V;IND;SG;3;PRS sceller scellez V;SBJV;PL;2;PRS sceller scelle V;SBJV;SG;1;PRS sceller scelleroit V;COND;SG;3;LGSPEC1 sceller scelleroys V;COND;SG;2;LGSPEC2 sceller scellent V;IND;PL;3;PRS sceller scellassions V;IPFV;SBJV;PL;1;PST sceller scellastes V;PFV;IND;PL;2;PST sceller scellons V;IMP;PL;1 sceller scellas V;PFV;IND;SG;2;PST sceller scellerions V;COND;PL;1;LGSPEC1 sceller scellera V;IND;SG;3;FUT traittier traittierois V;COND;SG;1;LGSPEC1 traittier traittois V;IPFV;IND;SG;2;PST;LGSPEC1 traittier traittiez V;IMP;PL;2 traittier traittierois V;COND;SG;2;LGSPEC1 traittier traittassions V;IPFV;SBJV;PL;1;PST traittier traittoient V;IPFV;IND;PL;3;PST;LGSPEC1 traittier traitta V;PFV;IND;SG;1;PST traittier traittieront V;IND;PL;3;FUT traittier traittier V;NFIN traittier traittyons V;IPFV;IND;PL;1;PST;LGSPEC2 traittier traittas V;PFV;IND;SG;2;PST traittier traittois V;IPFV;IND;SG;1;PST;LGSPEC1 traittier traittierions V;COND;PL;1;LGSPEC1 traittier traittierons V;IND;PL;1;FUT traittier traittieroys V;COND;SG;2;LGSPEC2 traittier traittasse V;IPFV;SBJV;SG;1;PST traittier traittassent V;IPFV;SBJV;PL;3;PST traittier traittes V;SBJV;SG;2;PRS traittier traittast V;IPFV;SBJV;SG;3;PST traittier traittiez V;SBJV;PL;2;PRS traittier traittoit V;IPFV;IND;SG;3;PST;LGSPEC1 traittier traittieroys V;COND;SG;1;LGSPEC2 traittier traittieriez V;COND;PL;2;LGSPEC1 traittier traittoyt V;IPFV;IND;SG;3;PST;LGSPEC2 traittier traittions V;IMP;PL;1 traittier traittent V;IND;PL;3;PRS traittier traittions V;IPFV;IND;PL;1;PST;LGSPEC1 traittier traittieroit V;COND;SG;3;LGSPEC1 traittier traittieryez V;COND;PL;2;LGSPEC2 traittier traittieroient V;COND;PL;3;LGSPEC1 traittier traittierez V;IND;PL;2;FUT traittier traittasmes V;PFV;IND;PL;1;PST traittier traittasses V;IPFV;SBJV;SG;2;PST traittier traittoys V;IPFV;IND;SG;1;PST;LGSPEC2 traittier traittent V;SBJV;PL;3;PRS traittier traitte V;IMP;SG;2 traittier traittoys V;IPFV;IND;SG;2;PST;LGSPEC2 traittier traittiez V;IPFV;IND;PL;2;PST;LGSPEC1 traittier traittes V;IND;SG;2;PRS traittier traitte V;SBJV;SG;1;PRS traittier traitte V;SBJV;SG;3;PRS traittier traittieroyt V;COND;SG;3;LGSPEC2 traittier traittassiez V;IPFV;SBJV;PL;2;PST traittier traittiera V;IND;SG;3;FUT traittier traittyez V;IPFV;IND;PL;2;PST;LGSPEC2 traittier traittastes V;PFV;IND;PL;2;PST traittier traitta V;PFV;IND;SG;3;PST traittier traittieroyent V;COND;PL;3;LGSPEC2 traittier traittierent V;PFV;IND;PL;3;PST traittier traittieras V;IND;SG;2;FUT traittier traitte V;IND;SG;3;PRS traittier traittions V;IND;PL;1;PRS traittier traitte V;IND;SG;1;PRS traittier traittoyent V;IPFV;IND;PL;3;PST;LGSPEC2 traittier traittieryons V;COND;PL;1;LGSPEC2 traittier traittieray V;IND;SG;1;FUT;LGSPEC2 traittier traittions V;SBJV;PL;1;PRS traittier traittierai V;IND;SG;1;FUT;LGSPEC1 traittier traittiez V;IND;PL;2;PRS tromper trompassions V;IPFV;SBJV;PL;1;PST tromper trompes V;SBJV;SG;2;PRS tromper trompyez V;IPFV;IND;PL;2;PST;LGSPEC2 tromper trompassent V;IPFV;SBJV;PL;3;PST tromper trompasse V;IPFV;SBJV;SG;1;PST tromper trompes V;IND;SG;2;PRS tromper tromperont V;IND;PL;3;FUT tromper trompoys V;IPFV;IND;SG;2;PST;LGSPEC2 tromper trompiez V;IPFV;IND;PL;2;PST;LGSPEC1 tromper tromperyons V;COND;PL;1;LGSPEC2 tromper trompe V;SBJV;SG;1;PRS tromper tromperiez V;COND;PL;2;LGSPEC1 tromper trompoyt V;IPFV;IND;SG;3;PST;LGSPEC2 tromper tromperoyent V;COND;PL;3;LGSPEC2 tromper tromperoit V;COND;SG;3;LGSPEC1 tromper trompent V;IND;PL;3;PRS tromper trompez V;IND;PL;2;PRS tromper trompera V;IND;SG;3;FUT tromper trompions V;IPFV;IND;PL;1;PST;LGSPEC1 tromper tromperas V;IND;SG;2;FUT tromper trompast V;IPFV;SBJV;SG;3;PST tromper trompe V;SBJV;SG;3;PRS tromper trompez V;IMP;PL;2 tromper trompez V;SBJV;PL;2;PRS tromper trompa V;PFV;IND;SG;3;PST tromper trompoyent V;IPFV;IND;PL;3;PST;LGSPEC2 tromper trompastes V;PFV;IND;PL;2;PST tromper tromper V;NFIN tromper tromperoys V;COND;SG;2;LGSPEC2 tromper trompasmes V;PFV;IND;PL;1;PST tromper tromperois V;COND;SG;2;LGSPEC1 tromper trompa V;PFV;IND;SG;1;PST tromper tromperons V;IND;PL;1;FUT tromper trompoient V;IPFV;IND;PL;3;PST;LGSPEC1 tromper tromperoyt V;COND;SG;3;LGSPEC2 tromper tromperai V;IND;SG;1;FUT;LGSPEC1 tromper trompe V;IMP;SG;2 tromper tromperyez V;COND;PL;2;LGSPEC2 tromper trompas V;PFV;IND;SG;2;PST tromper trompassiez V;IPFV;SBJV;PL;2;PST tromper trompent V;SBJV;PL;3;PRS tromper tromperez V;IND;PL;2;FUT tromper trompois V;IPFV;IND;SG;1;PST;LGSPEC1 tromper tromperay V;IND;SG;1;FUT;LGSPEC2 tromper tromperois V;COND;SG;1;LGSPEC1 tromper tromperoys V;COND;SG;1;LGSPEC2 tromper trompons V;IMP;PL;1 tromper tromperent V;PFV;IND;PL;3;PST tromper trompyons V;IPFV;IND;PL;1;PST;LGSPEC2 tromper tromperions V;COND;PL;1;LGSPEC1 tromper trompoit V;IPFV;IND;SG;3;PST;LGSPEC1 tromper trompons V;SBJV;PL;1;PRS tromper trompasses V;IPFV;SBJV;SG;2;PST tromper trompons V;IND;PL;1;PRS tromper trompoys V;IPFV;IND;SG;1;PST;LGSPEC2 tromper trompe V;IND;SG;3;PRS tromper tromperoient V;COND;PL;3;LGSPEC1 tromper trompois V;IPFV;IND;SG;2;PST;LGSPEC1 tromper trompe V;IND;SG;1;PRS serainer serainons V;IND;PL;1;PRS serainer serainerai V;IND;SG;1;FUT;LGSPEC1 serainer serainons V;SBJV;PL;1;PRS serainer serainas V;PFV;IND;SG;2;PST serainer serainera V;IND;SG;3;FUT serainer seraineroit V;COND;SG;3;LGSPEC1 serainer serainoyent V;IPFV;IND;PL;3;PST;LGSPEC2 serainer serainasses V;IPFV;SBJV;SG;2;PST serainer seraineroient V;COND;PL;3;LGSPEC1 serainer serainoys V;IPFV;IND;SG;2;PST;LGSPEC2 serainer serainois V;IPFV;IND;SG;2;PST;LGSPEC1 serainer seraine V;SBJV;SG;1;PRS serainer serainassent V;IPFV;SBJV;PL;3;PST serainer serainoit V;IPFV;IND;SG;3;PST;LGSPEC1 serainer seraina V;PFV;IND;SG;1;PST serainer serainerent V;PFV;IND;PL;3;PST serainer serainerois V;COND;SG;2;LGSPEC1 serainer serainiez V;IPFV;IND;PL;2;PST;LGSPEC1 serainer seraineras V;IND;SG;2;FUT serainer serainerez V;IND;PL;2;FUT serainer serainasse V;IPFV;SBJV;SG;1;PST serainer serainoyt V;IPFV;IND;SG;3;PST;LGSPEC2 serainer seraine V;IMP;SG;2 serainer seraine V;IND;SG;1;PRS serainer serainois V;IPFV;IND;SG;1;PST;LGSPEC1 serainer serainastes V;PFV;IND;PL;2;PST serainer serainions V;IPFV;IND;PL;1;PST;LGSPEC1 serainer serainerois V;COND;SG;1;LGSPEC1 serainer serainyons V;IPFV;IND;PL;1;PST;LGSPEC2 serainer seraineroyt V;COND;SG;3;LGSPEC2 serainer seraineryez V;COND;PL;2;LGSPEC2 serainer serainoient V;IPFV;IND;PL;3;PST;LGSPEC1 serainer seraineroys V;COND;SG;2;LGSPEC2 serainer serainent V;SBJV;PL;3;PRS serainer seraine V;IND;SG;3;PRS serainer seraines V;IND;SG;2;PRS serainer seraines V;SBJV;SG;2;PRS serainer serainyez V;IPFV;IND;PL;2;PST;LGSPEC2 serainer serainons V;IMP;PL;1 serainer seraineriez V;COND;PL;2;LGSPEC1 serainer serainassions V;IPFV;SBJV;PL;1;PST serainer serainerions V;COND;PL;1;LGSPEC1 serainer serainez V;IMP;PL;2 serainer serainent V;IND;PL;3;PRS serainer serainez V;SBJV;PL;2;PRS serainer seraineray V;IND;SG;1;FUT;LGSPEC2 serainer seraina V;PFV;IND;SG;3;PST serainer serainez V;IND;PL;2;PRS serainer seraineront V;IND;PL;3;FUT serainer seraineroys V;COND;SG;1;LGSPEC2 serainer serainoys V;IPFV;IND;SG;1;PST;LGSPEC2 serainer serainasmes V;PFV;IND;PL;1;PST serainer seraine V;SBJV;SG;3;PRS serainer serainerons V;IND;PL;1;FUT serainer seraineroyent V;COND;PL;3;LGSPEC2 serainer serainast V;IPFV;SBJV;SG;3;PST serainer serainassiez V;IPFV;SBJV;PL;2;PST serainer serainer V;NFIN serainer seraineryons V;COND;PL;1;LGSPEC2 reculler recullons V;IND;PL;1;PRS reculler recullerent V;PFV;IND;PL;3;PST reculler recullions V;IPFV;IND;PL;1;PST;LGSPEC1 reculler reculleriez V;COND;PL;2;LGSPEC1 reculler reculleroyt V;COND;SG;3;LGSPEC2 reculler reculle V;IND;SG;1;PRS reculler reculleray V;IND;SG;1;FUT;LGSPEC2 reculler recullons V;IMP;PL;1 reculler recullois V;IPFV;IND;SG;2;PST;LGSPEC1 reculler recullerois V;COND;SG;1;LGSPEC1 reculler recullerai V;IND;SG;1;FUT;LGSPEC1 reculler reculleryons V;COND;PL;1;LGSPEC2 reculler recullerions V;COND;PL;1;LGSPEC1 reculler reculles V;SBJV;SG;2;PRS reculler reculleras V;IND;SG;2;FUT reculler reculleroit V;COND;SG;3;LGSPEC1 reculler recullassent V;IPFV;SBJV;PL;3;PST reculler reculles V;IND;SG;2;PRS reculler recullez V;IND;PL;2;PRS reculler recullera V;IND;SG;3;FUT reculler recullyons V;IPFV;IND;PL;1;PST;LGSPEC2 reculler reculloyent V;IPFV;IND;PL;3;PST;LGSPEC2 reculler recullent V;IND;PL;3;PRS reculler reculleroys V;COND;SG;1;LGSPEC2 reculler recullast V;IPFV;SBJV;SG;3;PST reculler recullasmes V;PFV;IND;PL;1;PST reculler reculloys V;IPFV;IND;SG;2;PST;LGSPEC2 reculler reculle V;IND;SG;3;PRS reculler reculloyt V;IPFV;IND;SG;3;PST;LGSPEC2 reculler recullyez V;IPFV;IND;PL;2;PST;LGSPEC2 reculler reculleroient V;COND;PL;3;LGSPEC1 reculler recullerez V;IND;PL;2;FUT reculler recullerons V;IND;PL;1;FUT reculler reculliez V;IPFV;IND;PL;2;PST;LGSPEC1 reculler recullons V;SBJV;PL;1;PRS reculler reculle V;SBJV;SG;1;PRS reculler reculla V;PFV;IND;SG;3;PST reculler recullois V;IPFV;IND;SG;1;PST;LGSPEC1 reculler reculleryez V;COND;PL;2;LGSPEC2 reculler recullez V;IMP;PL;2 reculler recullas V;PFV;IND;SG;2;PST reculler reculle V;SBJV;SG;3;PRS reculler recullez V;SBJV;PL;2;PRS reculler reculleront V;IND;PL;3;FUT reculler recullasses V;IPFV;SBJV;SG;2;PST reculler recullent V;SBJV;PL;3;PRS reculler recullassions V;IPFV;SBJV;PL;1;PST reculler reculleroys V;COND;SG;2;LGSPEC2 reculler recullassiez V;IPFV;SBJV;PL;2;PST reculler reculloys V;IPFV;IND;SG;1;PST;LGSPEC2 reculler reculloit V;IPFV;IND;SG;3;PST;LGSPEC1 reculler reculla V;PFV;IND;SG;1;PST reculler recullastes V;PFV;IND;PL;2;PST reculler recullerois V;COND;SG;2;LGSPEC1 reculler reculler V;NFIN reculler recullasse V;IPFV;SBJV;SG;1;PST reculler reculleroyent V;COND;PL;3;LGSPEC2 reculler reculloient V;IPFV;IND;PL;3;PST;LGSPEC1 reculler reculle V;IMP;SG;2 escapper escappa V;PFV;IND;SG;1;PST escapper escappent V;IND;PL;3;PRS escapper escappas V;PFV;IND;SG;2;PST escapper escappez V;IND;PL;2;PRS escapper escapperoit V;COND;SG;3;LGSPEC1 escapper escapperay V;IND;SG;1;FUT;LGSPEC2 escapper escappons V;SBJV;PL;1;PRS escapper escappe V;IMP;SG;2 escapper escappe V;IND;SG;1;PRS escapper escapperoys V;COND;SG;1;LGSPEC2 escapper escapperois V;COND;SG;2;LGSPEC1 escapper escapperyons V;COND;PL;1;LGSPEC2 escapper escappes V;IND;SG;2;PRS escapper escapperent V;PFV;IND;PL;3;PST escapper escappastes V;PFV;IND;PL;2;PST escapper escapperoient V;COND;PL;3;LGSPEC1 escapper escappasses V;IPFV;SBJV;SG;2;PST escapper escapperoys V;COND;SG;2;LGSPEC2 escapper escappoient V;IPFV;IND;PL;3;PST;LGSPEC1 escapper escappassent V;IPFV;SBJV;PL;3;PST escapper escapperont V;IND;PL;3;FUT escapper escappassions V;IPFV;SBJV;PL;1;PST escapper escapperions V;COND;PL;1;LGSPEC1 escapper escapperoyent V;COND;PL;3;LGSPEC2 escapper escapperiez V;COND;PL;2;LGSPEC1 escapper escapperyez V;COND;PL;2;LGSPEC2 escapper escappes V;SBJV;SG;2;PRS escapper escappasse V;IPFV;SBJV;SG;1;PST escapper escappe V;IND;SG;3;PRS escapper escappoyent V;IPFV;IND;PL;3;PST;LGSPEC2 escapper escappiez V;IPFV;IND;PL;2;PST;LGSPEC1 escapper escapperas V;IND;SG;2;FUT escapper escappera V;IND;SG;3;FUT escapper escappast V;IPFV;SBJV;SG;3;PST escapper escappe V;SBJV;SG;1;PRS escapper escappions V;IPFV;IND;PL;1;PST;LGSPEC1 escapper escappa V;PFV;IND;SG;3;PST escapper escappons V;IND;PL;1;PRS escapper escappoyt V;IPFV;IND;SG;3;PST;LGSPEC2 escapper escappoys V;IPFV;IND;SG;1;PST;LGSPEC2 escapper escappe V;SBJV;SG;3;PRS escapper escappoit V;IPFV;IND;SG;3;PST;LGSPEC1 escapper escapperai V;IND;SG;1;FUT;LGSPEC1 escapper escappyons V;IPFV;IND;PL;1;PST;LGSPEC2 escapper escapperons V;IND;PL;1;FUT escapper escappasmes V;PFV;IND;PL;1;PST escapper escapperez V;IND;PL;2;FUT escapper escappez V;SBJV;PL;2;PRS escapper escappois V;IPFV;IND;SG;2;PST;LGSPEC1 escapper escapperoyt V;COND;SG;3;LGSPEC2 escapper escappons V;IMP;PL;1 escapper escappois V;IPFV;IND;SG;1;PST;LGSPEC1 escapper escappent V;SBJV;PL;3;PRS escapper escappoys V;IPFV;IND;SG;2;PST;LGSPEC2 escapper escappyez V;IPFV;IND;PL;2;PST;LGSPEC2 escapper escappassiez V;IPFV;SBJV;PL;2;PST escapper escapperois V;COND;SG;1;LGSPEC1 escapper escappez V;IMP;PL;2 escapper escapper V;NFIN desrisier desrises V;IND;SG;2;PRS desrisier desrisoit V;IPFV;IND;SG;3;PST;LGSPEC1 desrisier desrise V;IND;SG;3;PRS desrisier desrisieryez V;COND;PL;2;LGSPEC2 desrisier desrisieryons V;COND;PL;1;LGSPEC2 desrisier desrisiez V;IND;PL;2;PRS desrisier desrisions V;SBJV;PL;1;PRS desrisier desrisassions V;IPFV;SBJV;PL;1;PST desrisier desrisasmes V;PFV;IND;PL;1;PST desrisier desrisierois V;COND;SG;1;LGSPEC1 desrisier desrisiez V;IPFV;IND;PL;2;PST;LGSPEC1 desrisier desrisieront V;IND;PL;3;FUT desrisier desrisassiez V;IPFV;SBJV;PL;2;PST desrisier desrisions V;IMP;PL;1 desrisier desrisierons V;IND;PL;1;FUT desrisier desrisieroient V;COND;PL;3;LGSPEC1 desrisier desrisieriez V;COND;PL;2;LGSPEC1 desrisier desrisoyent V;IPFV;IND;PL;3;PST;LGSPEC2 desrisier desrise V;SBJV;SG;1;PRS desrisier desrisasse V;IPFV;SBJV;SG;1;PST desrisier desrisois V;IPFV;IND;SG;1;PST;LGSPEC1 desrisier desrisierent V;PFV;IND;PL;3;PST desrisier desrisiez V;SBJV;PL;2;PRS desrisier desrisier V;NFIN desrisier desrisieroys V;COND;SG;1;LGSPEC2 desrisier desrisierions V;COND;PL;1;LGSPEC1 desrisier desrisieroyent V;COND;PL;3;LGSPEC2 desrisier desrisassent V;IPFV;SBJV;PL;3;PST desrisier desrisierois V;COND;SG;2;LGSPEC1 desrisier desrise V;IND;SG;1;PRS desrisier desrisions V;IPFV;IND;PL;1;PST;LGSPEC1 desrisier desrisoys V;IPFV;IND;SG;2;PST;LGSPEC2 desrisier desrisierez V;IND;PL;2;FUT desrisier desrisasses V;IPFV;SBJV;SG;2;PST desrisier desrisast V;IPFV;SBJV;SG;3;PST desrisier desrisent V;SBJV;PL;3;PRS desrisier desrisierai V;IND;SG;1;FUT;LGSPEC1 desrisier desrisois V;IPFV;IND;SG;2;PST;LGSPEC1 desrisier desrisent V;IND;PL;3;PRS desrisier desrisiez V;IMP;PL;2 desrisier desrisas V;PFV;IND;SG;2;PST desrisier desrisieroys V;COND;SG;2;LGSPEC2 desrisier desrises V;SBJV;SG;2;PRS desrisier desrisoys V;IPFV;IND;SG;1;PST;LGSPEC2 desrisier desrisieray V;IND;SG;1;FUT;LGSPEC2 desrisier desrisieras V;IND;SG;2;FUT desrisier desrisastes V;PFV;IND;PL;2;PST desrisier desrisiera V;IND;SG;3;FUT desrisier desrisoient V;IPFV;IND;PL;3;PST;LGSPEC1 desrisier desrisoyt V;IPFV;IND;SG;3;PST;LGSPEC2 desrisier desrisieroit V;COND;SG;3;LGSPEC1 desrisier desrisa V;PFV;IND;SG;3;PST desrisier desrisions V;IND;PL;1;PRS desrisier desrisieroyt V;COND;SG;3;LGSPEC2 desrisier desrise V;SBJV;SG;3;PRS desrisier desrisa V;PFV;IND;SG;1;PST desrisier desrise V;IMP;SG;2 desrisier desrisyons V;IPFV;IND;PL;1;PST;LGSPEC2 desrisier desrisyez V;IPFV;IND;PL;2;PST;LGSPEC2 trousser trousse V;SBJV;SG;1;PRS trousser trousserai V;IND;SG;1;FUT;LGSPEC1 trousser trousseroyt V;COND;SG;3;LGSPEC2 trousser trousseroient V;COND;PL;3;LGSPEC1 trousser trousseroys V;COND;SG;1;LGSPEC2 trousser troussoys V;IPFV;IND;SG;1;PST;LGSPEC2 trousser trousses V;IND;SG;2;PRS trousser trousseray V;IND;SG;1;FUT;LGSPEC2 trousser troussions V;IPFV;IND;PL;1;PST;LGSPEC1 trousser trousserois V;COND;SG;2;LGSPEC1 trousser troussasse V;IPFV;SBJV;SG;1;PST trousser trousserez V;IND;PL;2;FUT trousser trousserent V;PFV;IND;PL;3;PST trousser trousse V;IND;SG;3;PRS trousser troussoyt V;IPFV;IND;SG;3;PST;LGSPEC2 trousser troussassions V;IPFV;SBJV;PL;1;PST trousser troussa V;PFV;IND;SG;3;PST trousser trousse V;IMP;SG;2 trousser troussas V;PFV;IND;SG;2;PST trousser trousseriez V;COND;PL;2;LGSPEC1 trousser troussons V;IMP;PL;1 trousser trousser V;NFIN trousser troussent V;IND;PL;3;PRS trousser troussa V;PFV;IND;SG;1;PST trousser troussoit V;IPFV;IND;SG;3;PST;LGSPEC1 trousser troussois V;IPFV;IND;SG;1;PST;LGSPEC1 trousser troussoient V;IPFV;IND;PL;3;PST;LGSPEC1 trousser troussons V;IND;PL;1;PRS trousser troussast V;IPFV;SBJV;SG;3;PST trousser troussassiez V;IPFV;SBJV;PL;2;PST trousser trousseryez V;COND;PL;2;LGSPEC2 trousser trousseroyent V;COND;PL;3;LGSPEC2 trousser troussez V;IMP;PL;2 trousser troussez V;IND;PL;2;PRS trousser trousseroit V;COND;SG;3;LGSPEC1 trousser troussassent V;IPFV;SBJV;PL;3;PST trousser troussoys V;IPFV;IND;SG;2;PST;LGSPEC2 trousser troussasses V;IPFV;SBJV;SG;2;PST trousser troussez V;SBJV;PL;2;PRS trousser troussoyent V;IPFV;IND;PL;3;PST;LGSPEC2 trousser trousserois V;COND;SG;1;LGSPEC1 trousser troussera V;IND;SG;3;FUT trousser trousse V;IND;SG;1;PRS trousser trousseras V;IND;SG;2;FUT trousser troussyons V;IPFV;IND;PL;1;PST;LGSPEC2 trousser trousseryons V;COND;PL;1;LGSPEC2 trousser troussiez V;IPFV;IND;PL;2;PST;LGSPEC1 trousser trousserons V;IND;PL;1;FUT trousser troussasmes V;PFV;IND;PL;1;PST trousser trousserions V;COND;PL;1;LGSPEC1 trousser troussent V;SBJV;PL;3;PRS trousser trousseroys V;COND;SG;2;LGSPEC2 trousser troussyez V;IPFV;IND;PL;2;PST;LGSPEC2 trousser trousses V;SBJV;SG;2;PRS trousser troussastes V;PFV;IND;PL;2;PST trousser trousseront V;IND;PL;3;FUT trousser troussois V;IPFV;IND;SG;2;PST;LGSPEC1 trousser trousse V;SBJV;SG;3;PRS trousser troussons V;SBJV;PL;1;PRS empieger empiegiez V;IPFV;IND;PL;2;PST;LGSPEC1 empieger empiege V;IND;SG;1;PRS empieger empiegeois V;IPFV;IND;SG;1;PST;LGSPEC1 empieger empiegeoit V;IPFV;IND;SG;3;PST;LGSPEC1 empieger empiegeassent V;IPFV;SBJV;PL;3;PST empieger empiegent V;SBJV;PL;3;PRS empieger empiegeons V;SBJV;PL;1;PRS empieger empiegeasmes V;PFV;IND;PL;1;PST empieger empiegent V;IND;PL;3;PRS empieger empiegez V;IND;PL;2;PRS empieger empiegeroys V;COND;SG;2;LGSPEC2 empieger empiegeastes V;PFV;IND;PL;2;PST empieger empiegerois V;COND;SG;1;LGSPEC1 empieger empiegyons V;IPFV;IND;PL;1;PST;LGSPEC2 empieger empiegeoyent V;IPFV;IND;PL;3;PST;LGSPEC2 empieger empiegerent V;PFV;IND;PL;3;PST empieger empiegeryez V;COND;PL;2;LGSPEC2 empieger empiegeriez V;COND;PL;2;LGSPEC1 empieger empiegeassiez V;IPFV;SBJV;PL;2;PST empieger empiegeois V;IPFV;IND;SG;2;PST;LGSPEC1 empieger empiegerai V;IND;SG;1;FUT;LGSPEC1 empieger empieges V;SBJV;SG;2;PRS empieger empiegeray V;IND;SG;1;FUT;LGSPEC2 empieger empiegeoient V;IPFV;IND;PL;3;PST;LGSPEC1 empieger empiegea V;PFV;IND;SG;3;PST empieger empiegeoys V;IPFV;IND;SG;1;PST;LGSPEC2 empieger empiegeons V;IMP;PL;1 empieger empiegeroient V;COND;PL;3;LGSPEC1 empieger empiegerons V;IND;PL;1;FUT empieger empiegeroys V;COND;SG;1;LGSPEC2 empieger empiegerions V;COND;PL;1;LGSPEC1 empieger empiegera V;IND;SG;3;FUT empieger empiege V;SBJV;SG;3;PRS empieger empiegeroyt V;COND;SG;3;LGSPEC2 empieger empiegions V;IPFV;IND;PL;1;PST;LGSPEC1 empieger empiegeasse V;IPFV;SBJV;SG;1;PST empieger empiegeasses V;IPFV;SBJV;SG;2;PST empieger empiegeoys V;IPFV;IND;SG;2;PST;LGSPEC2 empieger empiegeons V;IND;PL;1;PRS empieger empiegeassions V;IPFV;SBJV;PL;1;PST empieger empieges V;IND;SG;2;PRS empieger empiegeroit V;COND;SG;3;LGSPEC1 empieger empiegeas V;PFV;IND;SG;2;PST empieger empiegeast V;IPFV;SBJV;SG;3;PST empieger empiegeoyt V;IPFV;IND;SG;3;PST;LGSPEC2 empieger empiegea V;PFV;IND;SG;1;PST empieger empiegeroyent V;COND;PL;3;LGSPEC2 empieger empiege V;IMP;SG;2 empieger empieger V;NFIN empieger empiege V;IND;SG;3;PRS empieger empiegeryons V;COND;PL;1;LGSPEC2 empieger empiegerois V;COND;SG;2;LGSPEC1 empieger empiegyez V;IPFV;IND;PL;2;PST;LGSPEC2 empieger empiegeront V;IND;PL;3;FUT empieger empiegerez V;IND;PL;2;FUT empieger empiegeras V;IND;SG;2;FUT empieger empiegez V;SBJV;PL;2;PRS empieger empiege V;SBJV;SG;1;PRS empieger empiegez V;IMP;PL;2 cauterizer cauterizerons V;IND;PL;1;FUT cauterizer cauterizes V;SBJV;SG;2;PRS cauterizer cauterizeront V;IND;PL;3;FUT cauterizer cauterizois V;IPFV;IND;SG;1;PST;LGSPEC1 cauterizer cauterizons V;IND;PL;1;PRS cauterizer cauterize V;IND;SG;1;PRS cauterizer cauterizer V;NFIN cauterizer cauterizerent V;PFV;IND;PL;3;PST cauterizer cauterizeryons V;COND;PL;1;LGSPEC2 cauterizer cauterizoys V;IPFV;IND;SG;2;PST;LGSPEC2 cauterizer cauterizerez V;IND;PL;2;FUT cauterizer cauterizez V;SBJV;PL;2;PRS cauterizer cauterizeryez V;COND;PL;2;LGSPEC2 cauterizer cauterizerai V;IND;SG;1;FUT;LGSPEC1 cauterizer cauterizeroit V;COND;SG;3;LGSPEC1 cauterizer cauterizez V;IMP;PL;2 cauterizer cauterizeray V;IND;SG;1;FUT;LGSPEC2 cauterizer cauterizera V;IND;SG;3;FUT cauterizer cauterizasmes V;PFV;IND;PL;1;PST cauterizer cauterizoient V;IPFV;IND;PL;3;PST;LGSPEC1 cauterizer cauterizois V;IPFV;IND;SG;2;PST;LGSPEC1 cauterizer cauterizast V;IPFV;SBJV;SG;3;PST cauterizer cauteriziez V;IPFV;IND;PL;2;PST;LGSPEC1 cauterizer cauterizons V;IMP;PL;1 cauterizer cauterizoyent V;IPFV;IND;PL;3;PST;LGSPEC2 cauterizer cauterizent V;SBJV;PL;3;PRS cauterizer cauterizerois V;COND;SG;1;LGSPEC1 cauterizer cauterizerois V;COND;SG;2;LGSPEC1 cauterizer cauterizeroyt V;COND;SG;3;LGSPEC2 cauterizer cauterizeroys V;COND;SG;1;LGSPEC2 cauterizer cauterizoys V;IPFV;IND;SG;1;PST;LGSPEC2 cauterizer cauterizerions V;COND;PL;1;LGSPEC1 cauterizer cauterizions V;IPFV;IND;PL;1;PST;LGSPEC1 cauterizer cauterizeras V;IND;SG;2;FUT cauterizer cauterize V;IND;SG;3;PRS cauterizer cauterizes V;IND;SG;2;PRS cauterizer cauteriza V;PFV;IND;SG;1;PST cauterizer cauterizeroient V;COND;PL;3;LGSPEC1 cauterizer cauterizyons V;IPFV;IND;PL;1;PST;LGSPEC2 cauterizer cauterizeroys V;COND;SG;2;LGSPEC2 cauterizer cauterizoyt V;IPFV;IND;SG;3;PST;LGSPEC2 cauterizer cauterize V;SBJV;SG;3;PRS cauterizer cauterizeroyent V;COND;PL;3;LGSPEC2 cauterizer cauteriza V;PFV;IND;SG;3;PST cauterizer cauterizoit V;IPFV;IND;SG;3;PST;LGSPEC1 cauterizer cauterizassiez V;IPFV;SBJV;PL;2;PST cauterizer cauterizastes V;PFV;IND;PL;2;PST cauterizer cauterizasses V;IPFV;SBJV;SG;2;PST cauterizer cauterize V;IMP;SG;2 cauterizer cauterizas V;PFV;IND;SG;2;PST cauterizer cauterizons V;SBJV;PL;1;PRS cauterizer cauterizez V;IND;PL;2;PRS cauterizer cauterizeriez V;COND;PL;2;LGSPEC1 cauterizer cauterizasse V;IPFV;SBJV;SG;1;PST cauterizer cauterizent V;IND;PL;3;PRS cauterizer cauterizassions V;IPFV;SBJV;PL;1;PST cauterizer cauterize V;SBJV;SG;1;PRS cauterizer cauterizassent V;IPFV;SBJV;PL;3;PST cauterizer cauterizyez V;IPFV;IND;PL;2;PST;LGSPEC2 meriter meritoient V;IPFV;IND;PL;3;PST;LGSPEC1 meriter meriterons V;IND;PL;1;FUT meriter merite V;IND;SG;3;PRS meriter merites V;SBJV;SG;2;PRS meriter meritassiez V;IPFV;SBJV;PL;2;PST meriter merite V;IND;SG;1;PRS meriter meriteryons V;COND;PL;1;LGSPEC2 meriter meriteroyt V;COND;SG;3;LGSPEC2 meriter meritez V;SBJV;PL;2;PRS meriter merita V;PFV;IND;SG;1;PST meriter merite V;IMP;SG;2 meriter meritois V;IPFV;IND;SG;1;PST;LGSPEC1 meriter meriteroit V;COND;SG;3;LGSPEC1 meriter meritons V;SBJV;PL;1;PRS meriter meritera V;IND;SG;3;FUT meriter meriterez V;IND;PL;2;FUT meriter meritez V;IMP;PL;2 meriter meritast V;IPFV;SBJV;SG;3;PST meriter meritez V;IND;PL;2;PRS meriter meritoys V;IPFV;IND;SG;2;PST;LGSPEC2 meriter meriterions V;COND;PL;1;LGSPEC1 meriter meritons V;IMP;PL;1 meriter merityons V;IPFV;IND;PL;1;PST;LGSPEC2 meriter meriteryez V;COND;PL;2;LGSPEC2 meriter merite V;SBJV;SG;3;PRS meriter meriteroient V;COND;PL;3;LGSPEC1 meriter meriteray V;IND;SG;1;FUT;LGSPEC2 meriter meritastes V;PFV;IND;PL;2;PST meriter meritassions V;IPFV;SBJV;PL;1;PST meriter meriteroyent V;COND;PL;3;LGSPEC2 meriter meritoyt V;IPFV;IND;SG;3;PST;LGSPEC2 meriter meritoyent V;IPFV;IND;PL;3;PST;LGSPEC2 meriter meriter V;NFIN meriter meritas V;PFV;IND;SG;2;PST meriter meritoit V;IPFV;IND;SG;3;PST;LGSPEC1 meriter meritent V;SBJV;PL;3;PRS meriter meritent V;IND;PL;3;PRS meriter meriteras V;IND;SG;2;FUT meriter meritasse V;IPFV;SBJV;SG;1;PST meriter meritions V;IPFV;IND;PL;1;PST;LGSPEC1 meriter meriterois V;COND;SG;2;LGSPEC1 meriter merita V;PFV;IND;SG;3;PST meriter meritasses V;IPFV;SBJV;SG;2;PST meriter meriteriez V;COND;PL;2;LGSPEC1 meriter meriteroys V;COND;SG;2;LGSPEC2 meriter meriteront V;IND;PL;3;FUT meriter meriterent V;PFV;IND;PL;3;PST meriter meritoys V;IPFV;IND;SG;1;PST;LGSPEC2 meriter meriterai V;IND;SG;1;FUT;LGSPEC1 meriter meritasmes V;PFV;IND;PL;1;PST meriter meritons V;IND;PL;1;PRS meriter meritassent V;IPFV;SBJV;PL;3;PST meriter merityez V;IPFV;IND;PL;2;PST;LGSPEC2 meriter meriterois V;COND;SG;1;LGSPEC1 meriter meritiez V;IPFV;IND;PL;2;PST;LGSPEC1 meriter merite V;SBJV;SG;1;PRS meriter merites V;IND;SG;2;PRS meriter meritois V;IPFV;IND;SG;2;PST;LGSPEC1 meriter meriteroys V;COND;SG;1;LGSPEC2 proffiter proffityons V;IPFV;IND;PL;1;PST;LGSPEC2 proffiter proffiteriez V;COND;PL;2;LGSPEC1 proffiter proffiteray V;IND;SG;1;FUT;LGSPEC2 proffiter proffitent V;SBJV;PL;3;PRS proffiter proffitions V;IPFV;IND;PL;1;PST;LGSPEC1 proffiter proffitez V;IND;PL;2;PRS proffiter proffitoys V;IPFV;IND;SG;1;PST;LGSPEC2 proffiter proffitasse V;IPFV;SBJV;SG;1;PST proffiter proffitassiez V;IPFV;SBJV;PL;2;PST proffiter proffitastes V;PFV;IND;PL;2;PST proffiter proffite V;SBJV;SG;1;PRS proffiter proffitoyt V;IPFV;IND;SG;3;PST;LGSPEC2 proffiter proffitasses V;IPFV;SBJV;SG;2;PST proffiter proffitons V;IND;PL;1;PRS proffiter proffitois V;IPFV;IND;SG;2;PST;LGSPEC1 proffiter proffiteras V;IND;SG;2;FUT proffiter proffiteroys V;COND;SG;1;LGSPEC2 proffiter proffitoient V;IPFV;IND;PL;3;PST;LGSPEC1 proffiter proffiteroit V;COND;SG;3;LGSPEC1 proffiter proffityez V;IPFV;IND;PL;2;PST;LGSPEC2 proffiter proffiteryez V;COND;PL;2;LGSPEC2 proffiter proffitas V;PFV;IND;SG;2;PST proffiter proffitasmes V;PFV;IND;PL;1;PST proffiter proffitez V;IMP;PL;2 proffiter proffitast V;IPFV;SBJV;SG;3;PST proffiter proffites V;IND;SG;2;PRS proffiter proffite V;IND;SG;3;PRS proffiter proffiterois V;COND;SG;1;LGSPEC1 proffiter proffitoyent V;IPFV;IND;PL;3;PST;LGSPEC2 proffiter proffiteroys V;COND;SG;2;LGSPEC2 proffiter proffiterois V;COND;SG;2;LGSPEC1 proffiter proffiteroient V;COND;PL;3;LGSPEC1 proffiter proffitassions V;IPFV;SBJV;PL;1;PST proffiter proffiterai V;IND;SG;1;FUT;LGSPEC1 proffiter proffita V;PFV;IND;SG;3;PST proffiter proffiteroyent V;COND;PL;3;LGSPEC2 proffiter proffitassent V;IPFV;SBJV;PL;3;PST proffiter proffite V;SBJV;SG;3;PRS proffiter proffiteroyt V;COND;SG;3;LGSPEC2 proffiter proffiteront V;IND;PL;3;FUT proffiter proffita V;PFV;IND;SG;1;PST proffiter proffitera V;IND;SG;3;FUT proffiter proffite V;IMP;SG;2 proffiter proffitoys V;IPFV;IND;SG;2;PST;LGSPEC2 proffiter proffites V;SBJV;SG;2;PRS proffiter proffiterez V;IND;PL;2;FUT proffiter proffitons V;IMP;PL;1 proffiter proffitoit V;IPFV;IND;SG;3;PST;LGSPEC1 proffiter proffiter V;NFIN proffiter proffite V;IND;SG;1;PRS proffiter proffitons V;SBJV;PL;1;PRS proffiter proffitiez V;IPFV;IND;PL;2;PST;LGSPEC1 proffiter proffiterons V;IND;PL;1;FUT proffiter proffitent V;IND;PL;3;PRS proffiter proffiterent V;PFV;IND;PL;3;PST proffiter proffitois V;IPFV;IND;SG;1;PST;LGSPEC1 proffiter proffiteryons V;COND;PL;1;LGSPEC2 proffiter proffiterions V;COND;PL;1;LGSPEC1 proffiter proffitez V;SBJV;PL;2;PRS mascher mascheras V;IND;SG;2;FUT mascher maschions V;IPFV;IND;PL;1;PST;LGSPEC1 mascher mascheroys V;COND;SG;1;LGSPEC2 mascher mascherai V;IND;SG;1;FUT;LGSPEC1 mascher maschassent V;IPFV;SBJV;PL;3;PST mascher maschons V;SBJV;PL;1;PRS mascher masche V;SBJV;SG;1;PRS mascher masche V;IND;SG;1;PRS mascher maschoys V;IPFV;IND;SG;2;PST;LGSPEC2 mascher maschoit V;IPFV;IND;SG;3;PST;LGSPEC1 mascher maschoyent V;IPFV;IND;PL;3;PST;LGSPEC2 mascher mascherons V;IND;PL;1;FUT mascher mascheryez V;COND;PL;2;LGSPEC2 mascher mascheryons V;COND;PL;1;LGSPEC2 mascher maschoys V;IPFV;IND;SG;1;PST;LGSPEC2 mascher maschoyt V;IPFV;IND;SG;3;PST;LGSPEC2 mascher maschyez V;IPFV;IND;PL;2;PST;LGSPEC2 mascher maschons V;IMP;PL;1 mascher mascheriez V;COND;PL;2;LGSPEC1 mascher maschera V;IND;SG;3;FUT mascher mascheroyt V;COND;SG;3;LGSPEC2 mascher maschast V;IPFV;SBJV;SG;3;PST mascher mascha V;PFV;IND;SG;1;PST mascher maschez V;IND;PL;2;PRS mascher maschent V;IND;PL;3;PRS mascher mascheront V;IND;PL;3;FUT mascher maschassiez V;IPFV;SBJV;PL;2;PST mascher maschez V;SBJV;PL;2;PRS mascher masche V;IND;SG;3;PRS mascher mascha V;PFV;IND;SG;3;PST mascher maschois V;IPFV;IND;SG;2;PST;LGSPEC1 mascher mascherois V;COND;SG;2;LGSPEC1 mascher mascherois V;COND;SG;1;LGSPEC1 mascher maschas V;PFV;IND;SG;2;PST mascher maschastes V;PFV;IND;PL;2;PST mascher masches V;SBJV;SG;2;PRS mascher mascheroient V;COND;PL;3;LGSPEC1 mascher maschons V;IND;PL;1;PRS mascher mascheroys V;COND;SG;2;LGSPEC2 mascher mascheroit V;COND;SG;3;LGSPEC1 mascher mascherions V;COND;PL;1;LGSPEC1 mascher maschassions V;IPFV;SBJV;PL;1;PST mascher maschez V;IMP;PL;2 mascher mascherent V;PFV;IND;PL;3;PST mascher maschasses V;IPFV;SBJV;SG;2;PST mascher masche V;SBJV;SG;3;PRS mascher maschois V;IPFV;IND;SG;1;PST;LGSPEC1 mascher maschent V;SBJV;PL;3;PRS mascher maschoient V;IPFV;IND;PL;3;PST;LGSPEC1 mascher mascheray V;IND;SG;1;FUT;LGSPEC2 mascher maschasmes V;PFV;IND;PL;1;PST mascher mascher V;NFIN mascher maschasse V;IPFV;SBJV;SG;1;PST mascher masche V;IMP;SG;2 mascher maschyons V;IPFV;IND;PL;1;PST;LGSPEC2 mascher mascheroyent V;COND;PL;3;LGSPEC2 mascher masches V;IND;SG;2;PRS mascher mascherez V;IND;PL;2;FUT mascher maschiez V;IPFV;IND;PL;2;PST;LGSPEC1 advancer advanciez V;IPFV;IND;PL;2;PST;LGSPEC1 advancer advanceryons V;COND;PL;1;LGSPEC2 advancer advancez V;IND;PL;2;PRS advancer advançassions V;IPFV;SBJV;PL;1;PST advancer advançoyt V;IPFV;IND;SG;3;PST;LGSPEC2 advancer advanceray V;IND;SG;1;FUT;LGSPEC2 advancer advancera V;IND;SG;3;FUT advancer advancerons V;IND;PL;1;FUT advancer advancez V;SBJV;PL;2;PRS advancer advançassiez V;IPFV;SBJV;PL;2;PST advancer advanceroyt V;COND;SG;3;LGSPEC2 advancer advançasse V;IPFV;SBJV;SG;1;PST advancer advance V;SBJV;SG;1;PRS advancer advançons V;SBJV;PL;1;PRS advancer advances V;IND;SG;2;PRS advancer advanceroient V;COND;PL;3;LGSPEC1 advancer advançoyent V;IPFV;IND;PL;3;PST;LGSPEC2 advancer advanceroyent V;COND;PL;3;LGSPEC2 advancer advanceryez V;COND;PL;2;LGSPEC2 advancer advançassent V;IPFV;SBJV;PL;3;PST advancer advancent V;SBJV;PL;3;PRS advancer advanceront V;IND;PL;3;FUT advancer advancent V;IND;PL;3;PRS advancer advançons V;IND;PL;1;PRS advancer advancerois V;COND;SG;2;LGSPEC1 advancer advançoys V;IPFV;IND;SG;2;PST;LGSPEC2 advancer advancez V;IMP;PL;2 advancer advanceroys V;COND;SG;2;LGSPEC2 advancer advança V;PFV;IND;SG;1;PST advancer advance V;IND;SG;3;PRS advancer advanceriez V;COND;PL;2;LGSPEC1 advancer advancions V;IPFV;IND;PL;1;PST;LGSPEC1 advancer advancer V;NFIN advancer advançasses V;IPFV;SBJV;SG;2;PST advancer advancerent V;PFV;IND;PL;3;PST advancer advancerai V;IND;SG;1;FUT;LGSPEC1 advancer advancyez V;IPFV;IND;PL;2;PST;LGSPEC2 advancer advancerois V;COND;SG;1;LGSPEC1 advancer advances V;SBJV;SG;2;PRS advancer advanceras V;IND;SG;2;FUT advancer advançons V;IPFV;IND;PL;1;PST;LGSPEC2 advancer advançasmes V;PFV;IND;PL;1;PST advancer advance V;IMP;SG;2 advancer advançons V;IMP;PL;1 advancer advançoys V;IPFV;IND;SG;1;PST;LGSPEC2 advancer advançoient V;IPFV;IND;PL;3;PST;LGSPEC1 advancer advance V;SBJV;SG;3;PRS advancer advancerez V;IND;PL;2;FUT advancer advanceroit V;COND;SG;3;LGSPEC1 advancer advance V;IND;SG;1;PRS advancer advançastes V;PFV;IND;PL;2;PST advancer advançois V;IPFV;IND;SG;2;PST;LGSPEC1 advancer advançast V;IPFV;SBJV;SG;3;PST advancer advançois V;IPFV;IND;SG;1;PST;LGSPEC1 advancer advanças V;PFV;IND;SG;2;PST advancer advanceroys V;COND;SG;1;LGSPEC2 advancer advancerions V;COND;PL;1;LGSPEC1 advancer advançoit V;IPFV;IND;SG;3;PST;LGSPEC1 advancer advança V;PFV;IND;SG;3;PST sembler semble V;IND;SG;3;PRS sembler semblons V;SBJV;PL;1;PRS sembler semblerent V;PFV;IND;PL;3;PST sembler sembloyent V;IPFV;IND;PL;3;PST;LGSPEC2 sembler sembleriez V;COND;PL;2;LGSPEC1 sembler sembleroys V;COND;SG;1;LGSPEC2 sembler sembleront V;IND;PL;3;FUT sembler sembleroyent V;COND;PL;3;LGSPEC2 sembler semblois V;IPFV;IND;SG;1;PST;LGSPEC1 sembler semblions V;IPFV;IND;PL;1;PST;LGSPEC1 sembler semble V;IND;SG;1;PRS sembler sembleroient V;COND;PL;3;LGSPEC1 sembler semblerons V;IND;PL;1;FUT sembler semble V;SBJV;SG;3;PRS sembler semblas V;PFV;IND;SG;2;PST sembler sembleras V;IND;SG;2;FUT sembler semblons V;IMP;PL;1 sembler semblasses V;IPFV;SBJV;SG;2;PST sembler sembloit V;IPFV;IND;SG;3;PST;LGSPEC1 sembler semblerois V;COND;SG;2;LGSPEC1 sembler semblez V;SBJV;PL;2;PRS sembler semblons V;IND;PL;1;PRS sembler semblassions V;IPFV;SBJV;PL;1;PST sembler semble V;IMP;SG;2 sembler sembler V;NFIN sembler semblerois V;COND;SG;1;LGSPEC1 sembler semblast V;IPFV;SBJV;SG;3;PST sembler sembles V;IND;SG;2;PRS sembler sembloyt V;IPFV;IND;SG;3;PST;LGSPEC2 sembler semblent V;SBJV;PL;3;PRS sembler semblerez V;IND;PL;2;FUT sembler semblasse V;IPFV;SBJV;SG;1;PST sembler sembleray V;IND;SG;1;FUT;LGSPEC2 sembler semblastes V;PFV;IND;PL;2;PST sembler semblois V;IPFV;IND;SG;2;PST;LGSPEC1 sembler sembleroyt V;COND;SG;3;LGSPEC2 sembler sembloys V;IPFV;IND;SG;1;PST;LGSPEC2 sembler semble V;SBJV;SG;1;PRS sembler semblassent V;IPFV;SBJV;PL;3;PST sembler semblassiez V;IPFV;SBJV;PL;2;PST sembler semblez V;IND;PL;2;PRS sembler sembles V;SBJV;SG;2;PRS sembler sembleryez V;COND;PL;2;LGSPEC2 sembler semblasmes V;PFV;IND;PL;1;PST sembler sembleryons V;COND;PL;1;LGSPEC2 sembler sembloys V;IPFV;IND;SG;2;PST;LGSPEC2 sembler sembliez V;IPFV;IND;PL;2;PST;LGSPEC1 sembler sembleroys V;COND;SG;2;LGSPEC2 sembler sembla V;PFV;IND;SG;1;PST sembler semblez V;IMP;PL;2 sembler semblent V;IND;PL;3;PRS sembler semblyons V;IPFV;IND;PL;1;PST;LGSPEC2 sembler sembleroit V;COND;SG;3;LGSPEC1 sembler semblyez V;IPFV;IND;PL;2;PST;LGSPEC2 sembler semblerai V;IND;SG;1;FUT;LGSPEC1 sembler semblera V;IND;SG;3;FUT sembler sembloient V;IPFV;IND;PL;3;PST;LGSPEC1 sembler semblerions V;COND;PL;1;LGSPEC1 sembler sembla V;PFV;IND;SG;3;PST pacquer pacquera V;IND;SG;3;FUT pacquer pacquez V;IMP;PL;2 pacquer pacquent V;SBJV;PL;3;PRS pacquer pacqueroys V;COND;SG;1;LGSPEC2 pacquer pacquois V;IPFV;IND;SG;2;PST;LGSPEC1 pacquer pacquerent V;PFV;IND;PL;3;PST pacquer pacqua V;PFV;IND;SG;1;PST pacquer pacquyez V;IPFV;IND;PL;2;PST;LGSPEC2 pacquer pacqueras V;IND;SG;2;FUT pacquer pacquoyent V;IPFV;IND;PL;3;PST;LGSPEC2 pacquer pacques V;SBJV;SG;2;PRS pacquer pacqueroyent V;COND;PL;3;LGSPEC2 pacquer pacquoys V;IPFV;IND;SG;2;PST;LGSPEC2 pacquer pacquasses V;IPFV;SBJV;SG;2;PST pacquer pacquyons V;IPFV;IND;PL;1;PST;LGSPEC2 pacquer pacquent V;IND;PL;3;PRS pacquer pacque V;SBJV;SG;1;PRS pacquer pacquerions V;COND;PL;1;LGSPEC1 pacquer pacquassiez V;IPFV;SBJV;PL;2;PST pacquer pacqueroient V;COND;PL;3;LGSPEC1 pacquer pacqueryez V;COND;PL;2;LGSPEC2 pacquer pacquoys V;IPFV;IND;SG;1;PST;LGSPEC2 pacquer pacquions V;IPFV;IND;PL;1;PST;LGSPEC1 pacquer pacque V;IND;SG;1;PRS pacquer pacquerez V;IND;PL;2;FUT pacquer pacqueroyt V;COND;SG;3;LGSPEC2 pacquer pacque V;SBJV;SG;3;PRS pacquer pacqueryons V;COND;PL;1;LGSPEC2 pacquer pacques V;IND;SG;2;PRS pacquer pacqueriez V;COND;PL;2;LGSPEC1 pacquer pacquerois V;COND;SG;1;LGSPEC1 pacquer pacqueroys V;COND;SG;2;LGSPEC2 pacquer pacquassions V;IPFV;SBJV;PL;1;PST pacquer pacquoit V;IPFV;IND;SG;3;PST;LGSPEC1 pacquer pacqueray V;IND;SG;1;FUT;LGSPEC2 pacquer pacquerai V;IND;SG;1;FUT;LGSPEC1 pacquer pacqua V;PFV;IND;SG;3;PST pacquer pacquerons V;IND;PL;1;FUT pacquer pacqueroit V;COND;SG;3;LGSPEC1 pacquer pacqueront V;IND;PL;3;FUT pacquer pacque V;IMP;SG;2 pacquer pacquasmes V;PFV;IND;PL;1;PST pacquer pacquons V;SBJV;PL;1;PRS pacquer pacquez V;SBJV;PL;2;PRS pacquer pacquastes V;PFV;IND;PL;2;PST pacquer pacquoyt V;IPFV;IND;SG;3;PST;LGSPEC2 pacquer pacquerois V;COND;SG;2;LGSPEC1 pacquer pacquiez V;IPFV;IND;PL;2;PST;LGSPEC1 pacquer pacquez V;IND;PL;2;PRS pacquer pacquois V;IPFV;IND;SG;1;PST;LGSPEC1 pacquer pacquasse V;IPFV;SBJV;SG;1;PST pacquer pacquassent V;IPFV;SBJV;PL;3;PST pacquer pacquons V;IMP;PL;1 pacquer pacquoient V;IPFV;IND;PL;3;PST;LGSPEC1 pacquer pacquast V;IPFV;SBJV;SG;3;PST pacquer pacque V;IND;SG;3;PRS pacquer pacquas V;PFV;IND;SG;2;PST pacquer pacquer V;NFIN pacquer pacquons V;IND;PL;1;PRS engroisser engroisseray V;IND;SG;1;FUT;LGSPEC2 engroisser engroissoys V;IPFV;IND;SG;1;PST;LGSPEC2 engroisser engroisseroys V;COND;SG;1;LGSPEC2 engroisser engroissois V;IPFV;IND;SG;1;PST;LGSPEC1 engroisser engroisser V;NFIN engroisser engroissois V;IPFV;IND;SG;2;PST;LGSPEC1 engroisser engroisserai V;IND;SG;1;FUT;LGSPEC1 engroisser engroisseryons V;COND;PL;1;LGSPEC2 engroisser engroisserons V;IND;PL;1;FUT engroisser engroissoys V;IPFV;IND;SG;2;PST;LGSPEC2 engroisser engroissez V;IMP;PL;2 engroisser engroissons V;IND;PL;1;PRS engroisser engroissiez V;IPFV;IND;PL;2;PST;LGSPEC1 engroisser engroissa V;PFV;IND;SG;1;PST engroisser engroissassiez V;IPFV;SBJV;PL;2;PST engroisser engroisseroys V;COND;SG;2;LGSPEC2 engroisser engroisse V;SBJV;SG;1;PRS engroisser engroissas V;PFV;IND;SG;2;PST engroisser engroissyez V;IPFV;IND;PL;2;PST;LGSPEC2 engroisser engroisserent V;PFV;IND;PL;3;PST engroisser engroissyons V;IPFV;IND;PL;1;PST;LGSPEC2 engroisser engroissassions V;IPFV;SBJV;PL;1;PST engroisser engroissassent V;IPFV;SBJV;PL;3;PST engroisser engroisse V;IND;SG;1;PRS engroisser engroisseras V;IND;SG;2;FUT engroisser engroissions V;IPFV;IND;PL;1;PST;LGSPEC1 engroisser engroissent V;SBJV;PL;3;PRS engroisser engroissa V;PFV;IND;SG;3;PST engroisser engroissastes V;PFV;IND;PL;2;PST engroisser engroissasmes V;PFV;IND;PL;1;PST engroisser engroissons V;IMP;PL;1 engroisser engroissez V;SBJV;PL;2;PRS engroisser engroisses V;IND;SG;2;PRS engroisser engroisseroyent V;COND;PL;3;LGSPEC2 engroisser engroissast V;IPFV;SBJV;SG;3;PST engroisser engroisseront V;IND;PL;3;FUT engroisser engroissoient V;IPFV;IND;PL;3;PST;LGSPEC1 engroisser engroissoyt V;IPFV;IND;SG;3;PST;LGSPEC2 engroisser engroisseroient V;COND;PL;3;LGSPEC1 engroisser engroisserions V;COND;PL;1;LGSPEC1 engroisser engroisserois V;COND;SG;2;LGSPEC1 engroisser engroisseroyt V;COND;SG;3;LGSPEC2 engroisser engroissez V;IND;PL;2;PRS engroisser engroisseroit V;COND;SG;3;LGSPEC1 engroisser engroissoyent V;IPFV;IND;PL;3;PST;LGSPEC2 engroisser engroissera V;IND;SG;3;FUT engroisser engroisserois V;COND;SG;1;LGSPEC1 engroisser engroisserez V;IND;PL;2;FUT engroisser engroissoit V;IPFV;IND;SG;3;PST;LGSPEC1 engroisser engroissons V;SBJV;PL;1;PRS engroisser engroisseryez V;COND;PL;2;LGSPEC2 engroisser engroissasse V;IPFV;SBJV;SG;1;PST engroisser engroisses V;SBJV;SG;2;PRS engroisser engroisseriez V;COND;PL;2;LGSPEC1 engroisser engroisse V;IND;SG;3;PRS engroisser engroisse V;IMP;SG;2 engroisser engroissent V;IND;PL;3;PRS engroisser engroissasses V;IPFV;SBJV;SG;2;PST engroisser engroisse V;SBJV;SG;3;PRS mehaignier mehaignassions V;IPFV;SBJV;PL;1;PST mehaignier mehaignes V;SBJV;SG;2;PRS mehaignier mehaignieroyt V;COND;SG;3;LGSPEC2 mehaignier mehaignent V;IND;PL;3;PRS mehaignier mehaignyons V;IPFV;IND;PL;1;PST;LGSPEC2 mehaignier mehaignoit V;IPFV;IND;SG;3;PST;LGSPEC1 mehaignier mehaignierois V;COND;SG;1;LGSPEC1 mehaignier mehaignoyt V;IPFV;IND;SG;3;PST;LGSPEC2 mehaignier mehaigniez V;SBJV;PL;2;PRS mehaignier mehaigniez V;IND;PL;2;PRS mehaignier mehaignions V;SBJV;PL;1;PRS mehaignier mehaignierons V;IND;PL;1;FUT mehaignier mehaignieryons V;COND;PL;1;LGSPEC2 mehaignier mehaignasses V;IPFV;SBJV;SG;2;PST mehaignier mehaigne V;IND;SG;3;PRS mehaignier mehaignieras V;IND;SG;2;FUT mehaignier mehaignieroys V;COND;SG;2;LGSPEC2 mehaignier mehaignassiez V;IPFV;SBJV;PL;2;PST mehaignier mehaignast V;IPFV;SBJV;SG;3;PST mehaignier mehaignoys V;IPFV;IND;SG;2;PST;LGSPEC2 mehaignier mehaignastes V;PFV;IND;PL;2;PST mehaignier mehaignieront V;IND;PL;3;FUT mehaignier mehaignier V;NFIN mehaignier mehaignieroys V;COND;SG;1;LGSPEC2 mehaignier mehaignions V;IPFV;IND;PL;1;PST;LGSPEC1 mehaignier mehaignieryez V;COND;PL;2;LGSPEC2 mehaignier mehaigna V;PFV;IND;SG;1;PST mehaignier mehaignyez V;IPFV;IND;PL;2;PST;LGSPEC2 mehaignier mehaigne V;IMP;SG;2 mehaignier mehaignois V;IPFV;IND;SG;2;PST;LGSPEC1 mehaignier mehaignois V;IPFV;IND;SG;1;PST;LGSPEC1 mehaignier mehaignierions V;COND;PL;1;LGSPEC1 mehaignier mehaignierent V;PFV;IND;PL;3;PST mehaignier mehaigniez V;IPFV;IND;PL;2;PST;LGSPEC1 mehaignier mehaignasse V;IPFV;SBJV;SG;1;PST mehaignier mehaignieroyent V;COND;PL;3;LGSPEC2 mehaignier mehaignent V;SBJV;PL;3;PRS mehaignier mehaignasmes V;PFV;IND;PL;1;PST mehaignier mehaigne V;SBJV;SG;1;PRS mehaignier mehaignoys V;IPFV;IND;SG;1;PST;LGSPEC2 mehaignier mehaignions V;IND;PL;1;PRS mehaignier mehaigna V;PFV;IND;SG;3;PST mehaignier mehaignieray V;IND;SG;1;FUT;LGSPEC2 mehaignier mehaignas V;PFV;IND;SG;2;PST mehaignier mehaignierois V;COND;SG;2;LGSPEC1 mehaignier mehaignierez V;IND;PL;2;FUT mehaignier mehaigne V;SBJV;SG;3;PRS mehaignier mehaignes V;IND;SG;2;PRS mehaignier mehaigniez V;IMP;PL;2 mehaignier mehaignoient V;IPFV;IND;PL;3;PST;LGSPEC1 mehaignier mehaignierai V;IND;SG;1;FUT;LGSPEC1 mehaignier mehaignieroient V;COND;PL;3;LGSPEC1 mehaignier mehaignieroit V;COND;SG;3;LGSPEC1 mehaignier mehaignoyent V;IPFV;IND;PL;3;PST;LGSPEC2 mehaignier mehaignassent V;IPFV;SBJV;PL;3;PST mehaignier mehaigniera V;IND;SG;3;FUT mehaignier mehaignions V;IMP;PL;1 mehaignier mehaignieriez V;COND;PL;2;LGSPEC1 mehaignier mehaigne V;IND;SG;1;PRS desrouter desroute V;IMP;SG;2 desrouter desroutez V;IND;PL;2;PRS desrouter desrouta V;PFV;IND;SG;1;PST desrouter desroute V;SBJV;SG;3;PRS desrouter desroutois V;IPFV;IND;SG;1;PST;LGSPEC1 desrouter desroutyons V;IPFV;IND;PL;1;PST;LGSPEC2 desrouter desrouteroyent V;COND;PL;3;LGSPEC2 desrouter desroutast V;IPFV;SBJV;SG;3;PST desrouter desrouterons V;IND;PL;1;FUT desrouter desroutons V;IMP;PL;1 desrouter desroutoys V;IPFV;IND;SG;2;PST;LGSPEC2 desrouter desrouterez V;IND;PL;2;FUT desrouter desroutasmes V;PFV;IND;PL;1;PST desrouter desrouteriez V;COND;PL;2;LGSPEC1 desrouter desroutoit V;IPFV;IND;SG;3;PST;LGSPEC1 desrouter desroutent V;IND;PL;3;PRS desrouter desroutons V;SBJV;PL;1;PRS desrouter desrouteray V;IND;SG;1;FUT;LGSPEC2 desrouter desrouteroyt V;COND;SG;3;LGSPEC2 desrouter desroutez V;IMP;PL;2 desrouter desrouteroit V;COND;SG;3;LGSPEC1 desrouter desrouteryez V;COND;PL;2;LGSPEC2 desrouter desrouteryons V;COND;PL;1;LGSPEC2 desrouter desroute V;SBJV;SG;1;PRS desrouter desroutas V;PFV;IND;SG;2;PST desrouter desroutasse V;IPFV;SBJV;SG;1;PST desrouter desroute V;IND;SG;3;PRS desrouter desroutions V;IPFV;IND;PL;1;PST;LGSPEC1 desrouter desroutoyt V;IPFV;IND;SG;3;PST;LGSPEC2 desrouter desroutoient V;IPFV;IND;PL;3;PST;LGSPEC1 desrouter desroutyez V;IPFV;IND;PL;2;PST;LGSPEC2 desrouter desrouter V;NFIN desrouter desroutois V;IPFV;IND;SG;2;PST;LGSPEC1 desrouter desrouterent V;PFV;IND;PL;3;PST desrouter desroutes V;IND;SG;2;PRS desrouter desroute V;IND;SG;1;PRS desrouter desrouta V;PFV;IND;SG;3;PST desrouter desroutassiez V;IPFV;SBJV;PL;2;PST desrouter desroutassent V;IPFV;SBJV;PL;3;PST desrouter desrouteroient V;COND;PL;3;LGSPEC1 desrouter desrouteroys V;COND;SG;1;LGSPEC2 desrouter desrouteront V;IND;PL;3;FUT desrouter desroutera V;IND;SG;3;FUT desrouter desroutoyent V;IPFV;IND;PL;3;PST;LGSPEC2 desrouter desroutasses V;IPFV;SBJV;SG;2;PST desrouter desroutiez V;IPFV;IND;PL;2;PST;LGSPEC1 desrouter desrouteroys V;COND;SG;2;LGSPEC2 desrouter desrouteras V;IND;SG;2;FUT desrouter desrouterois V;COND;SG;2;LGSPEC1 desrouter desroutoys V;IPFV;IND;SG;1;PST;LGSPEC2 desrouter desroutons V;IND;PL;1;PRS desrouter desrouterois V;COND;SG;1;LGSPEC1 desrouter desroutes V;SBJV;SG;2;PRS desrouter desroutent V;SBJV;PL;3;PRS desrouter desroutastes V;PFV;IND;PL;2;PST desrouter desrouterions V;COND;PL;1;LGSPEC1 desrouter desroutassions V;IPFV;SBJV;PL;1;PST desrouter desrouterai V;IND;SG;1;FUT;LGSPEC1 desrouter desroutez V;SBJV;PL;2;PRS destacher destachast V;IPFV;SBJV;SG;3;PST destacher destachez V;SBJV;PL;2;PRS destacher destachoyt V;IPFV;IND;SG;3;PST;LGSPEC2 destacher destachent V;IND;PL;3;PRS destacher destachez V;IND;PL;2;PRS destacher destacheryons V;COND;PL;1;LGSPEC2 destacher destachoys V;IPFV;IND;SG;1;PST;LGSPEC2 destacher destacher V;NFIN destacher destachiez V;IPFV;IND;PL;2;PST;LGSPEC1 destacher destachoys V;IPFV;IND;SG;2;PST;LGSPEC2 destacher destacheryez V;COND;PL;2;LGSPEC2 destacher destachent V;SBJV;PL;3;PRS destacher destachassions V;IPFV;SBJV;PL;1;PST destacher destachons V;SBJV;PL;1;PRS destacher destaches V;IND;SG;2;PRS destacher destache V;IND;SG;1;PRS destacher destachois V;IPFV;IND;SG;1;PST;LGSPEC1 destacher destachas V;PFV;IND;SG;2;PST destacher destachasmes V;PFV;IND;PL;1;PST destacher destacherois V;COND;SG;1;LGSPEC1 destacher destachions V;IPFV;IND;PL;1;PST;LGSPEC1 destacher destachassent V;IPFV;SBJV;PL;3;PST destacher destacheroyent V;COND;PL;3;LGSPEC2 destacher destachyez V;IPFV;IND;PL;2;PST;LGSPEC2 destacher destachasses V;IPFV;SBJV;SG;2;PST destacher destacherions V;COND;PL;1;LGSPEC1 destacher destacherent V;PFV;IND;PL;3;PST destacher destacheroient V;COND;PL;3;LGSPEC1 destacher destachera V;IND;SG;3;FUT destacher destacha V;PFV;IND;SG;3;PST destacher destacheriez V;COND;PL;2;LGSPEC1 destacher destacherons V;IND;PL;1;FUT destacher destachois V;IPFV;IND;SG;2;PST;LGSPEC1 destacher destachasse V;IPFV;SBJV;SG;1;PST destacher destacherois V;COND;SG;2;LGSPEC1 destacher destachastes V;PFV;IND;PL;2;PST destacher destacheray V;IND;SG;1;FUT;LGSPEC2 destacher destacheroys V;COND;SG;2;LGSPEC2 destacher destachyons V;IPFV;IND;PL;1;PST;LGSPEC2 destacher destacherai V;IND;SG;1;FUT;LGSPEC1 destacher destache V;IND;SG;3;PRS destacher destacherez V;IND;PL;2;FUT destacher destachoyent V;IPFV;IND;PL;3;PST;LGSPEC2 destacher destachez V;IMP;PL;2 destacher destacheront V;IND;PL;3;FUT destacher destachoit V;IPFV;IND;SG;3;PST;LGSPEC1 destacher destache V;SBJV;SG;1;PRS destacher destachons V;IND;PL;1;PRS destacher destacheroit V;COND;SG;3;LGSPEC1 destacher destachons V;IMP;PL;1 destacher destaches V;SBJV;SG;2;PRS destacher destacha V;PFV;IND;SG;1;PST destacher destacheroyt V;COND;SG;3;LGSPEC2 destacher destacheras V;IND;SG;2;FUT destacher destache V;SBJV;SG;3;PRS destacher destache V;IMP;SG;2 destacher destacheroys V;COND;SG;1;LGSPEC2 destacher destachassiez V;IPFV;SBJV;PL;2;PST destacher destachoient V;IPFV;IND;PL;3;PST;LGSPEC1 melancholier melancholions V;IMP;PL;1 melancholier melancholie V;IMP;SG;2 melancholier melancholies V;SBJV;SG;2;PRS melancholier melancholieroyent V;COND;PL;3;LGSPEC2 melancholier melancholioyt V;IPFV;IND;SG;3;PST;LGSPEC2 melancholier melancholiyez V;IPFV;IND;PL;2;PST;LGSPEC2 melancholier melancholiastes V;PFV;IND;PL;2;PST melancholier melancholie V;IND;SG;3;PRS melancholier melancholia V;PFV;IND;SG;3;PST melancholier melancholieryons V;COND;PL;1;LGSPEC2 melancholier melancholiois V;IPFV;IND;SG;1;PST;LGSPEC1 melancholier melancholioit V;IPFV;IND;SG;3;PST;LGSPEC1 melancholier melancholierez V;IND;PL;2;FUT melancholier melancholioient V;IPFV;IND;PL;3;PST;LGSPEC1 melancholier melancholiez V;IMP;PL;2 melancholier melancholierois V;COND;SG;2;LGSPEC1 melancholier melancholiassent V;IPFV;SBJV;PL;3;PST melancholier melancholies V;IND;SG;2;PRS melancholier melancholie V;SBJV;SG;1;PRS melancholier melancholiasses V;IPFV;SBJV;SG;2;PST melancholier melancholieray V;IND;SG;1;FUT;LGSPEC2 melancholier melancholieryez V;COND;PL;2;LGSPEC2 melancholier melancholierai V;IND;SG;1;FUT;LGSPEC1 melancholier melancholierent V;PFV;IND;PL;3;PST melancholier melancholioys V;IPFV;IND;SG;2;PST;LGSPEC2 melancholier melancholie V;IND;SG;1;PRS melancholier melancholiyons V;IPFV;IND;PL;1;PST;LGSPEC2 melancholier melancholiois V;IPFV;IND;SG;2;PST;LGSPEC1 melancholier melancholia V;PFV;IND;SG;1;PST melancholier melancholiasse V;IPFV;SBJV;SG;1;PST melancholier melancholieroit V;COND;SG;3;LGSPEC1 melancholier melancholierons V;IND;PL;1;FUT melancholier melancholiassiez V;IPFV;SBJV;PL;2;PST melancholier melancholions V;IND;PL;1;PRS melancholier melancholions V;SBJV;PL;1;PRS melancholier melancholiiez V;IPFV;IND;PL;2;PST;LGSPEC1 melancholier melancholierions V;COND;PL;1;LGSPEC1 melancholier melancholie V;SBJV;SG;3;PRS melancholier melancholieront V;IND;PL;3;FUT melancholier melancholieroyt V;COND;SG;3;LGSPEC2 melancholier melancholieroys V;COND;SG;2;LGSPEC2 melancholier melancholiera V;IND;SG;3;FUT melancholier melancholiast V;IPFV;SBJV;SG;3;PST melancholier melancholiez V;SBJV;PL;2;PRS melancholier melancholias V;PFV;IND;SG;2;PST melancholier melancholioyent V;IPFV;IND;PL;3;PST;LGSPEC2 melancholier melancholieroient V;COND;PL;3;LGSPEC1 melancholier melancholier V;NFIN melancholier melancholiez V;IND;PL;2;PRS melancholier melancholieroys V;COND;SG;1;LGSPEC2 melancholier melancholiassions V;IPFV;SBJV;PL;1;PST melancholier melancholiions V;IPFV;IND;PL;1;PST;LGSPEC1 melancholier melancholioys V;IPFV;IND;SG;1;PST;LGSPEC2 melancholier melancholient V;SBJV;PL;3;PRS melancholier melancholiasmes V;PFV;IND;PL;1;PST melancholier melancholieriez V;COND;PL;2;LGSPEC1 melancholier melancholierois V;COND;SG;1;LGSPEC1 melancholier melancholient V;IND;PL;3;PRS melancholier melancholieras V;IND;SG;2;FUT loger logeastes V;PFV;IND;PL;2;PST loger logeassions V;IPFV;SBJV;PL;1;PST loger logeoys V;IPFV;IND;SG;2;PST;LGSPEC2 loger logeroit V;COND;SG;3;LGSPEC1 loger logions V;IPFV;IND;PL;1;PST;LGSPEC1 loger logeons V;SBJV;PL;1;PRS loger logerois V;COND;SG;2;LGSPEC1 loger logiez V;IPFV;IND;PL;2;PST;LGSPEC1 loger logeray V;IND;SG;1;FUT;LGSPEC2 loger logez V;IMP;PL;2 loger logea V;PFV;IND;SG;1;PST loger logeasmes V;PFV;IND;PL;1;PST loger logeois V;IPFV;IND;SG;1;PST;LGSPEC1 loger loges V;SBJV;SG;2;PRS loger logyez V;IPFV;IND;PL;2;PST;LGSPEC2 loger logeasses V;IPFV;SBJV;SG;2;PST loger logea V;PFV;IND;SG;3;PST loger logeras V;IND;SG;2;FUT loger logerez V;IND;PL;2;FUT loger logeroyt V;COND;SG;3;LGSPEC2 loger logeroyent V;COND;PL;3;LGSPEC2 loger logeoit V;IPFV;IND;SG;3;PST;LGSPEC1 loger logeriez V;COND;PL;2;LGSPEC1 loger logeast V;IPFV;SBJV;SG;3;PST loger logeoys V;IPFV;IND;SG;1;PST;LGSPEC2 loger loge V;SBJV;SG;1;PRS loger logeoyent V;IPFV;IND;PL;3;PST;LGSPEC2 loger loge V;IMP;SG;2 loger logeroys V;COND;SG;2;LGSPEC2 loger loges V;IND;SG;2;PRS loger logeassent V;IPFV;SBJV;PL;3;PST loger logent V;IND;PL;3;PRS loger logeons V;IND;PL;1;PRS loger loge V;SBJV;SG;3;PRS loger logeroient V;COND;PL;3;LGSPEC1 loger logyons V;IPFV;IND;PL;1;PST;LGSPEC2 loger loge V;IND;SG;3;PRS loger logeryez V;COND;PL;2;LGSPEC2 loger logerions V;COND;PL;1;LGSPEC1 loger logerois V;COND;SG;1;LGSPEC1 loger logerent V;PFV;IND;PL;3;PST loger logeons V;IMP;PL;1 loger loger V;NFIN loger logeois V;IPFV;IND;SG;2;PST;LGSPEC1 loger loge V;IND;SG;1;PRS loger logeoyt V;IPFV;IND;SG;3;PST;LGSPEC2 loger logeryons V;COND;PL;1;LGSPEC2 loger logeassiez V;IPFV;SBJV;PL;2;PST loger logez V;IND;PL;2;PRS loger logerai V;IND;SG;1;FUT;LGSPEC1 loger logera V;IND;SG;3;FUT loger logent V;SBJV;PL;3;PRS loger logeroys V;COND;SG;1;LGSPEC2 loger logeas V;PFV;IND;SG;2;PST loger logeoient V;IPFV;IND;PL;3;PST;LGSPEC1 loger logeront V;IND;PL;3;FUT loger logeasse V;IPFV;SBJV;SG;1;PST loger logez V;SBJV;PL;2;PRS loger logerons V;IND;PL;1;FUT hacher hacheryons V;COND;PL;1;LGSPEC2 hacher hacheroyt V;COND;SG;3;LGSPEC2 hacher hache V;IND;SG;1;PRS hacher hachast V;IPFV;SBJV;SG;3;PST hacher hachiez V;IPFV;IND;PL;2;PST;LGSPEC1 hacher hacherai V;IND;SG;1;FUT;LGSPEC1 hacher hache V;SBJV;SG;3;PRS hacher hachastes V;PFV;IND;PL;2;PST hacher hache V;IMP;SG;2 hacher hachoys V;IPFV;IND;SG;2;PST;LGSPEC2 hacher hachasmes V;PFV;IND;PL;1;PST hacher hachez V;SBJV;PL;2;PRS hacher hachoyt V;IPFV;IND;SG;3;PST;LGSPEC2 hacher hachons V;SBJV;PL;1;PRS hacher hachyez V;IPFV;IND;PL;2;PST;LGSPEC2 hacher hacheroient V;COND;PL;3;LGSPEC1 hacher hachez V;IND;PL;2;PRS hacher hachent V;SBJV;PL;3;PRS hacher hachois V;IPFV;IND;SG;2;PST;LGSPEC1 hacher hachera V;IND;SG;3;FUT hacher hacheray V;IND;SG;1;FUT;LGSPEC2 hacher hacheras V;IND;SG;2;FUT hacher hachoyent V;IPFV;IND;PL;3;PST;LGSPEC2 hacher hacherent V;PFV;IND;PL;3;PST hacher haches V;IND;SG;2;PRS hacher hachassions V;IPFV;SBJV;PL;1;PST hacher hache V;SBJV;SG;1;PRS hacher hachons V;IND;PL;1;PRS hacher hachoient V;IPFV;IND;PL;3;PST;LGSPEC1 hacher hacheryez V;COND;PL;2;LGSPEC2 hacher hacheroys V;COND;SG;1;LGSPEC2 hacher hacheriez V;COND;PL;2;LGSPEC1 hacher hachions V;IPFV;IND;PL;1;PST;LGSPEC1 hacher hacherois V;COND;SG;1;LGSPEC1 hacher hache V;IND;SG;3;PRS hacher hachons V;IMP;PL;1 hacher hacheront V;IND;PL;3;FUT hacher hachent V;IND;PL;3;PRS hacher hacherions V;COND;PL;1;LGSPEC1 hacher hacherons V;IND;PL;1;FUT hacher hachassiez V;IPFV;SBJV;PL;2;PST hacher hachoys V;IPFV;IND;SG;1;PST;LGSPEC2 hacher hacheroit V;COND;SG;3;LGSPEC1 hacher haches V;SBJV;SG;2;PRS hacher hachasses V;IPFV;SBJV;SG;2;PST hacher hacher V;NFIN hacher hachyons V;IPFV;IND;PL;1;PST;LGSPEC2 hacher hacherois V;COND;SG;2;LGSPEC1 hacher hachois V;IPFV;IND;SG;1;PST;LGSPEC1 hacher hacherez V;IND;PL;2;FUT hacher hacheroyent V;COND;PL;3;LGSPEC2 hacher hachasse V;IPFV;SBJV;SG;1;PST hacher hachas V;PFV;IND;SG;2;PST hacher hachez V;IMP;PL;2 hacher hacha V;PFV;IND;SG;3;PST hacher hacha V;PFV;IND;SG;1;PST hacher hachassent V;IPFV;SBJV;PL;3;PST hacher hachoit V;IPFV;IND;SG;3;PST;LGSPEC1 hacher hacheroys V;COND;SG;2;LGSPEC2 subiuger subiugeroyent V;COND;PL;3;LGSPEC2 subiuger subiuge V;SBJV;SG;1;PRS subiuger subiugeons V;IND;PL;1;PRS subiuger subiugea V;PFV;IND;SG;1;PST subiuger subiugent V;SBJV;PL;3;PRS subiuger subiugez V;SBJV;PL;2;PRS subiuger subiugeasse V;IPFV;SBJV;SG;1;PST subiuger subiugerons V;IND;PL;1;FUT subiuger subiuges V;SBJV;SG;2;PRS subiuger subiugerai V;IND;SG;1;FUT;LGSPEC1 subiuger subiugeryons V;COND;PL;1;LGSPEC2 subiuger subiugeasmes V;PFV;IND;PL;1;PST subiuger subiugeoys V;IPFV;IND;SG;2;PST;LGSPEC2 subiuger subiugerent V;PFV;IND;PL;3;PST subiuger subiugeastes V;PFV;IND;PL;2;PST subiuger subiugeoys V;IPFV;IND;SG;1;PST;LGSPEC2 subiuger subiugent V;IND;PL;3;PRS subiuger subiuge V;SBJV;SG;3;PRS subiuger subiugeoient V;IPFV;IND;PL;3;PST;LGSPEC1 subiuger subiugiez V;IPFV;IND;PL;2;PST;LGSPEC1 subiuger subiugera V;IND;SG;3;FUT subiuger subiugeroys V;COND;SG;1;LGSPEC2 subiuger subiugeroient V;COND;PL;3;LGSPEC1 subiuger subiugerions V;COND;PL;1;LGSPEC1 subiuger subiuges V;IND;SG;2;PRS subiuger subiugeroit V;COND;SG;3;LGSPEC1 subiuger subiugeoyent V;IPFV;IND;PL;3;PST;LGSPEC2 subiuger subiugeassiez V;IPFV;SBJV;PL;2;PST subiuger subiugeoyt V;IPFV;IND;SG;3;PST;LGSPEC2 subiuger subiugeons V;SBJV;PL;1;PRS subiuger subiugez V;IND;PL;2;PRS subiuger subiugeassions V;IPFV;SBJV;PL;1;PST subiuger subiugerez V;IND;PL;2;FUT subiuger subiuger V;NFIN subiuger subiugea V;PFV;IND;SG;3;PST subiuger subiugeassent V;IPFV;SBJV;PL;3;PST subiuger subiugeasses V;IPFV;SBJV;SG;2;PST subiuger subiugeas V;PFV;IND;SG;2;PST subiuger subiugeast V;IPFV;SBJV;SG;3;PST subiuger subiugyez V;IPFV;IND;PL;2;PST;LGSPEC2 subiuger subiugerois V;COND;SG;1;LGSPEC1 subiuger subiugeriez V;COND;PL;2;LGSPEC1 subiuger subiugeroyt V;COND;SG;3;LGSPEC2 subiuger subiugeois V;IPFV;IND;SG;2;PST;LGSPEC1 subiuger subiugeroys V;COND;SG;2;LGSPEC2 subiuger subiugeras V;IND;SG;2;FUT subiuger subiugeray V;IND;SG;1;FUT;LGSPEC2 subiuger subiugeryez V;COND;PL;2;LGSPEC2 subiuger subiugeront V;IND;PL;3;FUT subiuger subiugions V;IPFV;IND;PL;1;PST;LGSPEC1 subiuger subiugez V;IMP;PL;2 subiuger subiugerois V;COND;SG;2;LGSPEC1 subiuger subiugyons V;IPFV;IND;PL;1;PST;LGSPEC2 subiuger subiugeois V;IPFV;IND;SG;1;PST;LGSPEC1 subiuger subiuge V;IND;SG;1;PRS subiuger subiuge V;IMP;SG;2 subiuger subiugeoit V;IPFV;IND;SG;3;PST;LGSPEC1 subiuger subiuge V;IND;SG;3;PRS subiuger subiugeons V;IMP;PL;1 empoizonner empoizonneroys V;COND;SG;1;LGSPEC2 empoizonner empoizonnastes V;PFV;IND;PL;2;PST empoizonner empoizonnassions V;IPFV;SBJV;PL;1;PST empoizonner empoizonnerent V;PFV;IND;PL;3;PST empoizonner empoizonnez V;IND;PL;2;PRS empoizonner empoizonnera V;IND;SG;3;FUT empoizonner empoizonnois V;IPFV;IND;SG;2;PST;LGSPEC1 empoizonner empoizonnois V;IPFV;IND;SG;1;PST;LGSPEC1 empoizonner empoizonnes V;IND;SG;2;PRS empoizonner empoizonnerois V;COND;SG;1;LGSPEC1 empoizonner empoizonneroyt V;COND;SG;3;LGSPEC2 empoizonner empoizonneriez V;COND;PL;2;LGSPEC1 empoizonner empoizonnent V;IND;PL;3;PRS empoizonner empoizonnerai V;IND;SG;1;FUT;LGSPEC1 empoizonner empoizonneryez V;COND;PL;2;LGSPEC2 empoizonner empoizonnas V;PFV;IND;SG;2;PST empoizonner empoizonnassent V;IPFV;SBJV;PL;3;PST empoizonner empoizonnes V;SBJV;SG;2;PRS empoizonner empoizonnoys V;IPFV;IND;SG;2;PST;LGSPEC2 empoizonner empoizonneroit V;COND;SG;3;LGSPEC1 empoizonner empoizonna V;PFV;IND;SG;1;PST empoizonner empoizonneroyent V;COND;PL;3;LGSPEC2 empoizonner empoizonnyons V;IPFV;IND;PL;1;PST;LGSPEC2 empoizonner empoizonnoit V;IPFV;IND;SG;3;PST;LGSPEC1 empoizonner empoizonne V;SBJV;SG;1;PRS empoizonner empoizonner V;NFIN empoizonner empoizonnasmes V;PFV;IND;PL;1;PST empoizonner empoizonnons V;IND;PL;1;PRS empoizonner empoizonnez V;SBJV;PL;2;PRS empoizonner empoizonneroys V;COND;SG;2;LGSPEC2 empoizonner empoizonnerois V;COND;SG;2;LGSPEC1 empoizonner empoizonnons V;IMP;PL;1 empoizonner empoizonnions V;IPFV;IND;PL;1;PST;LGSPEC1 empoizonner empoizonneroient V;COND;PL;3;LGSPEC1 empoizonner empoizonneront V;IND;PL;3;FUT empoizonner empoizonnyez V;IPFV;IND;PL;2;PST;LGSPEC2 empoizonner empoizonnast V;IPFV;SBJV;SG;3;PST empoizonner empoizonneryons V;COND;PL;1;LGSPEC2 empoizonner empoizonna V;PFV;IND;SG;3;PST empoizonner empoizonnoyt V;IPFV;IND;SG;3;PST;LGSPEC2 empoizonner empoizonneras V;IND;SG;2;FUT empoizonner empoizonne V;IMP;SG;2 empoizonner empoizonnasse V;IPFV;SBJV;SG;1;PST empoizonner empoizonnasses V;IPFV;SBJV;SG;2;PST empoizonner empoizonneray V;IND;SG;1;FUT;LGSPEC2 empoizonner empoizonne V;IND;SG;1;PRS empoizonner empoizonnassiez V;IPFV;SBJV;PL;2;PST empoizonner empoizonne V;SBJV;SG;3;PRS empoizonner empoizonnons V;SBJV;PL;1;PRS empoizonner empoizonnez V;IMP;PL;2 empoizonner empoizonnoyent V;IPFV;IND;PL;3;PST;LGSPEC2 empoizonner empoizonnerions V;COND;PL;1;LGSPEC1 empoizonner empoizonnoys V;IPFV;IND;SG;1;PST;LGSPEC2 empoizonner empoizonne V;IND;SG;3;PRS empoizonner empoizonnoient V;IPFV;IND;PL;3;PST;LGSPEC1 empoizonner empoizonnent V;SBJV;PL;3;PRS empoizonner empoizonniez V;IPFV;IND;PL;2;PST;LGSPEC1 empoizonner empoizonnerons V;IND;PL;1;FUT empoizonner empoizonnerez V;IND;PL;2;FUT accepter acceptes V;IND;SG;2;PRS accepter acceptois V;IPFV;IND;SG;1;PST;LGSPEC1 accepter acceptoyent V;IPFV;IND;PL;3;PST;LGSPEC2 accepter accepterions V;COND;PL;1;LGSPEC1 accepter accepterent V;PFV;IND;PL;3;PST accepter acceptiez V;IPFV;IND;PL;2;PST;LGSPEC1 accepter acceptez V;IMP;PL;2 accepter accepteroyt V;COND;SG;3;LGSPEC2 accepter acceptoyt V;IPFV;IND;SG;3;PST;LGSPEC2 accepter accepterai V;IND;SG;1;FUT;LGSPEC1 accepter accepteryons V;COND;PL;1;LGSPEC2 accepter acceptas V;PFV;IND;SG;2;PST accepter acceptassent V;IPFV;SBJV;PL;3;PST accepter accepteras V;IND;SG;2;FUT accepter acceptasse V;IPFV;SBJV;SG;1;PST accepter accepteroient V;COND;PL;3;LGSPEC1 accepter accepteriez V;COND;PL;2;LGSPEC1 accepter acceptez V;IND;PL;2;PRS accepter accepte V;IND;SG;3;PRS accepter accepteray V;IND;SG;1;FUT;LGSPEC2 accepter acceptes V;SBJV;SG;2;PRS accepter acceptast V;IPFV;SBJV;SG;3;PST accepter acceptoys V;IPFV;IND;SG;1;PST;LGSPEC2 accepter acceptons V;SBJV;PL;1;PRS accepter accepta V;PFV;IND;SG;3;PST accepter accepteront V;IND;PL;3;FUT accepter acceptons V;IMP;PL;1 accepter accepteroys V;COND;SG;1;LGSPEC2 accepter acceptyez V;IPFV;IND;PL;2;PST;LGSPEC2 accepter acceptoys V;IPFV;IND;SG;2;PST;LGSPEC2 accepter accepter V;NFIN accepter acceptasses V;IPFV;SBJV;SG;2;PST accepter acceptera V;IND;SG;3;FUT accepter acceptions V;IPFV;IND;PL;1;PST;LGSPEC1 accepter acceptastes V;PFV;IND;PL;2;PST accepter accepte V;SBJV;SG;1;PRS accepter acceptent V;IND;PL;3;PRS accepter accepterois V;COND;SG;2;LGSPEC1 accepter accepte V;IMP;SG;2 accepter acceptoit V;IPFV;IND;SG;3;PST;LGSPEC1 accepter accepteroys V;COND;SG;2;LGSPEC2 accepter acceptez V;SBJV;PL;2;PRS accepter acceptasmes V;PFV;IND;PL;1;PST accepter accepterois V;COND;SG;1;LGSPEC1 accepter accepteryez V;COND;PL;2;LGSPEC2 accepter acceptassions V;IPFV;SBJV;PL;1;PST accepter accepta V;PFV;IND;SG;1;PST accepter acceptyons V;IPFV;IND;PL;1;PST;LGSPEC2 accepter acceptent V;SBJV;PL;3;PRS accepter acceptons V;IND;PL;1;PRS accepter acceptois V;IPFV;IND;SG;2;PST;LGSPEC1 accepter accepteroyent V;COND;PL;3;LGSPEC2 accepter accepte V;SBJV;SG;3;PRS accepter accepterez V;IND;PL;2;FUT accepter accepterons V;IND;PL;1;FUT accepter accepte V;IND;SG;1;PRS accepter accepteroit V;COND;SG;3;LGSPEC1 accepter acceptassiez V;IPFV;SBJV;PL;2;PST accepter acceptoient V;IPFV;IND;PL;3;PST;LGSPEC1 espoventer espoventons V;SBJV;PL;1;PRS espoventer espoventoient V;IPFV;IND;PL;3;PST;LGSPEC1 espoventer espoventerez V;IND;PL;2;FUT espoventer espoventes V;IND;SG;2;PRS espoventer espoventez V;IND;PL;2;PRS espoventer espoventoys V;IPFV;IND;SG;1;PST;LGSPEC2 espoventer espovente V;SBJV;SG;3;PRS espoventer espoventent V;SBJV;PL;3;PRS espoventer espoventons V;IMP;PL;1 espoventer espoventer V;NFIN espoventer espoventastes V;PFV;IND;PL;2;PST espoventer espoventeryons V;COND;PL;1;LGSPEC2 espoventer espoventoyt V;IPFV;IND;SG;3;PST;LGSPEC2 espoventer espoventeroyt V;COND;SG;3;LGSPEC2 espoventer espoventa V;PFV;IND;SG;3;PST espoventer espoventeroyent V;COND;PL;3;LGSPEC2 espoventer espoventerent V;PFV;IND;PL;3;PST espoventer espoventez V;SBJV;PL;2;PRS espoventer espoventyez V;IPFV;IND;PL;2;PST;LGSPEC2 espoventer espoventyons V;IPFV;IND;PL;1;PST;LGSPEC2 espoventer espoventeroys V;COND;SG;2;LGSPEC2 espoventer espoventons V;IND;PL;1;PRS espoventer espovente V;IND;SG;3;PRS espoventer espoventasse V;IPFV;SBJV;SG;1;PST espoventer espoventeray V;IND;SG;1;FUT;LGSPEC2 espoventer espoventoit V;IPFV;IND;SG;3;PST;LGSPEC1 espoventer espoventerai V;IND;SG;1;FUT;LGSPEC1 espoventer espovente V;SBJV;SG;1;PRS espoventer espovente V;IMP;SG;2 espoventer espoventeras V;IND;SG;2;FUT espoventer espoventerois V;COND;SG;2;LGSPEC1 espoventer espoventeroient V;COND;PL;3;LGSPEC1 espoventer espoventasmes V;PFV;IND;PL;1;PST espoventer espoventassiez V;IPFV;SBJV;PL;2;PST espoventer espoventerions V;COND;PL;1;LGSPEC1 espoventer espovente V;IND;SG;1;PRS espoventer espoventas V;PFV;IND;SG;2;PST espoventer espoventa V;PFV;IND;SG;1;PST espoventer espoventez V;IMP;PL;2 espoventer espoventoyent V;IPFV;IND;PL;3;PST;LGSPEC2 espoventer espoventoys V;IPFV;IND;SG;2;PST;LGSPEC2 espoventer espoventeroit V;COND;SG;3;LGSPEC1 espoventer espoventassent V;IPFV;SBJV;PL;3;PST espoventer espoventast V;IPFV;SBJV;SG;3;PST espoventer espoventeroys V;COND;SG;1;LGSPEC2 espoventer espoventent V;IND;PL;3;PRS espoventer espoventiez V;IPFV;IND;PL;2;PST;LGSPEC1 espoventer espoventeront V;IND;PL;3;FUT espoventer espoventois V;IPFV;IND;SG;2;PST;LGSPEC1 espoventer espoventes V;SBJV;SG;2;PRS espoventer espoventerois V;COND;SG;1;LGSPEC1 espoventer espoventera V;IND;SG;3;FUT espoventer espoventeryez V;COND;PL;2;LGSPEC2 espoventer espoventerons V;IND;PL;1;FUT espoventer espoventions V;IPFV;IND;PL;1;PST;LGSPEC1 espoventer espoventeriez V;COND;PL;2;LGSPEC1 espoventer espoventasses V;IPFV;SBJV;SG;2;PST espoventer espoventois V;IPFV;IND;SG;1;PST;LGSPEC1 espoventer espoventassions V;IPFV;SBJV;PL;1;PST declairer declairasse V;IPFV;SBJV;SG;1;PST declairer declaireroys V;COND;SG;2;LGSPEC2 declairer declaires V;SBJV;SG;2;PRS declairer declairois V;IPFV;IND;SG;1;PST;LGSPEC1 declairer declaira V;PFV;IND;SG;3;PST declairer declairent V;IND;PL;3;PRS declairer declairois V;IPFV;IND;SG;2;PST;LGSPEC1 declairer declaireras V;IND;SG;2;FUT declairer declairons V;IMP;PL;1 declairer declaireroys V;COND;SG;1;LGSPEC2 declairer declairassions V;IPFV;SBJV;PL;1;PST declairer declairastes V;PFV;IND;PL;2;PST declairer declairerions V;COND;PL;1;LGSPEC1 declairer declairasses V;IPFV;SBJV;SG;2;PST declairer declairast V;IPFV;SBJV;SG;3;PST declairer declairerent V;PFV;IND;PL;3;PST declairer declaireray V;IND;SG;1;FUT;LGSPEC2 declairer declairent V;SBJV;PL;3;PRS declairer declairerai V;IND;SG;1;FUT;LGSPEC1 declairer declairiez V;IPFV;IND;PL;2;PST;LGSPEC1 declairer declaire V;IND;SG;3;PRS declairer declaireryez V;COND;PL;2;LGSPEC2 declairer declairyons V;IPFV;IND;PL;1;PST;LGSPEC2 declairer declairoys V;IPFV;IND;SG;2;PST;LGSPEC2 declairer declairerons V;IND;PL;1;FUT declairer declairoit V;IPFV;IND;SG;3;PST;LGSPEC1 declairer declairer V;NFIN declairer declairera V;IND;SG;3;FUT declairer declaireriez V;COND;PL;2;LGSPEC1 declairer declairez V;SBJV;PL;2;PRS declairer declaireryons V;COND;PL;1;LGSPEC2 declairer declairez V;IMP;PL;2 declairer declaires V;IND;SG;2;PRS declairer declaireroient V;COND;PL;3;LGSPEC1 declairer declairons V;SBJV;PL;1;PRS declairer declairoyent V;IPFV;IND;PL;3;PST;LGSPEC2 declairer declairez V;IND;PL;2;PRS declairer declaireroit V;COND;SG;3;LGSPEC1 declairer declairyez V;IPFV;IND;PL;2;PST;LGSPEC2 declairer declairerois V;COND;SG;1;LGSPEC1 declairer declaira V;PFV;IND;SG;1;PST declairer declaire V;SBJV;SG;1;PRS declairer declairoys V;IPFV;IND;SG;1;PST;LGSPEC2 declairer declaireroyent V;COND;PL;3;LGSPEC2 declairer declairas V;PFV;IND;SG;2;PST declairer declairassent V;IPFV;SBJV;PL;3;PST declairer declaireroyt V;COND;SG;3;LGSPEC2 declairer declairerois V;COND;SG;2;LGSPEC1 declairer declairoient V;IPFV;IND;PL;3;PST;LGSPEC1 declairer declairoyt V;IPFV;IND;SG;3;PST;LGSPEC2 declairer declairons V;IND;PL;1;PRS declairer declairasmes V;PFV;IND;PL;1;PST declairer declaire V;SBJV;SG;3;PRS declairer declairerez V;IND;PL;2;FUT declairer declairassiez V;IPFV;SBJV;PL;2;PST declairer declaire V;IMP;SG;2 declairer declairions V;IPFV;IND;PL;1;PST;LGSPEC1 declairer declaire V;IND;SG;1;PRS declairer declaireront V;IND;PL;3;FUT quitter quittons V;IND;PL;1;PRS quitter quittez V;SBJV;PL;2;PRS quitter quittois V;IPFV;IND;SG;1;PST;LGSPEC1 quitter quittoit V;IPFV;IND;SG;3;PST;LGSPEC1 quitter quittasmes V;PFV;IND;PL;1;PST quitter quittois V;IPFV;IND;SG;2;PST;LGSPEC1 quitter quitteroys V;COND;SG;2;LGSPEC2 quitter quittyez V;IPFV;IND;PL;2;PST;LGSPEC2 quitter quitteroient V;COND;PL;3;LGSPEC1 quitter quittoyent V;IPFV;IND;PL;3;PST;LGSPEC2 quitter quitta V;PFV;IND;SG;1;PST quitter quitterai V;IND;SG;1;FUT;LGSPEC1 quitter quitter V;NFIN quitter quitterez V;IND;PL;2;FUT quitter quittent V;IND;PL;3;PRS quitter quitteroyent V;COND;PL;3;LGSPEC2 quitter quitteryons V;COND;PL;1;LGSPEC2 quitter quittassiez V;IPFV;SBJV;PL;2;PST quitter quittasse V;IPFV;SBJV;SG;1;PST quitter quittassions V;IPFV;SBJV;PL;1;PST quitter quittons V;IMP;PL;1 quitter quitteray V;IND;SG;1;FUT;LGSPEC2 quitter quitteront V;IND;PL;3;FUT quitter quitte V;IND;SG;3;PRS quitter quittes V;IND;SG;2;PRS quitter quittyons V;IPFV;IND;PL;1;PST;LGSPEC2 quitter quitteryez V;COND;PL;2;LGSPEC2 quitter quittoys V;IPFV;IND;SG;1;PST;LGSPEC2 quitter quitterons V;IND;PL;1;FUT quitter quitterent V;PFV;IND;PL;3;PST quitter quittas V;PFV;IND;SG;2;PST quitter quitterois V;COND;SG;1;LGSPEC1 quitter quitteroit V;COND;SG;3;LGSPEC1 quitter quitterions V;COND;PL;1;LGSPEC1 quitter quittassent V;IPFV;SBJV;PL;3;PST quitter quittiez V;IPFV;IND;PL;2;PST;LGSPEC1 quitter quitterois V;COND;SG;2;LGSPEC1 quitter quittions V;IPFV;IND;PL;1;PST;LGSPEC1 quitter quittera V;IND;SG;3;FUT quitter quitte V;SBJV;SG;3;PRS quitter quittez V;IMP;PL;2 quitter quitteroyt V;COND;SG;3;LGSPEC2 quitter quittast V;IPFV;SBJV;SG;3;PST quitter quitta V;PFV;IND;SG;3;PST quitter quittez V;IND;PL;2;PRS quitter quittoient V;IPFV;IND;PL;3;PST;LGSPEC1 quitter quitte V;SBJV;SG;1;PRS quitter quittent V;SBJV;PL;3;PRS quitter quitteroys V;COND;SG;1;LGSPEC2 quitter quittoys V;IPFV;IND;SG;2;PST;LGSPEC2 quitter quitteriez V;COND;PL;2;LGSPEC1 quitter quitte V;IMP;SG;2 quitter quittasses V;IPFV;SBJV;SG;2;PST quitter quittes V;SBJV;SG;2;PRS quitter quittastes V;PFV;IND;PL;2;PST quitter quitteras V;IND;SG;2;FUT quitter quitte V;IND;SG;1;PRS quitter quittons V;SBJV;PL;1;PRS quitter quittoyt V;IPFV;IND;SG;3;PST;LGSPEC2 entredemander s'entredemanderent V;PFV;IND;PL;3;PST entredemander vous entredemandez V;IND;PL;2;PRS entredemander entredemander V;NFIN entredemander nousentredemanderions V;COND;PL;1;LGSPEC1 entredemander nous entredemandassions V;IPFV;SBJV;PL;1;PST entredemander entredemandyons V;IPFV;IND;PL;1;PST;LGSPEC2 entredemander entredemandoyent V;IPFV;IND;PL;3;PST;LGSPEC2 entredemander vous entredemandastes V;PFV;IND;PL;2;PST entredemander entredemandez vous V;IMP;PL;2 entredemander s'entredemandent V;IND;PL;3;PRS entredemander vousentredemanderiez V;COND;PL;2;LGSPEC1 entredemander vous entredemandassiez V;IPFV;SBJV;PL;2;PST entredemander s'entredemandassent V;IPFV;SBJV;PL;3;PST entredemander nous entredemandons V;SBJV;PL;1;PRS entredemander s'entredemanderont V;IND;PL;3;FUT entredemander nous entredemandons V;IND;PL;1;PRS entredemander entredemandyez V;IPFV;IND;PL;2;PST;LGSPEC2 entredemander nous entredemanderons V;IND;PL;1;FUT entredemander s'entredemandent V;SBJV;PL;3;PRS entredemander entredemanderyons V;COND;PL;1;LGSPEC2 entredemander nous entredemandasmes V;PFV;IND;PL;1;PST entredemander nousentredemandions V;IPFV;IND;PL;1;PST;LGSPEC1 entredemander vousentredemandiez V;IPFV;IND;PL;2;PST;LGSPEC1 entredemander s'entredemanderoient V;COND;PL;3;LGSPEC1 entredemander entredemanderyez V;COND;PL;2;LGSPEC2 entredemander vous entredemandez V;SBJV;PL;2;PRS entredemander vous entredemanderez V;IND;PL;2;FUT entredemander entredemanderoyent V;COND;PL;3;LGSPEC2 entredemander s'entredemandoient V;IPFV;IND;PL;3;PST;LGSPEC1 entredemander entredemandons nous V;IMP;PL;1 huer hue V;SBJV;SG;1;PRS huer huerois V;COND;SG;1;LGSPEC1 huer huoyt V;IPFV;IND;SG;3;PST;LGSPEC2 huer huoient V;IPFV;IND;PL;3;PST;LGSPEC1 huer huent V;SBJV;PL;3;PRS huer huions V;IPFV;IND;PL;1;PST;LGSPEC1 huer huasse V;IPFV;SBJV;SG;1;PST huer huez V;IMP;PL;2 huer huast V;IPFV;SBJV;SG;3;PST huer huoys V;IPFV;IND;SG;1;PST;LGSPEC2 huer hueront V;IND;PL;3;FUT huer hues V;IND;SG;2;PRS huer huois V;IPFV;IND;SG;1;PST;LGSPEC1 huer huas V;PFV;IND;SG;2;PST huer huons V;IND;PL;1;PRS huer huons V;IMP;PL;1 huer huastes V;PFV;IND;PL;2;PST huer huyez V;IPFV;IND;PL;2;PST;LGSPEC2 huer huerai V;IND;SG;1;FUT;LGSPEC1 huer hueriez V;COND;PL;2;LGSPEC1 huer hueryez V;COND;PL;2;LGSPEC2 huer hua V;PFV;IND;SG;1;PST huer huassent V;IPFV;SBJV;PL;3;PST huer huez V;IND;PL;2;PRS huer huassiez V;IPFV;SBJV;PL;2;PST huer hueroient V;COND;PL;3;LGSPEC1 huer huyons V;IPFV;IND;PL;1;PST;LGSPEC2 huer hua V;PFV;IND;SG;3;PST huer huerions V;COND;PL;1;LGSPEC1 huer hue V;IND;SG;1;PRS huer huerent V;PFV;IND;PL;3;PST huer huerois V;COND;SG;2;LGSPEC1 huer huerons V;IND;PL;1;FUT huer hue V;SBJV;SG;3;PRS huer huassions V;IPFV;SBJV;PL;1;PST huer hueras V;IND;SG;2;FUT huer hueryons V;COND;PL;1;LGSPEC2 huer hueroyt V;COND;SG;3;LGSPEC2 huer hue V;IND;SG;3;PRS huer hue V;IMP;SG;2 huer hueroit V;COND;SG;3;LGSPEC1 huer huer V;NFIN huer hueroys V;COND;SG;1;LGSPEC2 huer hueray V;IND;SG;1;FUT;LGSPEC2 huer hueroys V;COND;SG;2;LGSPEC2 huer hueroyent V;COND;PL;3;LGSPEC2 huer huois V;IPFV;IND;SG;2;PST;LGSPEC1 huer huoit V;IPFV;IND;SG;3;PST;LGSPEC1 huer huasses V;IPFV;SBJV;SG;2;PST huer huoyent V;IPFV;IND;PL;3;PST;LGSPEC2 huer huoys V;IPFV;IND;SG;2;PST;LGSPEC2 huer huera V;IND;SG;3;FUT huer huez V;SBJV;PL;2;PRS huer huiez V;IPFV;IND;PL;2;PST;LGSPEC1 huer huerez V;IND;PL;2;FUT huer hues V;SBJV;SG;2;PRS huer huasmes V;PFV;IND;PL;1;PST huer huent V;IND;PL;3;PRS huer huons V;SBJV;PL;1;PRS escrier escrierent V;PFV;IND;PL;3;PST escrier escrieront V;IND;PL;3;FUT escrier escrieroys V;COND;SG;1;LGSPEC2 escrier escries V;IND;SG;2;PRS escrier escrie V;IMP;SG;2 escrier escrierois V;COND;SG;1;LGSPEC1 escrier escrieroyt V;COND;SG;3;LGSPEC2 escrier escrieras V;IND;SG;2;FUT escrier escrieroit V;COND;SG;3;LGSPEC1 escrier escrie V;SBJV;SG;1;PRS escrier escrions V;SBJV;PL;1;PRS escrier escrient V;IND;PL;3;PRS escrier escrioys V;IPFV;IND;SG;2;PST;LGSPEC2 escrier escrieroyent V;COND;PL;3;LGSPEC2 escrier escriez V;SBJV;PL;2;PRS escrier escrierons V;IND;PL;1;FUT escrier escrions V;IMP;PL;1 escrier escrie V;IND;SG;3;PRS escrier escrieroys V;COND;SG;2;LGSPEC2 escrier escria V;PFV;IND;SG;3;PST escrier escrieray V;IND;SG;1;FUT;LGSPEC2 escrier escriions V;IPFV;IND;PL;1;PST;LGSPEC1 escrier escrioyt V;IPFV;IND;SG;3;PST;LGSPEC2 escrier escrions V;IND;PL;1;PRS escrier escriez V;IMP;PL;2 escrier escriasmes V;PFV;IND;PL;1;PST escrier escrierois V;COND;SG;2;LGSPEC1 escrier escrieryons V;COND;PL;1;LGSPEC2 escrier escries V;SBJV;SG;2;PRS escrier escrioyent V;IPFV;IND;PL;3;PST;LGSPEC2 escrier escriassiez V;IPFV;SBJV;PL;2;PST escrier escriyez V;IPFV;IND;PL;2;PST;LGSPEC2 escrier escriiez V;IPFV;IND;PL;2;PST;LGSPEC1 escrier escriasse V;IPFV;SBJV;SG;1;PST escrier escriassent V;IPFV;SBJV;PL;3;PST escrier escrioys V;IPFV;IND;SG;1;PST;LGSPEC2 escrier escria V;PFV;IND;SG;1;PST escrier escrie V;SBJV;SG;3;PRS escrier escriyons V;IPFV;IND;PL;1;PST;LGSPEC2 escrier escrioit V;IPFV;IND;SG;3;PST;LGSPEC1 escrier escrient V;SBJV;PL;3;PRS escrier escriastes V;PFV;IND;PL;2;PST escrier escrier V;NFIN escrier escrieroient V;COND;PL;3;LGSPEC1 escrier escriois V;IPFV;IND;SG;2;PST;LGSPEC1 escrier escriois V;IPFV;IND;SG;1;PST;LGSPEC1 escrier escrias V;PFV;IND;SG;2;PST escrier escrieryez V;COND;PL;2;LGSPEC2 escrier escriera V;IND;SG;3;FUT escrier escrieriez V;COND;PL;2;LGSPEC1 escrier escrie V;IND;SG;1;PRS escrier escrierez V;IND;PL;2;FUT escrier escriast V;IPFV;SBJV;SG;3;PST escrier escrierai V;IND;SG;1;FUT;LGSPEC1 escrier escriassions V;IPFV;SBJV;PL;1;PST escrier escrierions V;COND;PL;1;LGSPEC1 escrier escriasses V;IPFV;SBJV;SG;2;PST escrier escrioient V;IPFV;IND;PL;3;PST;LGSPEC1 escrier escriez V;IND;PL;2;PRS operer opererai V;IND;SG;1;FUT;LGSPEC1 operer opere V;IND;SG;3;PRS operer operasmes V;PFV;IND;PL;1;PST operer operions V;IPFV;IND;PL;1;PST;LGSPEC1 operer operasses V;IPFV;SBJV;SG;2;PST operer opererons V;IND;PL;1;FUT operer operiez V;IPFV;IND;PL;2;PST;LGSPEC1 operer opererez V;IND;PL;2;FUT operer opereryons V;COND;PL;1;LGSPEC2 operer opere V;IND;SG;1;PRS operer opere V;IMP;SG;2 operer opereroys V;COND;SG;1;LGSPEC2 operer opererent V;PFV;IND;PL;3;PST operer opererois V;COND;SG;1;LGSPEC1 operer operoys V;IPFV;IND;SG;2;PST;LGSPEC2 operer operyons V;IPFV;IND;PL;1;PST;LGSPEC2 operer operez V;IMP;PL;2 operer opereroys V;COND;SG;2;LGSPEC2 operer operois V;IPFV;IND;SG;1;PST;LGSPEC1 operer opereroient V;COND;PL;3;LGSPEC1 operer opereras V;IND;SG;2;FUT operer operons V;IMP;PL;1 operer opereront V;IND;PL;3;FUT operer opere V;SBJV;SG;3;PRS operer operassiez V;IPFV;SBJV;PL;2;PST operer operoys V;IPFV;IND;SG;1;PST;LGSPEC2 operer operoit V;IPFV;IND;SG;3;PST;LGSPEC1 operer opere V;SBJV;SG;1;PRS operer operassions V;IPFV;SBJV;PL;1;PST operer operes V;IND;SG;2;PRS operer opereryez V;COND;PL;2;LGSPEC2 operer operez V;IND;PL;2;PRS operer opereray V;IND;SG;1;FUT;LGSPEC2 operer opererions V;COND;PL;1;LGSPEC1 operer opererois V;COND;SG;2;LGSPEC1 operer operons V;IND;PL;1;PRS operer operes V;SBJV;SG;2;PRS operer operast V;IPFV;SBJV;SG;3;PST operer opereriez V;COND;PL;2;LGSPEC1 operer opera V;PFV;IND;SG;3;PST operer opereroyt V;COND;SG;3;LGSPEC2 operer operoyent V;IPFV;IND;PL;3;PST;LGSPEC2 operer opereroit V;COND;SG;3;LGSPEC1 operer operent V;SBJV;PL;3;PRS operer operassent V;IPFV;SBJV;PL;3;PST operer operyez V;IPFV;IND;PL;2;PST;LGSPEC2 operer operez V;SBJV;PL;2;PRS operer opereroyent V;COND;PL;3;LGSPEC2 operer operera V;IND;SG;3;FUT operer operois V;IPFV;IND;SG;2;PST;LGSPEC1 operer operons V;SBJV;PL;1;PRS operer operasse V;IPFV;SBJV;SG;1;PST operer operoyt V;IPFV;IND;SG;3;PST;LGSPEC2 operer operas V;PFV;IND;SG;2;PST operer opera V;PFV;IND;SG;1;PST operer operer V;NFIN operer operastes V;PFV;IND;PL;2;PST operer operoient V;IPFV;IND;PL;3;PST;LGSPEC1 operer operent V;IND;PL;3;PRS ralier ralierois V;COND;SG;1;LGSPEC1 ralier ralie V;SBJV;SG;3;PRS ralier ralioyt V;IPFV;IND;SG;3;PST;LGSPEC2 ralier raliois V;IPFV;IND;SG;2;PST;LGSPEC1 ralier ralioys V;IPFV;IND;SG;2;PST;LGSPEC2 ralier raliasse V;IPFV;SBJV;SG;1;PST ralier ralieriez V;COND;PL;2;LGSPEC1 ralier raliera V;IND;SG;3;FUT ralier raliions V;IPFV;IND;PL;1;PST;LGSPEC1 ralier raliassiez V;IPFV;SBJV;PL;2;PST ralier ralions V;IND;PL;1;PRS ralier ralierent V;PFV;IND;PL;3;PST ralier ralions V;SBJV;PL;1;PRS ralier raliyez V;IPFV;IND;PL;2;PST;LGSPEC2 ralier ralia V;PFV;IND;SG;3;PST ralier ralies V;IND;SG;2;PRS ralier ralioient V;IPFV;IND;PL;3;PST;LGSPEC1 ralier ralie V;SBJV;SG;1;PRS ralier ralient V;IND;PL;3;PRS ralier ralie V;IND;SG;3;PRS ralier ralierons V;IND;PL;1;FUT ralier raliiez V;IPFV;IND;PL;2;PST;LGSPEC1 ralier ralia V;PFV;IND;SG;1;PST ralier raliyons V;IPFV;IND;PL;1;PST;LGSPEC2 ralier raliez V;IMP;PL;2 ralier ralierai V;IND;SG;1;FUT;LGSPEC1 ralier ralias V;PFV;IND;SG;2;PST ralier raliez V;IND;PL;2;PRS ralier ralieroys V;COND;SG;1;LGSPEC2 ralier ralieray V;IND;SG;1;FUT;LGSPEC2 ralier ralier V;NFIN ralier raliastes V;PFV;IND;PL;2;PST ralier ralieryons V;COND;PL;1;LGSPEC2 ralier raliast V;IPFV;SBJV;SG;3;PST ralier ralie V;IMP;SG;2 ralier ralieront V;IND;PL;3;FUT ralier ralieroyent V;COND;PL;3;LGSPEC2 ralier ralieroit V;COND;SG;3;LGSPEC1 ralier raliasses V;IPFV;SBJV;SG;2;PST ralier ralioys V;IPFV;IND;SG;1;PST;LGSPEC2 ralier raliassions V;IPFV;SBJV;PL;1;PST ralier raliassent V;IPFV;SBJV;PL;3;PST ralier raliez V;SBJV;PL;2;PRS ralier ralierions V;COND;PL;1;LGSPEC1 ralier ralierois V;COND;SG;2;LGSPEC1 ralier ralieroient V;COND;PL;3;LGSPEC1 ralier ralieroyt V;COND;SG;3;LGSPEC2 ralier ralions V;IMP;PL;1 ralier ralioit V;IPFV;IND;SG;3;PST;LGSPEC1 ralier raliois V;IPFV;IND;SG;1;PST;LGSPEC1 ralier ralieras V;IND;SG;2;FUT ralier ralioyent V;IPFV;IND;PL;3;PST;LGSPEC2 ralier ralierez V;IND;PL;2;FUT ralier ralies V;SBJV;SG;2;PRS ralier ralieroys V;COND;SG;2;LGSPEC2 ralier ralieryez V;COND;PL;2;LGSPEC2 ralier ralient V;SBJV;PL;3;PRS ralier raliasmes V;PFV;IND;PL;1;PST ralier ralie V;IND;SG;1;PRS espier espiera V;IND;SG;3;FUT espier espiois V;IPFV;IND;SG;1;PST;LGSPEC1 espier espies V;IND;SG;2;PRS espier espie V;IND;SG;1;PRS espier espies V;SBJV;SG;2;PRS espier espiez V;SBJV;PL;2;PRS espier espiasse V;IPFV;SBJV;SG;1;PST espier espient V;SBJV;PL;3;PRS espier espiyez V;IPFV;IND;PL;2;PST;LGSPEC2 espier espieroyt V;COND;SG;3;LGSPEC2 espier espieroys V;COND;SG;1;LGSPEC2 espier espioys V;IPFV;IND;SG;1;PST;LGSPEC2 espier espieroys V;COND;SG;2;LGSPEC2 espier espia V;PFV;IND;SG;3;PST espier espieroit V;COND;SG;3;LGSPEC1 espier espie V;SBJV;SG;1;PRS espier espiassiez V;IPFV;SBJV;PL;2;PST espier espieras V;IND;SG;2;FUT espier espieront V;IND;PL;3;FUT espier espioient V;IPFV;IND;PL;3;PST;LGSPEC1 espier espie V;IMP;SG;2 espier espiast V;IPFV;SBJV;SG;3;PST espier espierons V;IND;PL;1;FUT espier espiyons V;IPFV;IND;PL;1;PST;LGSPEC2 espier espions V;IMP;PL;1 espier espiions V;IPFV;IND;PL;1;PST;LGSPEC1 espier espioyent V;IPFV;IND;PL;3;PST;LGSPEC2 espier espiez V;IND;PL;2;PRS espier espierois V;COND;SG;1;LGSPEC1 espier espiiez V;IPFV;IND;PL;2;PST;LGSPEC1 espier espiassent V;IPFV;SBJV;PL;3;PST espier espioys V;IPFV;IND;SG;2;PST;LGSPEC2 espier espiasses V;IPFV;SBJV;SG;2;PST espier espierai V;IND;SG;1;FUT;LGSPEC1 espier espieriez V;COND;PL;2;LGSPEC1 espier espierez V;IND;PL;2;FUT espier espiasmes V;PFV;IND;PL;1;PST espier espient V;IND;PL;3;PRS espier espierions V;COND;PL;1;LGSPEC1 espier espieryons V;COND;PL;1;LGSPEC2 espier espierent V;PFV;IND;PL;3;PST espier espieryez V;COND;PL;2;LGSPEC2 espier espions V;SBJV;PL;1;PRS espier espieroient V;COND;PL;3;LGSPEC1 espier espions V;IND;PL;1;PRS espier espie V;SBJV;SG;3;PRS espier espier V;NFIN espier espiassions V;IPFV;SBJV;PL;1;PST espier espiez V;IMP;PL;2 espier espieroyent V;COND;PL;3;LGSPEC2 espier espioyt V;IPFV;IND;SG;3;PST;LGSPEC2 espier espierois V;COND;SG;2;LGSPEC1 espier espieray V;IND;SG;1;FUT;LGSPEC2 espier espias V;PFV;IND;SG;2;PST espier espia V;PFV;IND;SG;1;PST espier espiois V;IPFV;IND;SG;2;PST;LGSPEC1 espier espiastes V;PFV;IND;PL;2;PST espier espie V;IND;SG;3;PRS espier espioit V;IPFV;IND;SG;3;PST;LGSPEC1 aler va V;IMP;SG;2 aler alois V;IPFV;IND;SG;1;PST aler alons V;IND;PL;1;PRS aler iroye V;IND;SG;1;FUT;LGSPEC1 aler alons V;IMP;PL;1 aler aliez V;IPFV;IND;PL;2;PST aler yrois V;COND;SG;1;LGSPEC2 aler alerent V;PFV;IND;PL;3;PST aler alions V;SBJV;PL;1;PRS aler yront V;IND;PL;3;FUT;LGSPEC2 aler irons V;IND;PL;1;FUT;LGSPEC1 aler alasse V;IPFV;SBJV;SG;1;PST aler alassent V;IPFV;SBJV;PL;3;PST aler yriez V;COND;PL;2;LGSPEC2 aler alions V;IPFV;IND;PL;1;PST aler aillent V;SBJV;PL;3;PRS aler ailles V;SBJV;SG;2;PRS aler alasmes V;PFV;IND;PL;1;PST aler yrons V;IND;PL;1;FUT;LGSPEC2 aler aler V;NFIN aler alez V;IND;PL;2;PRS aler aliez V;SBJV;PL;2;PRS aler aloit V;IPFV;IND;SG;3;PST aler yroient V;COND;PL;3;LGSPEC2 aler iroit V;COND;SG;3;LGSPEC1 aler aloient V;IPFV;IND;PL;3;PST aler alasses V;IPFV;SBJV;SG;2;PST aler yrions V;COND;PL;1;LGSPEC2 aler alai V;PFV;IND;SG;1;PST aler irez V;IND;PL;2;FUT;LGSPEC1 aler iras V;IND;SG;2;FUT;LGSPEC1 aler vont V;IND;PL;3;PRS aler yras V;IND;SG;2;FUT;LGSPEC2 aler alastes V;PFV;IND;PL;2;PST aler alois V;IPFV;IND;SG;2;PST aler aille V;SBJV;SG;3;PRS aler yroit V;COND;SG;3;LGSPEC2 aler yrois V;COND;SG;2;LGSPEC2 aler iront V;IND;PL;3;FUT;LGSPEC1 aler yrez V;IND;PL;2;FUT;LGSPEC2 aler alassions V;IPFV;SBJV;PL;1;PST aler iroient V;COND;PL;3;LGSPEC1 aler alez V;IMP;PL;2 aler irois V;COND;SG;2;LGSPEC1 aler vas V;IND;SG;2;PRS aler iriez V;COND;PL;2;LGSPEC1 aler ira V;IND;SG;3;FUT;LGSPEC1 aler alassiez V;IPFV;SBJV;PL;2;PST aler irions V;COND;PL;1;LGSPEC1 aler va V;IND;SG;3;PRS aler ala V;PFV;IND;SG;3;PST aler irois V;COND;SG;1;LGSPEC1 aler yroie V;IND;SG;1;FUT;LGSPEC2 aler aille V;SBJV;SG;1;PRS aler vays V;IND;SG;1;PRS aler yra V;IND;SG;3;FUT;LGSPEC2 aler alast V;IPFV;SBJV;SG;3;PST aler alas V;PFV;IND;SG;2;PST oultrager oultragent V;SBJV;PL;3;PRS oultrager oultragera V;IND;SG;3;FUT oultrager oultrage V;SBJV;SG;1;PRS oultrager oultrageroys V;COND;SG;2;LGSPEC2 oultrager oultragea V;PFV;IND;SG;3;PST oultrager oultrageront V;IND;PL;3;FUT oultrager oultragions V;IPFV;IND;PL;1;PST;LGSPEC1 oultrager oultragez V;SBJV;PL;2;PRS oultrager oultrageastes V;PFV;IND;PL;2;PST oultrager oultrageoys V;IPFV;IND;SG;1;PST;LGSPEC2 oultrager oultrageons V;IND;PL;1;PRS oultrager oultrageroient V;COND;PL;3;LGSPEC1 oultrager oultrageryons V;COND;PL;1;LGSPEC2 oultrager oultrage V;SBJV;SG;3;PRS oultrager oultragerons V;IND;PL;1;FUT oultrager oultragent V;IND;PL;3;PRS oultrager oultragerai V;IND;SG;1;FUT;LGSPEC1 oultrager oultrageoys V;IPFV;IND;SG;2;PST;LGSPEC2 oultrager oultrageoyt V;IPFV;IND;SG;3;PST;LGSPEC2 oultrager oultrageasse V;IPFV;SBJV;SG;1;PST oultrager oultrageassions V;IPFV;SBJV;PL;1;PST oultrager oultrageoyent V;IPFV;IND;PL;3;PST;LGSPEC2 oultrager oultrageas V;PFV;IND;SG;2;PST oultrager oultrageoient V;IPFV;IND;PL;3;PST;LGSPEC1 oultrager oultragyez V;IPFV;IND;PL;2;PST;LGSPEC2 oultrager oultrageroit V;COND;SG;3;LGSPEC1 oultrager oultragiez V;IPFV;IND;PL;2;PST;LGSPEC1 oultrager oultrageroyent V;COND;PL;3;LGSPEC2 oultrager oultrageassent V;IPFV;SBJV;PL;3;PST oultrager oultrageassiez V;IPFV;SBJV;PL;2;PST oultrager oultrageryez V;COND;PL;2;LGSPEC2 oultrager oultrageois V;IPFV;IND;SG;1;PST;LGSPEC1 oultrager oultragerions V;COND;PL;1;LGSPEC1 oultrager oultragea V;PFV;IND;SG;1;PST oultrager oultrager V;NFIN oultrager oultrages V;SBJV;SG;2;PRS oultrager oultrageroyt V;COND;SG;3;LGSPEC2 oultrager oultrageast V;IPFV;SBJV;SG;3;PST oultrager oultragerois V;COND;SG;1;LGSPEC1 oultrager oultrages V;IND;SG;2;PRS oultrager oultrageois V;IPFV;IND;SG;2;PST;LGSPEC1 oultrager oultrageons V;SBJV;PL;1;PRS oultrager oultrage V;IND;SG;3;PRS oultrager oultragyons V;IPFV;IND;PL;1;PST;LGSPEC2 oultrager oultrageasmes V;PFV;IND;PL;1;PST oultrager oultragez V;IND;PL;2;PRS oultrager oultrageriez V;COND;PL;2;LGSPEC1 oultrager oultrageons V;IMP;PL;1 oultrager oultragerois V;COND;SG;2;LGSPEC1 oultrager oultrageras V;IND;SG;2;FUT oultrager oultragerent V;PFV;IND;PL;3;PST oultrager oultragez V;IMP;PL;2 oultrager oultrageasses V;IPFV;SBJV;SG;2;PST oultrager oultrage V;IND;SG;1;PRS oultrager oultragerez V;IND;PL;2;FUT oultrager oultrageroys V;COND;SG;1;LGSPEC2 oultrager oultrageray V;IND;SG;1;FUT;LGSPEC2 oultrager oultrage V;IMP;SG;2 oultrager oultrageoit V;IPFV;IND;SG;3;PST;LGSPEC1 chercher cherchoyt V;IPFV;IND;SG;3;PST;LGSPEC2 chercher chercherons V;IND;PL;1;FUT chercher chercheroyent V;COND;PL;3;LGSPEC2 chercher chercherois V;COND;SG;1;LGSPEC1 chercher cherches V;SBJV;SG;2;PRS chercher chercherions V;COND;PL;1;LGSPEC1 chercher cherches V;IND;SG;2;PRS chercher cherchoys V;IPFV;IND;SG;2;PST;LGSPEC2 chercher cherche V;IND;SG;1;PRS chercher chercherez V;IND;PL;2;FUT chercher chercheroys V;COND;SG;1;LGSPEC2 chercher cherchez V;IMP;PL;2 chercher cherchons V;SBJV;PL;1;PRS chercher cherchez V;SBJV;PL;2;PRS chercher chercheroit V;COND;SG;3;LGSPEC1 chercher chercha V;PFV;IND;SG;1;PST chercher cherchons V;IMP;PL;1 chercher chercheroient V;COND;PL;3;LGSPEC1 chercher chercheryez V;COND;PL;2;LGSPEC2 chercher chercheray V;IND;SG;1;FUT;LGSPEC2 chercher cherchoit V;IPFV;IND;SG;3;PST;LGSPEC1 chercher cherchions V;IPFV;IND;PL;1;PST;LGSPEC1 chercher chercheras V;IND;SG;2;FUT chercher cherchas V;PFV;IND;SG;2;PST chercher chercherai V;IND;SG;1;FUT;LGSPEC1 chercher chercher V;NFIN chercher cherche V;SBJV;SG;1;PRS chercher cherche V;IMP;SG;2 chercher chercheroyt V;COND;SG;3;LGSPEC2 chercher cherchois V;IPFV;IND;SG;2;PST;LGSPEC1 chercher cherchyez V;IPFV;IND;PL;2;PST;LGSPEC2 chercher cherchoyent V;IPFV;IND;PL;3;PST;LGSPEC2 chercher cherchez V;IND;PL;2;PRS chercher cherchasmes V;PFV;IND;PL;1;PST chercher cherche V;IND;SG;3;PRS chercher cherchasses V;IPFV;SBJV;SG;2;PST chercher cherchiez V;IPFV;IND;PL;2;PST;LGSPEC1 chercher cherchassent V;IPFV;SBJV;PL;3;PST chercher chercheriez V;COND;PL;2;LGSPEC1 chercher cherchent V;SBJV;PL;3;PRS chercher cherchons V;IND;PL;1;PRS chercher cherchassiez V;IPFV;SBJV;PL;2;PST chercher cherchois V;IPFV;IND;SG;1;PST;LGSPEC1 chercher cherchoys V;IPFV;IND;SG;1;PST;LGSPEC2 chercher cherchoient V;IPFV;IND;PL;3;PST;LGSPEC1 chercher chercheryons V;COND;PL;1;LGSPEC2 chercher cherchassions V;IPFV;SBJV;PL;1;PST chercher chercheroys V;COND;SG;2;LGSPEC2 chercher cherchast V;IPFV;SBJV;SG;3;PST chercher cherche V;SBJV;SG;3;PRS chercher cherchyons V;IPFV;IND;PL;1;PST;LGSPEC2 chercher cherchera V;IND;SG;3;FUT chercher chercherent V;PFV;IND;PL;3;PST chercher cherchasse V;IPFV;SBJV;SG;1;PST chercher cherchent V;IND;PL;3;PRS chercher chercherois V;COND;SG;2;LGSPEC1 chercher chercha V;PFV;IND;SG;3;PST chercher chercheront V;IND;PL;3;FUT chercher cherchastes V;PFV;IND;PL;2;PST contrepoiser contrepoiseryons V;COND;PL;1;LGSPEC2 contrepoiser contrepoiseray V;IND;SG;1;FUT;LGSPEC2 contrepoiser contrepoisassions V;IPFV;SBJV;PL;1;PST contrepoiser contrepoisons V;IND;PL;1;PRS contrepoiser contrepoiserent V;PFV;IND;PL;3;PST contrepoiser contrepoiseroyt V;COND;SG;3;LGSPEC2 contrepoiser contrepoisez V;SBJV;PL;2;PRS contrepoiser contrepoiserions V;COND;PL;1;LGSPEC1 contrepoiser contrepoiseroient V;COND;PL;3;LGSPEC1 contrepoiser contrepoisoyt V;IPFV;IND;SG;3;PST;LGSPEC2 contrepoiser contrepoiserons V;IND;PL;1;FUT contrepoiser contrepoisyons V;IPFV;IND;PL;1;PST;LGSPEC2 contrepoiser contrepoiseroit V;COND;SG;3;LGSPEC1 contrepoiser contrepoisois V;IPFV;IND;SG;1;PST;LGSPEC1 contrepoiser contrepoiseras V;IND;SG;2;FUT contrepoiser contrepoisassent V;IPFV;SBJV;PL;3;PST contrepoiser contrepoisent V;IND;PL;3;PRS contrepoiser contrepoisons V;SBJV;PL;1;PRS contrepoiser contrepoisoient V;IPFV;IND;PL;3;PST;LGSPEC1 contrepoiser contrepoiser V;NFIN contrepoiser contrepoisera V;IND;SG;3;FUT contrepoiser contrepoiserois V;COND;SG;1;LGSPEC1 contrepoiser contrepoise V;IMP;SG;2 contrepoiser contrepoisa V;PFV;IND;SG;3;PST contrepoiser contrepoisoit V;IPFV;IND;SG;3;PST;LGSPEC1 contrepoiser contrepoisois V;IPFV;IND;SG;2;PST;LGSPEC1 contrepoiser contrepoisastes V;PFV;IND;PL;2;PST contrepoiser contrepoisoys V;IPFV;IND;SG;2;PST;LGSPEC2 contrepoiser contrepoise V;IND;SG;1;PRS contrepoiser contrepoisions V;IPFV;IND;PL;1;PST;LGSPEC1 contrepoiser contrepoisassiez V;IPFV;SBJV;PL;2;PST contrepoiser contrepoiseront V;IND;PL;3;FUT contrepoiser contrepoisons V;IMP;PL;1 contrepoiser contrepoiserai V;IND;SG;1;FUT;LGSPEC1 contrepoiser contrepoisa V;PFV;IND;SG;1;PST contrepoiser contrepoisyez V;IPFV;IND;PL;2;PST;LGSPEC2 contrepoiser contrepoiseryez V;COND;PL;2;LGSPEC2 contrepoiser contrepoisiez V;IPFV;IND;PL;2;PST;LGSPEC1 contrepoiser contrepoisasses V;IPFV;SBJV;SG;2;PST contrepoiser contrepoisoys V;IPFV;IND;SG;1;PST;LGSPEC2 contrepoiser contrepoises V;SBJV;SG;2;PRS contrepoiser contrepoisas V;PFV;IND;SG;2;PST contrepoiser contrepoiseroys V;COND;SG;2;LGSPEC2 contrepoiser contrepoiseroyent V;COND;PL;3;LGSPEC2 contrepoiser contrepoisez V;IND;PL;2;PRS contrepoiser contrepoisent V;SBJV;PL;3;PRS contrepoiser contrepoiserez V;IND;PL;2;FUT contrepoiser contrepoisoyent V;IPFV;IND;PL;3;PST;LGSPEC2 contrepoiser contrepoisasse V;IPFV;SBJV;SG;1;PST contrepoiser contrepoiseriez V;COND;PL;2;LGSPEC1 contrepoiser contrepoise V;SBJV;SG;1;PRS contrepoiser contrepoises V;IND;SG;2;PRS contrepoiser contrepoise V;IND;SG;3;PRS contrepoiser contrepoiserois V;COND;SG;2;LGSPEC1 contrepoiser contrepoise V;SBJV;SG;3;PRS contrepoiser contrepoisez V;IMP;PL;2 contrepoiser contrepoiseroys V;COND;SG;1;LGSPEC2 contrepoiser contrepoisast V;IPFV;SBJV;SG;3;PST contrepoiser contrepoisasmes V;PFV;IND;PL;1;PST fortifier fortifions V;IMP;PL;1 fortifier fortifia V;PFV;IND;SG;3;PST fortifier fortifierai V;IND;SG;1;FUT;LGSPEC1 fortifier fortifioys V;IPFV;IND;SG;2;PST;LGSPEC2 fortifier fortifieryez V;COND;PL;2;LGSPEC2 fortifier fortifies V;IND;SG;2;PRS fortifier fortifier V;NFIN fortifier fortifioyt V;IPFV;IND;SG;3;PST;LGSPEC2 fortifier fortifieray V;IND;SG;1;FUT;LGSPEC2 fortifier fortifient V;SBJV;PL;3;PRS fortifier fortifieroit V;COND;SG;3;LGSPEC1 fortifier fortifient V;IND;PL;3;PRS fortifier fortifions V;IND;PL;1;PRS fortifier fortifie V;IMP;SG;2 fortifier fortifierois V;COND;SG;1;LGSPEC1 fortifier fortifioyent V;IPFV;IND;PL;3;PST;LGSPEC2 fortifier fortifiez V;SBJV;PL;2;PRS fortifier fortifierions V;COND;PL;1;LGSPEC1 fortifier fortifiiez V;IPFV;IND;PL;2;PST;LGSPEC1 fortifier fortifie V;IND;SG;1;PRS fortifier fortifiasse V;IPFV;SBJV;SG;1;PST fortifier fortifiyons V;IPFV;IND;PL;1;PST;LGSPEC2 fortifier fortifiast V;IPFV;SBJV;SG;3;PST fortifier fortifie V;SBJV;SG;3;PRS fortifier fortifiez V;IND;PL;2;PRS fortifier fortifieras V;IND;SG;2;FUT fortifier fortifieryons V;COND;PL;1;LGSPEC2 fortifier fortifioys V;IPFV;IND;SG;1;PST;LGSPEC2 fortifier fortifions V;SBJV;PL;1;PRS fortifier fortifioit V;IPFV;IND;SG;3;PST;LGSPEC1 fortifier fortifieroys V;COND;SG;2;LGSPEC2 fortifier fortifiassiez V;IPFV;SBJV;PL;2;PST fortifier fortifias V;PFV;IND;SG;2;PST fortifier fortifie V;IND;SG;3;PRS fortifier fortifiastes V;PFV;IND;PL;2;PST fortifier fortifia V;PFV;IND;SG;1;PST fortifier fortifieroyt V;COND;SG;3;LGSPEC2 fortifier fortifiera V;IND;SG;3;FUT fortifier fortifies V;SBJV;SG;2;PRS fortifier fortifieriez V;COND;PL;2;LGSPEC1 fortifier fortifiions V;IPFV;IND;PL;1;PST;LGSPEC1 fortifier fortifiasses V;IPFV;SBJV;SG;2;PST fortifier fortifierons V;IND;PL;1;FUT fortifier fortifiois V;IPFV;IND;SG;1;PST;LGSPEC1 fortifier fortifiez V;IMP;PL;2 fortifier fortifiois V;IPFV;IND;SG;2;PST;LGSPEC1 fortifier fortifiasmes V;PFV;IND;PL;1;PST fortifier fortifierent V;PFV;IND;PL;3;PST fortifier fortifie V;SBJV;SG;1;PRS fortifier fortifiassions V;IPFV;SBJV;PL;1;PST fortifier fortifiyez V;IPFV;IND;PL;2;PST;LGSPEC2 fortifier fortifieroient V;COND;PL;3;LGSPEC1 fortifier fortifierois V;COND;SG;2;LGSPEC1 fortifier fortifioient V;IPFV;IND;PL;3;PST;LGSPEC1 fortifier fortifieroys V;COND;SG;1;LGSPEC2 fortifier fortifierez V;IND;PL;2;FUT fortifier fortifiassent V;IPFV;SBJV;PL;3;PST fortifier fortifieront V;IND;PL;3;FUT fortifier fortifieroyent V;COND;PL;3;LGSPEC2 humilier humilieras V;IND;SG;2;FUT humilier humilie V;IND;SG;3;PRS humilier humilieryons V;COND;PL;1;LGSPEC2 humilier humilieroyent V;COND;PL;3;LGSPEC2 humilier humilieryez V;COND;PL;2;LGSPEC2 humilier humiliois V;IPFV;IND;SG;1;PST;LGSPEC1 humilier humiliassent V;IPFV;SBJV;PL;3;PST humilier humiliast V;IPFV;SBJV;SG;3;PST humilier humilieroys V;COND;SG;1;LGSPEC2 humilier humilies V;IND;SG;2;PRS humilier humiliez V;SBJV;PL;2;PRS humilier humiliastes V;PFV;IND;PL;2;PST humilier humilie V;SBJV;SG;1;PRS humilier humiliassions V;IPFV;SBJV;PL;1;PST humilier humilia V;PFV;IND;SG;3;PST humilier humiliera V;IND;SG;3;FUT humilier humilieront V;IND;PL;3;FUT humilier humilieroys V;COND;SG;2;LGSPEC2 humilier humilions V;IMP;PL;1 humilier humilioit V;IPFV;IND;SG;3;PST;LGSPEC1 humilier humiliasmes V;PFV;IND;PL;1;PST humilier humiliasses V;IPFV;SBJV;SG;2;PST humilier humilieroient V;COND;PL;3;LGSPEC1 humilier humilierois V;COND;SG;1;LGSPEC1 humilier humilioys V;IPFV;IND;SG;2;PST;LGSPEC2 humilier humilierai V;IND;SG;1;FUT;LGSPEC1 humilier humiliassiez V;IPFV;SBJV;PL;2;PST humilier humiliez V;IND;PL;2;PRS humilier humilia V;PFV;IND;SG;1;PST humilier humilieroit V;COND;SG;3;LGSPEC1 humilier humilieray V;IND;SG;1;FUT;LGSPEC2 humilier humilie V;SBJV;SG;3;PRS humilier humiliasse V;IPFV;SBJV;SG;1;PST humilier humilioyent V;IPFV;IND;PL;3;PST;LGSPEC2 humilier humilierez V;IND;PL;2;FUT humilier humiliyons V;IPFV;IND;PL;1;PST;LGSPEC2 humilier humilierent V;PFV;IND;PL;3;PST humilier humilierions V;COND;PL;1;LGSPEC1 humilier humilierons V;IND;PL;1;FUT humilier humilioient V;IPFV;IND;PL;3;PST;LGSPEC1 humilier humilient V;SBJV;PL;3;PRS humilier humilierois V;COND;SG;2;LGSPEC1 humilier humiliiez V;IPFV;IND;PL;2;PST;LGSPEC1 humilier humilias V;PFV;IND;SG;2;PST humilier humilioyt V;IPFV;IND;SG;3;PST;LGSPEC2 humilier humiliez V;IMP;PL;2 humilier humilieriez V;COND;PL;2;LGSPEC1 humilier humiliyez V;IPFV;IND;PL;2;PST;LGSPEC2 humilier humiliois V;IPFV;IND;SG;2;PST;LGSPEC1 humilier humilions V;IND;PL;1;PRS humilier humilioys V;IPFV;IND;SG;1;PST;LGSPEC2 humilier humilie V;IMP;SG;2 humilier humilions V;SBJV;PL;1;PRS humilier humilient V;IND;PL;3;PRS humilier humilies V;SBJV;SG;2;PRS humilier humilie V;IND;SG;1;PRS humilier humilieroyt V;COND;SG;3;LGSPEC2 humilier humiliions V;IPFV;IND;PL;1;PST;LGSPEC1 humilier humilier V;NFIN esgaler esgaloys V;IPFV;IND;SG;1;PST;LGSPEC2 esgaler esgalerai V;IND;SG;1;FUT;LGSPEC1 esgaler esgalez V;IND;PL;2;PRS esgaler esgaleroys V;COND;SG;2;LGSPEC2 esgaler esgale V;SBJV;SG;1;PRS esgaler esgala V;PFV;IND;SG;3;PST esgaler esgaleroys V;COND;SG;1;LGSPEC2 esgaler esgalasse V;IPFV;SBJV;SG;1;PST esgaler esgalassent V;IPFV;SBJV;PL;3;PST esgaler esgale V;IMP;SG;2 esgaler esgaleroient V;COND;PL;3;LGSPEC1 esgaler esgaleroyent V;COND;PL;3;LGSPEC2 esgaler esgaloient V;IPFV;IND;PL;3;PST;LGSPEC1 esgaler esgaleroyt V;COND;SG;3;LGSPEC2 esgaler esgalons V;IND;PL;1;PRS esgaler esgale V;IND;SG;1;PRS esgaler esgalyons V;IPFV;IND;PL;1;PST;LGSPEC2 esgaler esgaloit V;IPFV;IND;SG;3;PST;LGSPEC1 esgaler esgales V;SBJV;SG;2;PRS esgaler esgalera V;IND;SG;3;FUT esgaler esgaleroit V;COND;SG;3;LGSPEC1 esgaler esgale V;IND;SG;3;PRS esgaler esgaleryons V;COND;PL;1;LGSPEC2 esgaler esgalerois V;COND;SG;1;LGSPEC1 esgaler esgaloyent V;IPFV;IND;PL;3;PST;LGSPEC2 esgaler esgalez V;SBJV;PL;2;PRS esgaler esgaleriez V;COND;PL;2;LGSPEC1 esgaler esgalast V;IPFV;SBJV;SG;3;PST esgaler esgalassiez V;IPFV;SBJV;PL;2;PST esgaler esgalons V;SBJV;PL;1;PRS esgaler esgalasses V;IPFV;SBJV;SG;2;PST esgaler esgalerez V;IND;PL;2;FUT esgaler esgale V;SBJV;SG;3;PRS esgaler esgalois V;IPFV;IND;SG;1;PST;LGSPEC1 esgaler esgalerent V;PFV;IND;PL;3;PST esgaler esgalons V;IMP;PL;1 esgaler esgalerois V;COND;SG;2;LGSPEC1 esgaler esgalois V;IPFV;IND;SG;2;PST;LGSPEC1 esgaler esgalassions V;IPFV;SBJV;PL;1;PST esgaler esgalez V;IMP;PL;2 esgaler esgalasmes V;PFV;IND;PL;1;PST esgaler esgaloys V;IPFV;IND;SG;2;PST;LGSPEC2 esgaler esgaleray V;IND;SG;1;FUT;LGSPEC2 esgaler esgales V;IND;SG;2;PRS esgaler esgaloyt V;IPFV;IND;SG;3;PST;LGSPEC2 esgaler esgala V;PFV;IND;SG;1;PST esgaler esgalastes V;PFV;IND;PL;2;PST esgaler esgalas V;PFV;IND;SG;2;PST esgaler esgaleryez V;COND;PL;2;LGSPEC2 esgaler esgaleras V;IND;SG;2;FUT esgaler esgalent V;IND;PL;3;PRS esgaler esgalyez V;IPFV;IND;PL;2;PST;LGSPEC2 esgaler esgaler V;NFIN esgaler esgalerons V;IND;PL;1;FUT esgaler esgalent V;SBJV;PL;3;PRS esgaler esgalerions V;COND;PL;1;LGSPEC1 esgaler esgaleront V;IND;PL;3;FUT esgaler esgaliez V;IPFV;IND;PL;2;PST;LGSPEC1 esgaler esgalions V;IPFV;IND;PL;1;PST;LGSPEC1 estudier estudierai V;IND;SG;1;FUT;LGSPEC1 estudier estudierois V;COND;SG;2;LGSPEC1 estudier estudieroient V;COND;PL;3;LGSPEC1 estudier estudiastes V;PFV;IND;PL;2;PST estudier estudieriez V;COND;PL;2;LGSPEC1 estudier estudiassent V;IPFV;SBJV;PL;3;PST estudier estudiez V;IMP;PL;2 estudier estudiiez V;IPFV;IND;PL;2;PST;LGSPEC1 estudier estudieras V;IND;SG;2;FUT estudier estudiions V;IPFV;IND;PL;1;PST;LGSPEC1 estudier estudie V;SBJV;SG;3;PRS estudier estudierez V;IND;PL;2;FUT estudier estudioyent V;IPFV;IND;PL;3;PST;LGSPEC2 estudier estudiez V;SBJV;PL;2;PRS estudier estudioient V;IPFV;IND;PL;3;PST;LGSPEC1 estudier estudioit V;IPFV;IND;SG;3;PST;LGSPEC1 estudier estudie V;IMP;SG;2 estudier estudie V;SBJV;SG;1;PRS estudier estudient V;IND;PL;3;PRS estudier estudierent V;PFV;IND;PL;3;PST estudier estudierions V;COND;PL;1;LGSPEC1 estudier estudiassiez V;IPFV;SBJV;PL;2;PST estudier estudieray V;IND;SG;1;FUT;LGSPEC2 estudier estudions V;SBJV;PL;1;PRS estudier estudia V;PFV;IND;SG;1;PST estudier estudieryons V;COND;PL;1;LGSPEC2 estudier estudierois V;COND;SG;1;LGSPEC1 estudier estudieryez V;COND;PL;2;LGSPEC2 estudier estudies V;SBJV;SG;2;PRS estudier estudions V;IMP;PL;1 estudier estudie V;IND;SG;1;PRS estudier estudies V;IND;SG;2;PRS estudier estudiasmes V;PFV;IND;PL;1;PST estudier estudia V;PFV;IND;SG;3;PST estudier estudierons V;IND;PL;1;FUT estudier estudiasse V;IPFV;SBJV;SG;1;PST estudier estudias V;PFV;IND;SG;2;PST estudier estudioys V;IPFV;IND;SG;2;PST;LGSPEC2 estudier estudieroys V;COND;SG;2;LGSPEC2 estudier estudieroit V;COND;SG;3;LGSPEC1 estudier estudier V;NFIN estudier estudiasses V;IPFV;SBJV;SG;2;PST estudier estudiois V;IPFV;IND;SG;2;PST;LGSPEC1 estudier estudiast V;IPFV;SBJV;SG;3;PST estudier estudiyons V;IPFV;IND;PL;1;PST;LGSPEC2 estudier estudiassions V;IPFV;SBJV;PL;1;PST estudier estudient V;SBJV;PL;3;PRS estudier estudieroyent V;COND;PL;3;LGSPEC2 estudier estudiyez V;IPFV;IND;PL;2;PST;LGSPEC2 estudier estudie V;IND;SG;3;PRS estudier estudieront V;IND;PL;3;FUT estudier estudiez V;IND;PL;2;PRS estudier estudiera V;IND;SG;3;FUT estudier estudiois V;IPFV;IND;SG;1;PST;LGSPEC1 estudier estudioys V;IPFV;IND;SG;1;PST;LGSPEC2 estudier estudieroys V;COND;SG;1;LGSPEC2 estudier estudioyt V;IPFV;IND;SG;3;PST;LGSPEC2 estudier estudieroyt V;COND;SG;3;LGSPEC2 estudier estudions V;IND;PL;1;PRS viser visoit V;IPFV;IND;SG;3;PST;LGSPEC1 viser visez V;SBJV;PL;2;PRS viser visyez V;IPFV;IND;PL;2;PST;LGSPEC2 viser viseras V;IND;SG;2;FUT viser visions V;IPFV;IND;PL;1;PST;LGSPEC1 viser visent V;IND;PL;3;PRS viser vise V;IND;SG;1;PRS viser visassions V;IPFV;SBJV;PL;1;PST viser viserois V;COND;SG;2;LGSPEC1 viser visoyent V;IPFV;IND;PL;3;PST;LGSPEC2 viser visent V;SBJV;PL;3;PRS viser viserent V;PFV;IND;PL;3;PST viser viseroit V;COND;SG;3;LGSPEC1 viser visons V;IMP;PL;1 viser viseryez V;COND;PL;2;LGSPEC2 viser visasse V;IPFV;SBJV;SG;1;PST viser visastes V;PFV;IND;PL;2;PST viser vises V;SBJV;SG;2;PRS viser viser V;NFIN viser visois V;IPFV;IND;SG;1;PST;LGSPEC1 viser visassiez V;IPFV;SBJV;PL;2;PST viser visons V;SBJV;PL;1;PRS viser viseroient V;COND;PL;3;LGSPEC1 viser vise V;SBJV;SG;3;PRS viser viserois V;COND;SG;1;LGSPEC1 viser visoys V;IPFV;IND;SG;2;PST;LGSPEC2 viser visoient V;IPFV;IND;PL;3;PST;LGSPEC1 viser viserai V;IND;SG;1;FUT;LGSPEC1 viser vise V;SBJV;SG;1;PRS viser viseroyt V;COND;SG;3;LGSPEC2 viser visez V;IMP;PL;2 viser viseryons V;COND;PL;1;LGSPEC2 viser viserions V;COND;PL;1;LGSPEC1 viser vise V;IMP;SG;2 viser viseray V;IND;SG;1;FUT;LGSPEC2 viser visa V;PFV;IND;SG;3;PST viser viseroys V;COND;SG;2;LGSPEC2 viser visoyt V;IPFV;IND;SG;3;PST;LGSPEC2 viser visons V;IND;PL;1;PRS viser visyons V;IPFV;IND;PL;1;PST;LGSPEC2 viser visa V;PFV;IND;SG;1;PST viser visez V;IND;PL;2;PRS viser visast V;IPFV;SBJV;SG;3;PST viser visiez V;IPFV;IND;PL;2;PST;LGSPEC1 viser visera V;IND;SG;3;FUT viser visasses V;IPFV;SBJV;SG;2;PST viser vise V;IND;SG;3;PRS viser viseroyent V;COND;PL;3;LGSPEC2 viser viseroys V;COND;SG;1;LGSPEC2 viser viserez V;IND;PL;2;FUT viser visois V;IPFV;IND;SG;2;PST;LGSPEC1 viser visassent V;IPFV;SBJV;PL;3;PST viser viseront V;IND;PL;3;FUT viser visas V;PFV;IND;SG;2;PST viser viserons V;IND;PL;1;FUT viser vises V;IND;SG;2;PRS viser viseriez V;COND;PL;2;LGSPEC1 viser visasmes V;PFV;IND;PL;1;PST viser visoys V;IPFV;IND;SG;1;PST;LGSPEC2 dancer dancer V;NFIN dancer danceroys V;COND;SG;1;LGSPEC2 dancer danceroys V;COND;SG;2;LGSPEC2 dancer dancerois V;COND;SG;1;LGSPEC1 dancer dances V;SBJV;SG;2;PRS dancer dançassions V;IPFV;SBJV;PL;1;PST dancer dancent V;SBJV;PL;3;PRS dancer danceroit V;COND;SG;3;LGSPEC1 dancer danceroient V;COND;PL;3;LGSPEC1 dancer dance V;IND;SG;3;PRS dancer dancerent V;PFV;IND;PL;3;PST dancer dançons V;SBJV;PL;1;PRS dancer dancerez V;IND;PL;2;FUT dancer dancez V;IND;PL;2;PRS dancer dançastes V;PFV;IND;PL;2;PST dancer dançoit V;IPFV;IND;SG;3;PST;LGSPEC1 dancer dançoys V;IPFV;IND;SG;1;PST;LGSPEC2 dancer dançons V;IPFV;IND;PL;1;PST;LGSPEC2 dancer dancerois V;COND;SG;2;LGSPEC1 dancer danceroyent V;COND;PL;3;LGSPEC2 dancer dançoyt V;IPFV;IND;SG;3;PST;LGSPEC2 dancer dançois V;IPFV;IND;SG;1;PST;LGSPEC1 dancer dance V;IND;SG;1;PRS dancer dancez V;SBJV;PL;2;PRS dancer dança V;PFV;IND;SG;3;PST dancer danceront V;IND;PL;3;FUT dancer dançassiez V;IPFV;SBJV;PL;2;PST dancer dançoys V;IPFV;IND;SG;2;PST;LGSPEC2 dancer danceray V;IND;SG;1;FUT;LGSPEC2 dancer dançasmes V;PFV;IND;PL;1;PST dancer danceriez V;COND;PL;2;LGSPEC1 dancer dançassent V;IPFV;SBJV;PL;3;PST dancer dançons V;IND;PL;1;PRS dancer dancez V;IMP;PL;2 dancer dancent V;IND;PL;3;PRS dancer dançoient V;IPFV;IND;PL;3;PST;LGSPEC1 dancer dançasses V;IPFV;SBJV;SG;2;PST dancer danceroyt V;COND;SG;3;LGSPEC2 dancer dancerai V;IND;SG;1;FUT;LGSPEC1 dancer dance V;IMP;SG;2 dancer dancera V;IND;SG;3;FUT dancer danciez V;IPFV;IND;PL;2;PST;LGSPEC1 dancer danceryez V;COND;PL;2;LGSPEC2 dancer dance V;SBJV;SG;1;PRS dancer dancions V;IPFV;IND;PL;1;PST;LGSPEC1 dancer danças V;PFV;IND;SG;2;PST dancer dançoyent V;IPFV;IND;PL;3;PST;LGSPEC2 dancer dançons V;IMP;PL;1 dancer danceras V;IND;SG;2;FUT dancer danceryons V;COND;PL;1;LGSPEC2 dancer dançasse V;IPFV;SBJV;SG;1;PST dancer dances V;IND;SG;2;PRS dancer dancerons V;IND;PL;1;FUT dancer dançast V;IPFV;SBJV;SG;3;PST dancer dancyez V;IPFV;IND;PL;2;PST;LGSPEC2 dancer dancerions V;COND;PL;1;LGSPEC1 dancer dance V;SBJV;SG;3;PRS dancer dança V;PFV;IND;SG;1;PST dancer dançois V;IPFV;IND;SG;2;PST;LGSPEC1 considerer considereroit V;COND;SG;3;LGSPEC1 considerer considereray V;IND;SG;1;FUT;LGSPEC2 considerer considereriez V;COND;PL;2;LGSPEC1 considerer considerassions V;IPFV;SBJV;PL;1;PST considerer considera V;PFV;IND;SG;1;PST considerer considereroyt V;COND;SG;3;LGSPEC2 considerer considerastes V;PFV;IND;PL;2;PST considerer considereryons V;COND;PL;1;LGSPEC2 considerer considererois V;COND;SG;2;LGSPEC1 considerer considererez V;IND;PL;2;FUT considerer consideras V;PFV;IND;SG;2;PST considerer considerez V;IMP;PL;2 considerer considera V;PFV;IND;SG;3;PST considerer considererent V;PFV;IND;PL;3;PST considerer considerast V;IPFV;SBJV;SG;3;PST considerer considereroient V;COND;PL;3;LGSPEC1 considerer considerassent V;IPFV;SBJV;PL;3;PST considerer considerez V;SBJV;PL;2;PRS considerer consideroit V;IPFV;IND;SG;3;PST;LGSPEC1 considerer considererions V;COND;PL;1;LGSPEC1 considerer consideroyt V;IPFV;IND;SG;3;PST;LGSPEC2 considerer consideriez V;IPFV;IND;PL;2;PST;LGSPEC1 considerer considereras V;IND;SG;2;FUT considerer considerez V;IND;PL;2;PRS considerer considerons V;IMP;PL;1 considerer considerons V;SBJV;PL;1;PRS considerer considererai V;IND;SG;1;FUT;LGSPEC1 considerer consideres V;SBJV;SG;2;PRS considerer consideroys V;IPFV;IND;SG;1;PST;LGSPEC2 considerer considerons V;IND;PL;1;PRS considerer considerera V;IND;SG;3;FUT considerer considerions V;IPFV;IND;PL;1;PST;LGSPEC1 considerer considerent V;IND;PL;3;PRS considerer consideroyent V;IPFV;IND;PL;3;PST;LGSPEC2 considerer considere V;SBJV;SG;1;PRS considerer considere V;SBJV;SG;3;PRS considerer considere V;IND;SG;1;PRS considerer considereront V;IND;PL;3;FUT considerer considerent V;SBJV;PL;3;PRS considerer considerassiez V;IPFV;SBJV;PL;2;PST considerer considereroyent V;COND;PL;3;LGSPEC2 considerer consideryez V;IPFV;IND;PL;2;PST;LGSPEC2 considerer considerasse V;IPFV;SBJV;SG;1;PST considerer consideroient V;IPFV;IND;PL;3;PST;LGSPEC1 considerer consideroys V;IPFV;IND;SG;2;PST;LGSPEC2 considerer considerasmes V;PFV;IND;PL;1;PST considerer considereroys V;COND;SG;2;LGSPEC2 considerer considerasses V;IPFV;SBJV;SG;2;PST considerer considereroys V;COND;SG;1;LGSPEC2 considerer consideryons V;IPFV;IND;PL;1;PST;LGSPEC2 considerer considerois V;IPFV;IND;SG;2;PST;LGSPEC1 considerer considere V;IND;SG;3;PRS considerer considererons V;IND;PL;1;FUT considerer consideres V;IND;SG;2;PRS considerer considerois V;IPFV;IND;SG;1;PST;LGSPEC1 considerer considereryez V;COND;PL;2;LGSPEC2 considerer considerer V;NFIN considerer considere V;IMP;SG;2 considerer considererois V;COND;SG;1;LGSPEC1 cabasser cabassons V;SBJV;PL;1;PRS cabasser cabassassions V;IPFV;SBJV;PL;1;PST cabasser cabassastes V;PFV;IND;PL;2;PST cabasser cabasserois V;COND;SG;2;LGSPEC1 cabasser cabasserois V;COND;SG;1;LGSPEC1 cabasser cabasses V;IND;SG;2;PRS cabasser cabasse V;SBJV;SG;3;PRS cabasser cabassois V;IPFV;IND;SG;1;PST;LGSPEC1 cabasser cabassoyent V;IPFV;IND;PL;3;PST;LGSPEC2 cabasser cabassera V;IND;SG;3;FUT cabasser cabassyez V;IPFV;IND;PL;2;PST;LGSPEC2 cabasser cabasseroient V;COND;PL;3;LGSPEC1 cabasser cabassions V;IPFV;IND;PL;1;PST;LGSPEC1 cabasser cabasserent V;PFV;IND;PL;3;PST cabasser cabasse V;SBJV;SG;1;PRS cabasser cabasseray V;IND;SG;1;FUT;LGSPEC2 cabasser cabasse V;IND;SG;3;PRS cabasser cabasserez V;IND;PL;2;FUT cabasser cabasseroyt V;COND;SG;3;LGSPEC2 cabasser cabassasses V;IPFV;SBJV;SG;2;PST cabasser cabassez V;IND;PL;2;PRS cabasser cabasse V;IMP;SG;2 cabasser cabassasse V;IPFV;SBJV;SG;1;PST cabasser cabassoit V;IPFV;IND;SG;3;PST;LGSPEC1 cabasser cabasser V;NFIN cabasser cabassa V;PFV;IND;SG;3;PST cabasser cabasse V;IND;SG;1;PRS cabasser cabassassiez V;IPFV;SBJV;PL;2;PST cabasser cabassois V;IPFV;IND;SG;2;PST;LGSPEC1 cabasser cabasserons V;IND;PL;1;FUT cabasser cabassiez V;IPFV;IND;PL;2;PST;LGSPEC1 cabasser cabassoient V;IPFV;IND;PL;3;PST;LGSPEC1 cabasser cabasserions V;COND;PL;1;LGSPEC1 cabasser cabassyons V;IPFV;IND;PL;1;PST;LGSPEC2 cabasser cabasseroys V;COND;SG;2;LGSPEC2 cabasser cabassent V;IND;PL;3;PRS cabasser cabassez V;IMP;PL;2 cabasser cabasseryons V;COND;PL;1;LGSPEC2 cabasser cabassasmes V;PFV;IND;PL;1;PST cabasser cabassast V;IPFV;SBJV;SG;3;PST cabasser cabassons V;IND;PL;1;PRS cabasser cabassez V;SBJV;PL;2;PRS cabasser cabasseryez V;COND;PL;2;LGSPEC2 cabasser cabassent V;SBJV;PL;3;PRS cabasser cabasseras V;IND;SG;2;FUT cabasser cabassassent V;IPFV;SBJV;PL;3;PST cabasser cabasseroys V;COND;SG;1;LGSPEC2 cabasser cabasseront V;IND;PL;3;FUT cabasser cabasseroyent V;COND;PL;3;LGSPEC2 cabasser cabassa V;PFV;IND;SG;1;PST cabasser cabasserai V;IND;SG;1;FUT;LGSPEC1 cabasser cabassoys V;IPFV;IND;SG;1;PST;LGSPEC2 cabasser cabasseroit V;COND;SG;3;LGSPEC1 cabasser cabassoys V;IPFV;IND;SG;2;PST;LGSPEC2 cabasser cabasses V;SBJV;SG;2;PRS cabasser cabassons V;IMP;PL;1 cabasser cabassas V;PFV;IND;SG;2;PST cabasser cabassoyt V;IPFV;IND;SG;3;PST;LGSPEC2 cabasser cabasseriez V;COND;PL;2;LGSPEC1 desbaucher desbauche V;IND;SG;3;PRS desbaucher desbaucheryons V;COND;PL;1;LGSPEC2 desbaucher desbauche V;IMP;SG;2 desbaucher desbauchons V;IMP;PL;1 desbaucher desbauchons V;SBJV;PL;1;PRS desbaucher desbauchast V;IPFV;SBJV;SG;3;PST desbaucher desbauchions V;IPFV;IND;PL;1;PST;LGSPEC1 desbaucher desbauchoit V;IPFV;IND;SG;3;PST;LGSPEC1 desbaucher desbauchons V;IND;PL;1;PRS desbaucher desbaucheryez V;COND;PL;2;LGSPEC2 desbaucher desbauchent V;IND;PL;3;PRS desbaucher desbaucheroyent V;COND;PL;3;LGSPEC2 desbaucher desbauchez V;SBJV;PL;2;PRS desbaucher desbauches V;SBJV;SG;2;PRS desbaucher desbaucheroys V;COND;SG;1;LGSPEC2 desbaucher desbauchastes V;PFV;IND;PL;2;PST desbaucher desbaucherions V;COND;PL;1;LGSPEC1 desbaucher desbauchyons V;IPFV;IND;PL;1;PST;LGSPEC2 desbaucher desbaucher V;NFIN desbaucher desbauches V;IND;SG;2;PRS desbaucher desbaucha V;PFV;IND;SG;3;PST desbaucher desbaucherez V;IND;PL;2;FUT desbaucher desbaucherai V;IND;SG;1;FUT;LGSPEC1 desbaucher desbaucherons V;IND;PL;1;FUT desbaucher desbaucheriez V;COND;PL;2;LGSPEC1 desbaucher desbauchoient V;IPFV;IND;PL;3;PST;LGSPEC1 desbaucher desbauche V;SBJV;SG;1;PRS desbaucher desbaucha V;PFV;IND;SG;1;PST desbaucher desbauchyez V;IPFV;IND;PL;2;PST;LGSPEC2 desbaucher desbaucheras V;IND;SG;2;FUT desbaucher desbaucherois V;COND;SG;2;LGSPEC1 desbaucher desbauchassent V;IPFV;SBJV;PL;3;PST desbaucher desbauchera V;IND;SG;3;FUT desbaucher desbauchez V;IMP;PL;2 desbaucher desbaucheroyt V;COND;SG;3;LGSPEC2 desbaucher desbauchez V;IND;PL;2;PRS desbaucher desbauchent V;SBJV;PL;3;PRS desbaucher desbauchoyt V;IPFV;IND;SG;3;PST;LGSPEC2 desbaucher desbaucherent V;PFV;IND;PL;3;PST desbaucher desbaucherois V;COND;SG;1;LGSPEC1 desbaucher desbauche V;IND;SG;1;PRS desbaucher desbauchassions V;IPFV;SBJV;PL;1;PST desbaucher desbaucheray V;IND;SG;1;FUT;LGSPEC2 desbaucher desbauchasses V;IPFV;SBJV;SG;2;PST desbaucher desbauchois V;IPFV;IND;SG;1;PST;LGSPEC1 desbaucher desbauchasse V;IPFV;SBJV;SG;1;PST desbaucher desbaucheroit V;COND;SG;3;LGSPEC1 desbaucher desbauchas V;PFV;IND;SG;2;PST desbaucher desbaucheroient V;COND;PL;3;LGSPEC1 desbaucher desbauchiez V;IPFV;IND;PL;2;PST;LGSPEC1 desbaucher desbaucheroys V;COND;SG;2;LGSPEC2 desbaucher desbauchoys V;IPFV;IND;SG;2;PST;LGSPEC2 desbaucher desbauchoys V;IPFV;IND;SG;1;PST;LGSPEC2 desbaucher desbauchasmes V;PFV;IND;PL;1;PST desbaucher desbauchassiez V;IPFV;SBJV;PL;2;PST desbaucher desbauche V;SBJV;SG;3;PRS desbaucher desbauchoyent V;IPFV;IND;PL;3;PST;LGSPEC2 desbaucher desbauchois V;IPFV;IND;SG;2;PST;LGSPEC1 desbaucher desbaucheront V;IND;PL;3;FUT occurrer occurrassions V;IPFV;SBJV;PL;1;PST occurrer occurrer V;NFIN occurrer occurrois V;IPFV;IND;SG;1;PST;LGSPEC1 occurrer occurrastes V;PFV;IND;PL;2;PST occurrer occurreras V;IND;SG;2;FUT occurrer occurreront V;IND;PL;3;FUT occurrer occurra V;PFV;IND;SG;3;PST occurrer occurras V;PFV;IND;SG;2;PST occurrer occurroyt V;IPFV;IND;SG;3;PST;LGSPEC2 occurrer occurreryons V;COND;PL;1;LGSPEC2 occurrer occurrerois V;COND;SG;1;LGSPEC1 occurrer occurrerions V;COND;PL;1;LGSPEC1 occurrer occurreriez V;COND;PL;2;LGSPEC1 occurrer occurreroyt V;COND;SG;3;LGSPEC2 occurrer occurroit V;IPFV;IND;SG;3;PST;LGSPEC1 occurrer occurrons V;IMP;PL;1 occurrer occurrerez V;IND;PL;2;FUT occurrer occurrerois V;COND;SG;2;LGSPEC1 occurrer occurreroys V;COND;SG;1;LGSPEC2 occurrer occurrerent V;PFV;IND;PL;3;PST occurrer occurre V;SBJV;SG;3;PRS occurrer occurroys V;IPFV;IND;SG;2;PST;LGSPEC2 occurrer occurrons V;SBJV;PL;1;PRS occurrer occurreray V;IND;SG;1;FUT;LGSPEC2 occurrer occurrasses V;IPFV;SBJV;SG;2;PST occurrer occurrent V;IND;PL;3;PRS occurrer occurrez V;IMP;PL;2 occurrer occurre V;IND;SG;3;PRS occurrer occurrassiez V;IPFV;SBJV;PL;2;PST occurrer occurrons V;IND;PL;1;PRS occurrer occurrasse V;IPFV;SBJV;SG;1;PST occurrer occurrerons V;IND;PL;1;FUT occurrer occurrois V;IPFV;IND;SG;2;PST;LGSPEC1 occurrer occurre V;IMP;SG;2 occurrer occurres V;SBJV;SG;2;PRS occurrer occurreroient V;COND;PL;3;LGSPEC1 occurrer occurre V;SBJV;SG;1;PRS occurrer occurrast V;IPFV;SBJV;SG;3;PST occurrer occurreroit V;COND;SG;3;LGSPEC1 occurrer occurryons V;IPFV;IND;PL;1;PST;LGSPEC2 occurrer occurroient V;IPFV;IND;PL;3;PST;LGSPEC1 occurrer occurra V;PFV;IND;SG;1;PST occurrer occurreroys V;COND;SG;2;LGSPEC2 occurrer occurriez V;IPFV;IND;PL;2;PST;LGSPEC1 occurrer occurrera V;IND;SG;3;FUT occurrer occurres V;IND;SG;2;PRS occurrer occurrent V;SBJV;PL;3;PRS occurrer occurreroyent V;COND;PL;3;LGSPEC2 occurrer occurrerai V;IND;SG;1;FUT;LGSPEC1 occurrer occurrasmes V;PFV;IND;PL;1;PST occurrer occurrez V;SBJV;PL;2;PRS occurrer occurrions V;IPFV;IND;PL;1;PST;LGSPEC1 occurrer occurroyent V;IPFV;IND;PL;3;PST;LGSPEC2 occurrer occurroys V;IPFV;IND;SG;1;PST;LGSPEC2 occurrer occurre V;IND;SG;1;PRS occurrer occurrez V;IND;PL;2;PRS occurrer occurrassent V;IPFV;SBJV;PL;3;PST occurrer occurryez V;IPFV;IND;PL;2;PST;LGSPEC2 occurrer occurreryez V;COND;PL;2;LGSPEC2 essilier essilieroient V;COND;PL;3;LGSPEC1 essilier essilasmes V;PFV;IND;PL;1;PST essilier essiliera V;IND;SG;3;FUT essilier essilieryons V;COND;PL;1;LGSPEC2 essilier essilieront V;IND;PL;3;FUT essilier essiloys V;IPFV;IND;SG;2;PST;LGSPEC2 essilier essilieroys V;COND;SG;2;LGSPEC2 essilier essilas V;PFV;IND;SG;2;PST essilier essilierons V;IND;PL;1;FUT essilier essilast V;IPFV;SBJV;SG;3;PST essilier essilyez V;IPFV;IND;PL;2;PST;LGSPEC2 essilier essilieryez V;COND;PL;2;LGSPEC2 essilier essiliez V;SBJV;PL;2;PRS essilier essilieriez V;COND;PL;2;LGSPEC1 essilier essiloient V;IPFV;IND;PL;3;PST;LGSPEC1 essilier essilions V;IMP;PL;1 essilier essilierois V;COND;SG;1;LGSPEC1 essilier essilieroyt V;COND;SG;3;LGSPEC2 essilier essiloyent V;IPFV;IND;PL;3;PST;LGSPEC2 essilier essilieroyent V;COND;PL;3;LGSPEC2 essilier essiloit V;IPFV;IND;SG;3;PST;LGSPEC1 essilier essiliez V;IPFV;IND;PL;2;PST;LGSPEC1 essilier essilions V;IPFV;IND;PL;1;PST;LGSPEC1 essilier essilois V;IPFV;IND;SG;2;PST;LGSPEC1 essilier essilyons V;IPFV;IND;PL;1;PST;LGSPEC2 essilier essilierez V;IND;PL;2;FUT essilier essilierent V;PFV;IND;PL;3;PST essilier essilastes V;PFV;IND;PL;2;PST essilier essila V;PFV;IND;SG;1;PST essilier essilieroys V;COND;SG;1;LGSPEC2 essilier essilent V;SBJV;PL;3;PRS essilier essilier V;NFIN essilier essiloyt V;IPFV;IND;SG;3;PST;LGSPEC2 essilier essiliez V;IMP;PL;2 essilier essilassiez V;IPFV;SBJV;PL;2;PST essilier essilieray V;IND;SG;1;FUT;LGSPEC2 essilier essilions V;SBJV;PL;1;PRS essilier essile V;IND;SG;1;PRS essilier essilassions V;IPFV;SBJV;PL;1;PST essilier essiliez V;IND;PL;2;PRS essilier essilassent V;IPFV;SBJV;PL;3;PST essilier essile V;IMP;SG;2 essilier essile V;SBJV;SG;3;PRS essilier essilasses V;IPFV;SBJV;SG;2;PST essilier essilierai V;IND;SG;1;FUT;LGSPEC1 essilier essilent V;IND;PL;3;PRS essilier essilasse V;IPFV;SBJV;SG;1;PST essilier essilierions V;COND;PL;1;LGSPEC1 essilier essilions V;IND;PL;1;PRS essilier essilieroit V;COND;SG;3;LGSPEC1 essilier essilieras V;IND;SG;2;FUT essilier essilierois V;COND;SG;2;LGSPEC1 essilier essiles V;SBJV;SG;2;PRS essilier essiles V;IND;SG;2;PRS essilier essiloys V;IPFV;IND;SG;1;PST;LGSPEC2 essilier essilois V;IPFV;IND;SG;1;PST;LGSPEC1 essilier essile V;IND;SG;3;PRS essilier essile V;SBJV;SG;1;PRS essilier essila V;PFV;IND;SG;3;PST presumer presumassent V;IPFV;SBJV;PL;3;PST presumer presumasmes V;PFV;IND;PL;1;PST presumer presume V;IMP;SG;2 presumer presume V;SBJV;SG;1;PRS presumer presumois V;IPFV;IND;SG;2;PST;LGSPEC1 presumer presumions V;IPFV;IND;PL;1;PST;LGSPEC1 presumer presumons V;IND;PL;1;PRS presumer presumasses V;IPFV;SBJV;SG;2;PST presumer presumeryez V;COND;PL;2;LGSPEC2 presumer presumeray V;IND;SG;1;FUT;LGSPEC2 presumer presumois V;IPFV;IND;SG;1;PST;LGSPEC1 presumer presumoyent V;IPFV;IND;PL;3;PST;LGSPEC2 presumer presumoit V;IPFV;IND;SG;3;PST;LGSPEC1 presumer presumeront V;IND;PL;3;FUT presumer presume V;IND;SG;1;PRS presumer presument V;SBJV;PL;3;PRS presumer presumez V;IND;PL;2;PRS presumer presumyez V;IPFV;IND;PL;2;PST;LGSPEC2 presumer presumeroit V;COND;SG;3;LGSPEC1 presumer presumerez V;IND;PL;2;FUT presumer presumassions V;IPFV;SBJV;PL;1;PST presumer presumyons V;IPFV;IND;PL;1;PST;LGSPEC2 presumer presumeroys V;COND;SG;2;LGSPEC2 presumer presumer V;NFIN presumer presuma V;PFV;IND;SG;3;PST presumer presumas V;PFV;IND;SG;2;PST presumer presumons V;SBJV;PL;1;PRS presumer presumiez V;IPFV;IND;PL;2;PST;LGSPEC1 presumer presumez V;SBJV;PL;2;PRS presumer presumoient V;IPFV;IND;PL;3;PST;LGSPEC1 presumer presumeroient V;COND;PL;3;LGSPEC1 presumer presumeroyt V;COND;SG;3;LGSPEC2 presumer presumassiez V;IPFV;SBJV;PL;2;PST presumer presumasse V;IPFV;SBJV;SG;1;PST presumer presumoys V;IPFV;IND;SG;1;PST;LGSPEC2 presumer presumeryons V;COND;PL;1;LGSPEC2 presumer presume V;SBJV;SG;3;PRS presumer presumeroyent V;COND;PL;3;LGSPEC2 presumer presumerai V;IND;SG;1;FUT;LGSPEC1 presumer presumera V;IND;SG;3;FUT presumer presumerois V;COND;SG;1;LGSPEC1 presumer presumerent V;PFV;IND;PL;3;PST presumer presumeroys V;COND;SG;1;LGSPEC2 presumer presumeriez V;COND;PL;2;LGSPEC1 presumer presumerons V;IND;PL;1;FUT presumer presumoyt V;IPFV;IND;SG;3;PST;LGSPEC2 presumer presumes V;IND;SG;2;PRS presumer presumastes V;PFV;IND;PL;2;PST presumer presume V;IND;SG;3;PRS presumer presumes V;SBJV;SG;2;PRS presumer presumerions V;COND;PL;1;LGSPEC1 presumer presumeras V;IND;SG;2;FUT presumer presuma V;PFV;IND;SG;1;PST presumer presumast V;IPFV;SBJV;SG;3;PST presumer presumoys V;IPFV;IND;SG;2;PST;LGSPEC2 presumer presument V;IND;PL;3;PRS presumer presumons V;IMP;PL;1 presumer presumez V;IMP;PL;2 presumer presumerois V;COND;SG;2;LGSPEC1 inquieter inquietez V;IND;PL;2;PRS inquieter inquietyez V;IPFV;IND;PL;2;PST;LGSPEC2 inquieter inquietasse V;IPFV;SBJV;SG;1;PST inquieter inquietent V;IND;PL;3;PRS inquieter inquieteras V;IND;SG;2;FUT inquieter inquietes V;SBJV;SG;2;PRS inquieter inquieterois V;COND;SG;2;LGSPEC1 inquieter inquietez V;SBJV;PL;2;PRS inquieter inquieteroyt V;COND;SG;3;LGSPEC2 inquieter inquietasses V;IPFV;SBJV;SG;2;PST inquieter inquietast V;IPFV;SBJV;SG;3;PST inquieter inquieteryons V;COND;PL;1;LGSPEC2 inquieter inquieteriez V;COND;PL;2;LGSPEC1 inquieter inquieterent V;PFV;IND;PL;3;PST inquieter inquietoys V;IPFV;IND;SG;1;PST;LGSPEC2 inquieter inquieter V;NFIN inquieter inquietoyt V;IPFV;IND;SG;3;PST;LGSPEC2 inquieter inquieteront V;IND;PL;3;FUT inquieter inquiete V;IND;SG;1;PRS inquieter inquietois V;IPFV;IND;SG;1;PST;LGSPEC1 inquieter inquietas V;PFV;IND;SG;2;PST inquieter inquietes V;IND;SG;2;PRS inquieter inquieteroient V;COND;PL;3;LGSPEC1 inquieter inquietions V;IPFV;IND;PL;1;PST;LGSPEC1 inquieter inquietez V;IMP;PL;2 inquieter inquieteryez V;COND;PL;2;LGSPEC2 inquieter inquieterons V;IND;PL;1;FUT inquieter inquiete V;SBJV;SG;3;PRS inquieter inquiete V;IMP;SG;2 inquieter inquietons V;IMP;PL;1 inquieter inquietassions V;IPFV;SBJV;PL;1;PST inquieter inquiete V;SBJV;SG;1;PRS inquieter inquieteroys V;COND;SG;1;LGSPEC2 inquieter inquietons V;SBJV;PL;1;PRS inquieter inquieta V;PFV;IND;SG;1;PST inquieter inquiete V;IND;SG;3;PRS inquieter inquietasmes V;PFV;IND;PL;1;PST inquieter inquietent V;SBJV;PL;3;PRS inquieter inquieta V;PFV;IND;SG;3;PST inquieter inquietoyent V;IPFV;IND;PL;3;PST;LGSPEC2 inquieter inquietiez V;IPFV;IND;PL;2;PST;LGSPEC1 inquieter inquietyons V;IPFV;IND;PL;1;PST;LGSPEC2 inquieter inquieteray V;IND;SG;1;FUT;LGSPEC2 inquieter inquieteroit V;COND;SG;3;LGSPEC1 inquieter inquietons V;IND;PL;1;PRS inquieter inquieterions V;COND;PL;1;LGSPEC1 inquieter inquietassiez V;IPFV;SBJV;PL;2;PST inquieter inquietastes V;PFV;IND;PL;2;PST inquieter inquietera V;IND;SG;3;FUT inquieter inquieterai V;IND;SG;1;FUT;LGSPEC1 inquieter inquieterez V;IND;PL;2;FUT inquieter inquieteroyent V;COND;PL;3;LGSPEC2 inquieter inquietoit V;IPFV;IND;SG;3;PST;LGSPEC1 inquieter inquieteroys V;COND;SG;2;LGSPEC2 inquieter inquietois V;IPFV;IND;SG;2;PST;LGSPEC1 inquieter inquietassent V;IPFV;SBJV;PL;3;PST inquieter inquieterois V;COND;SG;1;LGSPEC1 inquieter inquietoys V;IPFV;IND;SG;2;PST;LGSPEC2 inquieter inquietoient V;IPFV;IND;PL;3;PST;LGSPEC1 remerquer remerquoyent V;IPFV;IND;PL;3;PST;LGSPEC2 remerquer remerquoyt V;IPFV;IND;SG;3;PST;LGSPEC2 remerquer remerquasses V;IPFV;SBJV;SG;2;PST remerquer remerquer V;NFIN remerquer remerqueroient V;COND;PL;3;LGSPEC1 remerquer remerquerois V;COND;SG;1;LGSPEC1 remerquer remerqueroit V;COND;SG;3;LGSPEC1 remerquer remerquez V;IND;PL;2;PRS remerquer remerque V;SBJV;SG;3;PRS remerquer remerquiez V;IPFV;IND;PL;2;PST;LGSPEC1 remerquer remerqueroyent V;COND;PL;3;LGSPEC2 remerquer remerqueriez V;COND;PL;2;LGSPEC1 remerquer remerquassiez V;IPFV;SBJV;PL;2;PST remerquer remerquez V;SBJV;PL;2;PRS remerquer remerquerai V;IND;SG;1;FUT;LGSPEC1 remerquer remerques V;IND;SG;2;PRS remerquer remerquois V;IPFV;IND;SG;2;PST;LGSPEC1 remerquer remerque V;SBJV;SG;1;PRS remerquer remerqua V;PFV;IND;SG;3;PST remerquer remerquerions V;COND;PL;1;LGSPEC1 remerquer remerqueront V;IND;PL;3;FUT remerquer remerquoit V;IPFV;IND;SG;3;PST;LGSPEC1 remerquer remerquast V;IPFV;SBJV;SG;3;PST remerquer remerquerez V;IND;PL;2;FUT remerquer remerqueryons V;COND;PL;1;LGSPEC2 remerquer remerquois V;IPFV;IND;SG;1;PST;LGSPEC1 remerquer remerqueras V;IND;SG;2;FUT remerquer remerquent V;IND;PL;3;PRS remerquer remerques V;SBJV;SG;2;PRS remerquer remerqueroyt V;COND;SG;3;LGSPEC2 remerquer remerquez V;IMP;PL;2 remerquer remerquassions V;IPFV;SBJV;PL;1;PST remerquer remerquerons V;IND;PL;1;FUT remerquer remerquerois V;COND;SG;2;LGSPEC1 remerquer remerquastes V;PFV;IND;PL;2;PST remerquer remerquyez V;IPFV;IND;PL;2;PST;LGSPEC2 remerquer remerqueroys V;COND;SG;2;LGSPEC2 remerquer remerqueray V;IND;SG;1;FUT;LGSPEC2 remerquer remerquas V;PFV;IND;SG;2;PST remerquer remerquons V;IMP;PL;1 remerquer remerquera V;IND;SG;3;FUT remerquer remerque V;IND;SG;3;PRS remerquer remerquons V;SBJV;PL;1;PRS remerquer remerquyons V;IPFV;IND;PL;1;PST;LGSPEC2 remerquer remerquasmes V;PFV;IND;PL;1;PST remerquer remerquoys V;IPFV;IND;SG;2;PST;LGSPEC2 remerquer remerquassent V;IPFV;SBJV;PL;3;PST remerquer remerqueroys V;COND;SG;1;LGSPEC2 remerquer remerque V;IND;SG;1;PRS remerquer remerquoient V;IPFV;IND;PL;3;PST;LGSPEC1 remerquer remerquent V;SBJV;PL;3;PRS remerquer remerque V;IMP;SG;2 remerquer remerqueryez V;COND;PL;2;LGSPEC2 remerquer remerquoys V;IPFV;IND;SG;1;PST;LGSPEC2 remerquer remerquerent V;PFV;IND;PL;3;PST remerquer remerquasse V;IPFV;SBJV;SG;1;PST remerquer remerqua V;PFV;IND;SG;1;PST remerquer remerquons V;IND;PL;1;PRS remerquer remerquions V;IPFV;IND;PL;1;PST;LGSPEC1 denunchier denunchies V;IND;SG;2;PRS denunchier denunchient V;IND;PL;3;PRS denunchier denunchierez V;IND;PL;2;FUT denunchier denunchia V;PFV;IND;SG;3;PST denunchier denunchieryez V;COND;PL;2;LGSPEC2 denunchier denunchient V;SBJV;PL;3;PRS denunchier denunchieroys V;COND;SG;1;LGSPEC2 denunchier denunchiassions V;IPFV;SBJV;PL;1;PST denunchier denunchiast V;IPFV;SBJV;SG;3;PST denunchier denunchieriez V;COND;PL;2;LGSPEC1 denunchier denunchioyt V;IPFV;IND;SG;3;PST;LGSPEC2 denunchier denunchiasmes V;PFV;IND;PL;1;PST denunchier denunchieray V;IND;SG;1;FUT;LGSPEC2 denunchier denunchier V;NFIN denunchier denunchierois V;COND;SG;2;LGSPEC1 denunchier denunchiez V;SBJV;PL;2;PRS denunchier denunchie V;SBJV;SG;1;PRS denunchier denunchiasse V;IPFV;SBJV;SG;1;PST denunchier denunchie V;IND;SG;1;PRS denunchier denunchieroyent V;COND;PL;3;LGSPEC2 denunchier denunchiyez V;IPFV;IND;PL;2;PST;LGSPEC2 denunchier denunchierai V;IND;SG;1;FUT;LGSPEC1 denunchier denunchieront V;IND;PL;3;FUT denunchier denunchia V;PFV;IND;SG;1;PST denunchier denunchiions V;IPFV;IND;PL;1;PST;LGSPEC1 denunchier denunchierent V;PFV;IND;PL;3;PST denunchier denunchie V;SBJV;SG;3;PRS denunchier denunchiois V;IPFV;IND;SG;1;PST;LGSPEC1 denunchier denunchiassent V;IPFV;SBJV;PL;3;PST denunchier denunchiasses V;IPFV;SBJV;SG;2;PST denunchier denunchieroyt V;COND;SG;3;LGSPEC2 denunchier denunchioys V;IPFV;IND;SG;1;PST;LGSPEC2 denunchier denunchiassiez V;IPFV;SBJV;PL;2;PST denunchier denunchiiez V;IPFV;IND;PL;2;PST;LGSPEC1 denunchier denunchierons V;IND;PL;1;FUT denunchier denunchieras V;IND;SG;2;FUT denunchier denunchierois V;COND;SG;1;LGSPEC1 denunchier denunchieroit V;COND;SG;3;LGSPEC1 denunchier denunchioit V;IPFV;IND;SG;3;PST;LGSPEC1 denunchier denunchions V;IMP;PL;1 denunchier denunchioys V;IPFV;IND;SG;2;PST;LGSPEC2 denunchier denunchiez V;IMP;PL;2 denunchier denunchieryons V;COND;PL;1;LGSPEC2 denunchier denunchiastes V;PFV;IND;PL;2;PST denunchier denunchiera V;IND;SG;3;FUT denunchier denunchieroys V;COND;SG;2;LGSPEC2 denunchier denunchiez V;IND;PL;2;PRS denunchier denunchieroient V;COND;PL;3;LGSPEC1 denunchier denunchiyons V;IPFV;IND;PL;1;PST;LGSPEC2 denunchier denunchioient V;IPFV;IND;PL;3;PST;LGSPEC1 denunchier denunchions V;SBJV;PL;1;PRS denunchier denunchioyent V;IPFV;IND;PL;3;PST;LGSPEC2 denunchier denunchias V;PFV;IND;SG;2;PST denunchier denunchierions V;COND;PL;1;LGSPEC1 denunchier denunchies V;SBJV;SG;2;PRS denunchier denunchie V;IND;SG;3;PRS denunchier denunchie V;IMP;SG;2 denunchier denunchiois V;IPFV;IND;SG;2;PST;LGSPEC1 denunchier denunchions V;IND;PL;1;PRS approuvender approuvendassent V;IPFV;SBJV;PL;3;PST approuvender approuvendastes V;PFV;IND;PL;2;PST approuvender approuvendois V;IPFV;IND;SG;1;PST;LGSPEC1 approuvender approuvenda V;PFV;IND;SG;3;PST approuvender approuvendiez V;IPFV;IND;PL;2;PST;LGSPEC1 approuvender approuvendas V;PFV;IND;SG;2;PST approuvender approuvendez V;IMP;PL;2 approuvender approuvenderois V;COND;SG;2;LGSPEC1 approuvender approuvendez V;SBJV;PL;2;PRS approuvender approuvendions V;IPFV;IND;PL;1;PST;LGSPEC1 approuvender approuvenderas V;IND;SG;2;FUT approuvender approuvenderoyt V;COND;SG;3;LGSPEC2 approuvender approuvendasse V;IPFV;SBJV;SG;1;PST approuvender approuvendoyent V;IPFV;IND;PL;3;PST;LGSPEC2 approuvender approuvenderont V;IND;PL;3;FUT approuvender approuvenderons V;IND;PL;1;FUT approuvender approuvendasses V;IPFV;SBJV;SG;2;PST approuvender approuvenderyez V;COND;PL;2;LGSPEC2 approuvender approuvenderions V;COND;PL;1;LGSPEC1 approuvender approuvenderoient V;COND;PL;3;LGSPEC1 approuvender approuvenderoyent V;COND;PL;3;LGSPEC2 approuvender approuvendoys V;IPFV;IND;SG;2;PST;LGSPEC2 approuvender approuvendassiez V;IPFV;SBJV;PL;2;PST approuvender approuvender V;NFIN approuvender approuvendes V;SBJV;SG;2;PRS approuvender approuvendois V;IPFV;IND;SG;2;PST;LGSPEC1 approuvender approuvenderay V;IND;SG;1;FUT;LGSPEC2 approuvender approuvendera V;IND;SG;3;FUT approuvender approuvenderent V;PFV;IND;PL;3;PST approuvender approuvendoit V;IPFV;IND;SG;3;PST;LGSPEC1 approuvender approuvende V;IND;SG;3;PRS approuvender approuvendyons V;IPFV;IND;PL;1;PST;LGSPEC2 approuvender approuvendez V;IND;PL;2;PRS approuvender approuvendasmes V;PFV;IND;PL;1;PST approuvender approuvenderez V;IND;PL;2;FUT approuvender approuvendent V;SBJV;PL;3;PRS approuvender approuvenderai V;IND;SG;1;FUT;LGSPEC1 approuvender approuvende V;IND;SG;1;PRS approuvender approuvenderiez V;COND;PL;2;LGSPEC1 approuvender approuvendast V;IPFV;SBJV;SG;3;PST approuvender approuvenderoys V;COND;SG;2;LGSPEC2 approuvender approuvende V;SBJV;SG;3;PRS approuvender approuvenderoit V;COND;SG;3;LGSPEC1 approuvender approuvenderoys V;COND;SG;1;LGSPEC2 approuvender approuvendons V;IMP;PL;1 approuvender approuvenda V;PFV;IND;SG;1;PST approuvender approuvenderyons V;COND;PL;1;LGSPEC2 approuvender approuvendoys V;IPFV;IND;SG;1;PST;LGSPEC2 approuvender approuvenderois V;COND;SG;1;LGSPEC1 approuvender approuvende V;SBJV;SG;1;PRS approuvender approuvendent V;IND;PL;3;PRS approuvender approuvendyez V;IPFV;IND;PL;2;PST;LGSPEC2 approuvender approuvendons V;IND;PL;1;PRS approuvender approuvendes V;IND;SG;2;PRS approuvender approuvendons V;SBJV;PL;1;PRS approuvender approuvende V;IMP;SG;2 approuvender approuvendassions V;IPFV;SBJV;PL;1;PST approuvender approuvendoyt V;IPFV;IND;SG;3;PST;LGSPEC2 approuvender approuvendoient V;IPFV;IND;PL;3;PST;LGSPEC1 remonstrer remonstrez V;IND;PL;2;PRS remonstrer remonstra V;PFV;IND;SG;1;PST remonstrer remonstroient V;IPFV;IND;PL;3;PST;LGSPEC1 remonstrer remonstrerai V;IND;SG;1;FUT;LGSPEC1 remonstrer remonstres V;IND;SG;2;PRS remonstrer remonstrent V;IND;PL;3;PRS remonstrer remonstre V;SBJV;SG;3;PRS remonstrer remonstrerois V;COND;SG;1;LGSPEC1 remonstrer remonstrois V;IPFV;IND;SG;1;PST;LGSPEC1 remonstrer remonstroys V;IPFV;IND;SG;2;PST;LGSPEC2 remonstrer remonstras V;PFV;IND;SG;2;PST remonstrer remonstrasmes V;PFV;IND;PL;1;PST remonstrer remonstrassent V;IPFV;SBJV;PL;3;PST remonstrer remonstrent V;SBJV;PL;3;PRS remonstrer remonstre V;IND;SG;3;PRS remonstrer remonstrast V;IPFV;SBJV;SG;3;PST remonstrer remonstroyent V;IPFV;IND;PL;3;PST;LGSPEC2 remonstrer remonstrerez V;IND;PL;2;FUT remonstrer remonstreryez V;COND;PL;2;LGSPEC2 remonstrer remonstrons V;SBJV;PL;1;PRS remonstrer remonstrasses V;IPFV;SBJV;SG;2;PST remonstrer remonstre V;SBJV;SG;1;PRS remonstrer remonstrerions V;COND;PL;1;LGSPEC1 remonstrer remonstreroys V;COND;SG;2;LGSPEC2 remonstrer remonstreront V;IND;PL;3;FUT remonstrer remonstrerons V;IND;PL;1;FUT remonstrer remonstryons V;IPFV;IND;PL;1;PST;LGSPEC2 remonstrer remonstreriez V;COND;PL;2;LGSPEC1 remonstrer remonstreryons V;COND;PL;1;LGSPEC2 remonstrer remonstreroyent V;COND;PL;3;LGSPEC2 remonstrer remonstriez V;IPFV;IND;PL;2;PST;LGSPEC1 remonstrer remonstres V;SBJV;SG;2;PRS remonstrer remonstre V;IMP;SG;2 remonstrer remonstre V;IND;SG;1;PRS remonstrer remonstreras V;IND;SG;2;FUT remonstrer remonstrera V;IND;SG;3;FUT remonstrer remonstrois V;IPFV;IND;SG;2;PST;LGSPEC1 remonstrer remonstra V;PFV;IND;SG;3;PST remonstrer remonstreroys V;COND;SG;1;LGSPEC2 remonstrer remonstrasse V;IPFV;SBJV;SG;1;PST remonstrer remonstroys V;IPFV;IND;SG;1;PST;LGSPEC2 remonstrer remonstrons V;IMP;PL;1 remonstrer remonstrerent V;PFV;IND;PL;3;PST remonstrer remonstrez V;SBJV;PL;2;PRS remonstrer remonstreray V;IND;SG;1;FUT;LGSPEC2 remonstrer remonstrassiez V;IPFV;SBJV;PL;2;PST remonstrer remonstrastes V;PFV;IND;PL;2;PST remonstrer remonstreroit V;COND;SG;3;LGSPEC1 remonstrer remonstrerois V;COND;SG;2;LGSPEC1 remonstrer remonstreroient V;COND;PL;3;LGSPEC1 remonstrer remonstrons V;IND;PL;1;PRS remonstrer remonstrez V;IMP;PL;2 remonstrer remonstroyt V;IPFV;IND;SG;3;PST;LGSPEC2 remonstrer remonstrions V;IPFV;IND;PL;1;PST;LGSPEC1 remonstrer remonstryez V;IPFV;IND;PL;2;PST;LGSPEC2 remonstrer remonstrassions V;IPFV;SBJV;PL;1;PST remonstrer remonstroit V;IPFV;IND;SG;3;PST;LGSPEC1 remonstrer remonstreroyt V;COND;SG;3;LGSPEC2 remonstrer remonstrer V;NFIN estoffer estoffe V;IND;SG;3;PRS estoffer estoffe V;IMP;SG;2 estoffer estoffois V;IPFV;IND;SG;1;PST;LGSPEC1 estoffer estoffions V;IPFV;IND;PL;1;PST;LGSPEC1 estoffer estofferay V;IND;SG;1;FUT;LGSPEC2 estoffer estoffoient V;IPFV;IND;PL;3;PST;LGSPEC1 estoffer estoffassions V;IPFV;SBJV;PL;1;PST estoffer estoffast V;IPFV;SBJV;SG;3;PST estoffer estoffa V;PFV;IND;SG;1;PST estoffer estofferoyent V;COND;PL;3;LGSPEC2 estoffer estoffastes V;PFV;IND;PL;2;PST estoffer estoffassent V;IPFV;SBJV;PL;3;PST estoffer estoffasmes V;PFV;IND;PL;1;PST estoffer estoffes V;IND;SG;2;PRS estoffer estoffent V;IND;PL;3;PRS estoffer estoffyons V;IPFV;IND;PL;1;PST;LGSPEC2 estoffer estoffoyt V;IPFV;IND;SG;3;PST;LGSPEC2 estoffer estofferois V;COND;SG;1;LGSPEC1 estoffer estofferont V;IND;PL;3;FUT estoffer estoffent V;SBJV;PL;3;PRS estoffer estoffons V;IND;PL;1;PRS estoffer estoffas V;PFV;IND;SG;2;PST estoffer estoffassiez V;IPFV;SBJV;PL;2;PST estoffer estoffoit V;IPFV;IND;SG;3;PST;LGSPEC1 estoffer estoffiez V;IPFV;IND;PL;2;PST;LGSPEC1 estoffer estoffez V;IMP;PL;2 estoffer estoffoyent V;IPFV;IND;PL;3;PST;LGSPEC2 estoffer estoffa V;PFV;IND;SG;3;PST estoffer estofferai V;IND;SG;1;FUT;LGSPEC1 estoffer estoffasse V;IPFV;SBJV;SG;1;PST estoffer estoffois V;IPFV;IND;SG;2;PST;LGSPEC1 estoffer estofferas V;IND;SG;2;FUT estoffer estoffe V;IND;SG;1;PRS estoffer estofferions V;COND;PL;1;LGSPEC1 estoffer estofferons V;IND;PL;1;FUT estoffer estoffes V;SBJV;SG;2;PRS estoffer estofferez V;IND;PL;2;FUT estoffer estofferent V;PFV;IND;PL;3;PST estoffer estofferoys V;COND;SG;2;LGSPEC2 estoffer estofferoys V;COND;SG;1;LGSPEC2 estoffer estoffez V;IND;PL;2;PRS estoffer estoffyez V;IPFV;IND;PL;2;PST;LGSPEC2 estoffer estoffe V;SBJV;SG;3;PRS estoffer estoffasses V;IPFV;SBJV;SG;2;PST estoffer estofferoyt V;COND;SG;3;LGSPEC2 estoffer estoffez V;SBJV;PL;2;PRS estoffer estoffoys V;IPFV;IND;SG;1;PST;LGSPEC2 estoffer estoffoys V;IPFV;IND;SG;2;PST;LGSPEC2 estoffer estoffons V;SBJV;PL;1;PRS estoffer estofferyons V;COND;PL;1;LGSPEC2 estoffer estofferyez V;COND;PL;2;LGSPEC2 estoffer estofferoit V;COND;SG;3;LGSPEC1 estoffer estofferiez V;COND;PL;2;LGSPEC1 estoffer estoffer V;NFIN estoffer estofferoient V;COND;PL;3;LGSPEC1 estoffer estofferois V;COND;SG;2;LGSPEC1 estoffer estoffera V;IND;SG;3;FUT estoffer estoffe V;SBJV;SG;1;PRS estoffer estoffons V;IMP;PL;1 deshonnourer deshonnouras V;PFV;IND;SG;2;PST deshonnourer deshonnourerent V;PFV;IND;PL;3;PST deshonnourer deshonnouryez V;IPFV;IND;PL;2;PST;LGSPEC2 deshonnourer deshonnourois V;IPFV;IND;SG;2;PST;LGSPEC1 deshonnourer deshonnourent V;SBJV;PL;3;PRS deshonnourer deshonnoure V;IMP;SG;2 deshonnourer deshonnoure V;SBJV;SG;1;PRS deshonnourer deshonnoura V;PFV;IND;SG;3;PST deshonnourer deshonnourerai V;IND;SG;1;FUT;LGSPEC1 deshonnourer deshonnouroyt V;IPFV;IND;SG;3;PST;LGSPEC2 deshonnourer deshonnourastes V;PFV;IND;PL;2;PST deshonnourer deshonnourerois V;COND;SG;1;LGSPEC1 deshonnourer deshonnoureroys V;COND;SG;1;LGSPEC2 deshonnourer deshonnouroit V;IPFV;IND;SG;3;PST;LGSPEC1 deshonnourer deshonnoures V;SBJV;SG;2;PRS deshonnourer deshonnoure V;SBJV;SG;3;PRS deshonnourer deshonnouroys V;IPFV;IND;SG;2;PST;LGSPEC2 deshonnourer deshonnoure V;IND;SG;1;PRS deshonnourer deshonnourasse V;IPFV;SBJV;SG;1;PST deshonnourer deshonnourer V;NFIN deshonnourer deshonnourerions V;COND;PL;1;LGSPEC1 deshonnourer deshonnourent V;IND;PL;3;PRS deshonnourer deshonnoureroit V;COND;SG;3;LGSPEC1 deshonnourer deshonnoures V;IND;SG;2;PRS deshonnourer deshonnoureryez V;COND;PL;2;LGSPEC2 deshonnourer deshonnoureroyt V;COND;SG;3;LGSPEC2 deshonnourer deshonnoureroyent V;COND;PL;3;LGSPEC2 deshonnourer deshonnoureriez V;COND;PL;2;LGSPEC1 deshonnourer deshonnourast V;IPFV;SBJV;SG;3;PST deshonnourer deshonnouryons V;IPFV;IND;PL;1;PST;LGSPEC2 deshonnourer deshonnourez V;SBJV;PL;2;PRS deshonnourer deshonnourerois V;COND;SG;2;LGSPEC1 deshonnourer deshonnourassions V;IPFV;SBJV;PL;1;PST deshonnourer deshonnoureras V;IND;SG;2;FUT deshonnourer deshonnoureroient V;COND;PL;3;LGSPEC1 deshonnourer deshonnourez V;IND;PL;2;PRS deshonnourer deshonnourons V;SBJV;PL;1;PRS deshonnourer deshonnouroient V;IPFV;IND;PL;3;PST;LGSPEC1 deshonnourer deshonnoureray V;IND;SG;1;FUT;LGSPEC2 deshonnourer deshonnourez V;IMP;PL;2 deshonnourer deshonnoureryons V;COND;PL;1;LGSPEC2 deshonnourer deshonnourons V;IND;PL;1;PRS deshonnourer deshonnoureront V;IND;PL;3;FUT deshonnourer deshonnourons V;IMP;PL;1 deshonnourer deshonnouroyent V;IPFV;IND;PL;3;PST;LGSPEC2 deshonnourer deshonnourions V;IPFV;IND;PL;1;PST;LGSPEC1 deshonnourer deshonnouroys V;IPFV;IND;SG;1;PST;LGSPEC2 deshonnourer deshonnourasses V;IPFV;SBJV;SG;2;PST deshonnourer deshonnourerons V;IND;PL;1;FUT deshonnourer deshonnouriez V;IPFV;IND;PL;2;PST;LGSPEC1 deshonnourer deshonnoure V;IND;SG;3;PRS deshonnourer deshonnourois V;IPFV;IND;SG;1;PST;LGSPEC1 deshonnourer deshonnourassiez V;IPFV;SBJV;PL;2;PST deshonnourer deshonnoureroys V;COND;SG;2;LGSPEC2 deshonnourer deshonnoura V;PFV;IND;SG;1;PST deshonnourer deshonnourera V;IND;SG;3;FUT deshonnourer deshonnourassent V;IPFV;SBJV;PL;3;PST deshonnourer deshonnourerez V;IND;PL;2;FUT deshonnourer deshonnourasmes V;PFV;IND;PL;1;PST evaporer evapora V;PFV;IND;SG;3;PST evaporer evaporiez V;IPFV;IND;PL;2;PST;LGSPEC1 evaporer evaporoys V;IPFV;IND;SG;1;PST;LGSPEC2 evaporer evaporez V;IMP;PL;2 evaporer evaporerons V;IND;PL;1;FUT evaporer evaporerent V;PFV;IND;PL;3;PST evaporer evaporeray V;IND;SG;1;FUT;LGSPEC2 evaporer evaporeroys V;COND;SG;2;LGSPEC2 evaporer evaporoit V;IPFV;IND;SG;3;PST;LGSPEC1 evaporer evapore V;IND;SG;1;PRS evaporer evapore V;IND;SG;3;PRS evaporer evaporeroit V;COND;SG;3;LGSPEC1 evaporer evaporasse V;IPFV;SBJV;SG;1;PST evaporer evapores V;IND;SG;2;PRS evaporer evaporoyt V;IPFV;IND;SG;3;PST;LGSPEC2 evaporer evaporyez V;IPFV;IND;PL;2;PST;LGSPEC2 evaporer evaporons V;IND;PL;1;PRS evaporer evapores V;SBJV;SG;2;PRS evaporer evaporasses V;IPFV;SBJV;SG;2;PST evaporer evaporerois V;COND;SG;1;LGSPEC1 evaporer evaporerions V;COND;PL;1;LGSPEC1 evaporer evaporons V;IMP;PL;1 evaporer evaporoys V;IPFV;IND;SG;2;PST;LGSPEC2 evaporer evaporassent V;IPFV;SBJV;PL;3;PST evaporer evaporer V;NFIN evaporer evapora V;PFV;IND;SG;1;PST evaporer evaporeroyt V;COND;SG;3;LGSPEC2 evaporer evaporez V;SBJV;PL;2;PRS evaporer evaporoyent V;IPFV;IND;PL;3;PST;LGSPEC2 evaporer evaporeroyent V;COND;PL;3;LGSPEC2 evaporer evaporions V;IPFV;IND;PL;1;PST;LGSPEC1 evaporer evaporoient V;IPFV;IND;PL;3;PST;LGSPEC1 evaporer evaporons V;SBJV;PL;1;PRS evaporer evaporent V;IND;PL;3;PRS evaporer evaporois V;IPFV;IND;SG;2;PST;LGSPEC1 evaporer evaporera V;IND;SG;3;FUT evaporer evaporeroys V;COND;SG;1;LGSPEC2 evaporer evaporassiez V;IPFV;SBJV;PL;2;PST evaporer evapore V;IMP;SG;2 evaporer evapore V;SBJV;SG;3;PRS evaporer evaporent V;SBJV;PL;3;PRS evaporer evaporassions V;IPFV;SBJV;PL;1;PST evaporer evaporois V;IPFV;IND;SG;1;PST;LGSPEC1 evaporer evaporeryons V;COND;PL;1;LGSPEC2 evaporer evaporastes V;PFV;IND;PL;2;PST evaporer evapore V;SBJV;SG;1;PRS evaporer evaporeryez V;COND;PL;2;LGSPEC2 evaporer evaporeroient V;COND;PL;3;LGSPEC1 evaporer evaporerois V;COND;SG;2;LGSPEC1 evaporer evaporez V;IND;PL;2;PRS evaporer evaporerez V;IND;PL;2;FUT evaporer evaporast V;IPFV;SBJV;SG;3;PST evaporer evaporerai V;IND;SG;1;FUT;LGSPEC1 evaporer evaporeront V;IND;PL;3;FUT evaporer evaporasmes V;PFV;IND;PL;1;PST evaporer evaporas V;PFV;IND;SG;2;PST evaporer evaporeriez V;COND;PL;2;LGSPEC1 evaporer evaporyons V;IPFV;IND;PL;1;PST;LGSPEC2 evaporer evaporeras V;IND;SG;2;FUT marier marie V;IMP;SG;2 marier marierois V;COND;SG;1;LGSPEC1 marier marieryez V;COND;PL;2;LGSPEC2 marier marierai V;IND;SG;1;FUT;LGSPEC1 marier marieras V;IND;SG;2;FUT marier maria V;PFV;IND;SG;1;PST marier maries V;SBJV;SG;2;PRS marier mariois V;IPFV;IND;SG;1;PST;LGSPEC1 marier mariastes V;PFV;IND;PL;2;PST marier mariassent V;IPFV;SBJV;PL;3;PST marier marierions V;COND;PL;1;LGSPEC1 marier marier V;NFIN marier marioyent V;IPFV;IND;PL;3;PST;LGSPEC2 marier mariois V;IPFV;IND;SG;2;PST;LGSPEC1 marier marioient V;IPFV;IND;PL;3;PST;LGSPEC1 marier mariera V;IND;SG;3;FUT marier marierons V;IND;PL;1;FUT marier mariez V;IMP;PL;2 marier marie V;IND;SG;1;PRS marier marions V;SBJV;PL;1;PRS marier marierent V;PFV;IND;PL;3;PST marier mariassiez V;IPFV;SBJV;PL;2;PST marier mariasmes V;PFV;IND;PL;1;PST marier marioys V;IPFV;IND;SG;1;PST;LGSPEC2 marier marions V;IMP;PL;1 marier marias V;PFV;IND;SG;2;PST marier maria V;PFV;IND;SG;3;PST marier marient V;SBJV;PL;3;PRS marier marierez V;IND;PL;2;FUT marier marieroyent V;COND;PL;3;LGSPEC2 marier marioyt V;IPFV;IND;SG;3;PST;LGSPEC2 marier mariez V;IND;PL;2;PRS marier mariyez V;IPFV;IND;PL;2;PST;LGSPEC2 marier maries V;IND;SG;2;PRS marier marioys V;IPFV;IND;SG;2;PST;LGSPEC2 marier marie V;IND;SG;3;PRS marier mariast V;IPFV;SBJV;SG;3;PST marier marieroit V;COND;SG;3;LGSPEC1 marier mariasse V;IPFV;SBJV;SG;1;PST marier mariions V;IPFV;IND;PL;1;PST;LGSPEC1 marier marieront V;IND;PL;3;FUT marier marieriez V;COND;PL;2;LGSPEC1 marier marieroys V;COND;SG;1;LGSPEC2 marier marions V;IND;PL;1;PRS marier marient V;IND;PL;3;PRS marier marieroyt V;COND;SG;3;LGSPEC2 marier marie V;SBJV;SG;1;PRS marier mariassions V;IPFV;SBJV;PL;1;PST marier mariiez V;IPFV;IND;PL;2;PST;LGSPEC1 marier mariasses V;IPFV;SBJV;SG;2;PST marier marieroient V;COND;PL;3;LGSPEC1 marier marierois V;COND;SG;2;LGSPEC1 marier mariez V;SBJV;PL;2;PRS marier marieroys V;COND;SG;2;LGSPEC2 marier mariyons V;IPFV;IND;PL;1;PST;LGSPEC2 marier marieray V;IND;SG;1;FUT;LGSPEC2 marier marioit V;IPFV;IND;SG;3;PST;LGSPEC1 marier marie V;SBJV;SG;3;PRS marier marieryons V;COND;PL;1;LGSPEC2 entrer entrer V;NFIN entrer entrerois V;COND;SG;2;LGSPEC1 entrer entrons V;IMP;PL;1 entrer entroit V;IPFV;IND;SG;3;PST;LGSPEC1 entrer entrois V;IPFV;IND;SG;2;PST;LGSPEC1 entrer entre V;IND;SG;3;PRS entrer entrera V;IND;SG;3;FUT entrer entre V;IND;SG;1;PRS entrer entrerons V;IND;PL;1;FUT entrer entreroys V;COND;SG;2;LGSPEC2 entrer entrerai V;IND;SG;1;FUT;LGSPEC1 entrer entriez V;IPFV;IND;PL;2;PST;LGSPEC1 entrer entrasmes V;PFV;IND;PL;1;PST entrer entrois V;IPFV;IND;SG;1;PST;LGSPEC1 entrer entrons V;IND;PL;1;PRS entrer entrez V;IND;PL;2;PRS entrer entrions V;IPFV;IND;PL;1;PST;LGSPEC1 entrer entrastes V;PFV;IND;PL;2;PST entrer entre V;SBJV;SG;1;PRS entrer entreryons V;COND;PL;1;LGSPEC2 entrer entreront V;IND;PL;3;FUT entrer entreroyent V;COND;PL;3;LGSPEC2 entrer entreroys V;COND;SG;1;LGSPEC2 entrer entrerent V;PFV;IND;PL;3;PST entrer entrez V;IMP;PL;2 entrer entrassent V;IPFV;SBJV;PL;3;PST entrer entrasses V;IPFV;SBJV;SG;2;PST entrer entreriez V;COND;PL;2;LGSPEC1 entrer entres V;SBJV;SG;2;PRS entrer entrerois V;COND;SG;1;LGSPEC1 entrer entrasse V;IPFV;SBJV;SG;1;PST entrer entryez V;IPFV;IND;PL;2;PST;LGSPEC2 entrer entrerez V;IND;PL;2;FUT entrer entras V;PFV;IND;SG;2;PST entrer entre V;SBJV;SG;3;PRS entrer entroys V;IPFV;IND;SG;1;PST;LGSPEC2 entrer entryons V;IPFV;IND;PL;1;PST;LGSPEC2 entrer entrerions V;COND;PL;1;LGSPEC1 entrer entreroyt V;COND;SG;3;LGSPEC2 entrer entrons V;SBJV;PL;1;PRS entrer entrent V;SBJV;PL;3;PRS entrer entreras V;IND;SG;2;FUT entrer entrast V;IPFV;SBJV;SG;3;PST entrer entrez V;SBJV;PL;2;PRS entrer entra V;PFV;IND;SG;1;PST entrer entrassiez V;IPFV;SBJV;PL;2;PST entrer entroys V;IPFV;IND;SG;2;PST;LGSPEC2 entrer entrassions V;IPFV;SBJV;PL;1;PST entrer entroient V;IPFV;IND;PL;3;PST;LGSPEC1 entrer entreroit V;COND;SG;3;LGSPEC1 entrer entreray V;IND;SG;1;FUT;LGSPEC2 entrer entreryez V;COND;PL;2;LGSPEC2 entrer entroyt V;IPFV;IND;SG;3;PST;LGSPEC2 entrer entroyent V;IPFV;IND;PL;3;PST;LGSPEC2 entrer entres V;IND;SG;2;PRS entrer entra V;PFV;IND;SG;3;PST entrer entre V;IMP;SG;2 entrer entreroient V;COND;PL;3;LGSPEC1 entrer entrent V;IND;PL;3;PRS enfelonner enfelonnez V;IMP;PL;2 enfelonner enfelonniez V;IPFV;IND;PL;2;PST;LGSPEC1 enfelonner enfelonneroient V;COND;PL;3;LGSPEC1 enfelonner enfelonnons V;SBJV;PL;1;PRS enfelonner enfelonnoys V;IPFV;IND;SG;1;PST;LGSPEC2 enfelonner enfelonnerions V;COND;PL;1;LGSPEC1 enfelonner enfelonnoyt V;IPFV;IND;SG;3;PST;LGSPEC2 enfelonner enfelonnerent V;PFV;IND;PL;3;PST enfelonner enfelonnas V;PFV;IND;SG;2;PST enfelonner enfelonnois V;IPFV;IND;SG;1;PST;LGSPEC1 enfelonner enfelonne V;IND;SG;3;PRS enfelonner enfelonne V;IMP;SG;2 enfelonner enfelonnassiez V;IPFV;SBJV;PL;2;PST enfelonner enfelonne V;SBJV;SG;3;PRS enfelonner enfelonneryez V;COND;PL;2;LGSPEC2 enfelonner enfelonne V;IND;SG;1;PRS enfelonner enfelonnerons V;IND;PL;1;FUT enfelonner enfelonnoit V;IPFV;IND;SG;3;PST;LGSPEC1 enfelonner enfelonneroit V;COND;SG;3;LGSPEC1 enfelonner enfelonnasses V;IPFV;SBJV;SG;2;PST enfelonner enfelonnerois V;COND;SG;1;LGSPEC1 enfelonner enfelonneroyent V;COND;PL;3;LGSPEC2 enfelonner enfelonneront V;IND;PL;3;FUT enfelonner enfelonnoient V;IPFV;IND;PL;3;PST;LGSPEC1 enfelonner enfelonnast V;IPFV;SBJV;SG;3;PST enfelonner enfelonnastes V;PFV;IND;PL;2;PST enfelonner enfelonneroys V;COND;SG;2;LGSPEC2 enfelonner enfelonnes V;SBJV;SG;2;PRS enfelonner enfelonnoyent V;IPFV;IND;PL;3;PST;LGSPEC2 enfelonner enfelonnons V;IND;PL;1;PRS enfelonner enfelonnez V;SBJV;PL;2;PRS enfelonner enfelonnez V;IND;PL;2;PRS enfelonner enfelonnyons V;IPFV;IND;PL;1;PST;LGSPEC2 enfelonner enfelonnyez V;IPFV;IND;PL;2;PST;LGSPEC2 enfelonner enfelonnerois V;COND;SG;2;LGSPEC1 enfelonner enfelonnent V;SBJV;PL;3;PRS enfelonner enfelonnassent V;IPFV;SBJV;PL;3;PST enfelonner enfelonnent V;IND;PL;3;PRS enfelonner enfelonneriez V;COND;PL;2;LGSPEC1 enfelonner enfelonnes V;IND;SG;2;PRS enfelonner enfelonneras V;IND;SG;2;FUT enfelonner enfelonnera V;IND;SG;3;FUT enfelonner enfelonna V;PFV;IND;SG;3;PST enfelonner enfelonnerez V;IND;PL;2;FUT enfelonner enfelonneroys V;COND;SG;1;LGSPEC2 enfelonner enfelonnois V;IPFV;IND;SG;2;PST;LGSPEC1 enfelonner enfelonnons V;IMP;PL;1 enfelonner enfelonnassions V;IPFV;SBJV;PL;1;PST enfelonner enfelonnions V;IPFV;IND;PL;1;PST;LGSPEC1 enfelonner enfelonna V;PFV;IND;SG;1;PST enfelonner enfelonnasse V;IPFV;SBJV;SG;1;PST enfelonner enfelonneray V;IND;SG;1;FUT;LGSPEC2 enfelonner enfelonnasmes V;PFV;IND;PL;1;PST enfelonner enfelonnerai V;IND;SG;1;FUT;LGSPEC1 enfelonner enfelonner V;NFIN enfelonner enfelonneroyt V;COND;SG;3;LGSPEC2 enfelonner enfelonneryons V;COND;PL;1;LGSPEC2 enfelonner enfelonne V;SBJV;SG;1;PRS enfelonner enfelonnoys V;IPFV;IND;SG;2;PST;LGSPEC2 resver resve V;SBJV;SG;3;PRS resver resvast V;IPFV;SBJV;SG;3;PST resver resve V;IND;SG;3;PRS resver resvoys V;IPFV;IND;SG;2;PST;LGSPEC2 resver resveroys V;COND;SG;2;LGSPEC2 resver resveroyent V;COND;PL;3;LGSPEC2 resver resvez V;IMP;PL;2 resver resvent V;SBJV;PL;3;PRS resver resvois V;IPFV;IND;SG;1;PST;LGSPEC1 resver resveront V;IND;PL;3;FUT resver resva V;PFV;IND;SG;3;PST resver resve V;SBJV;SG;1;PRS resver resviez V;IPFV;IND;PL;2;PST;LGSPEC1 resver resverai V;IND;SG;1;FUT;LGSPEC1 resver resvera V;IND;SG;3;FUT resver resveroit V;COND;SG;3;LGSPEC1 resver resvyez V;IPFV;IND;PL;2;PST;LGSPEC2 resver resvons V;IMP;PL;1 resver resverons V;IND;PL;1;FUT resver resveray V;IND;SG;1;FUT;LGSPEC2 resver resvoys V;IPFV;IND;SG;1;PST;LGSPEC2 resver resvois V;IPFV;IND;SG;2;PST;LGSPEC1 resver resvoit V;IPFV;IND;SG;3;PST;LGSPEC1 resver resvez V;SBJV;PL;2;PRS resver resveroient V;COND;PL;3;LGSPEC1 resver resves V;IND;SG;2;PRS resver resverent V;PFV;IND;PL;3;PST resver resvasses V;IPFV;SBJV;SG;2;PST resver resvions V;IPFV;IND;PL;1;PST;LGSPEC1 resver resvassiez V;IPFV;SBJV;PL;2;PST resver resver V;NFIN resver resves V;SBJV;SG;2;PRS resver resvas V;PFV;IND;SG;2;PST resver resva V;PFV;IND;SG;1;PST resver resveryez V;COND;PL;2;LGSPEC2 resver resverois V;COND;SG;2;LGSPEC1 resver resveriez V;COND;PL;2;LGSPEC1 resver resveroyt V;COND;SG;3;LGSPEC2 resver resverions V;COND;PL;1;LGSPEC1 resver resveryons V;COND;PL;1;LGSPEC2 resver resveras V;IND;SG;2;FUT resver resvassent V;IPFV;SBJV;PL;3;PST resver resvons V;SBJV;PL;1;PRS resver resve V;IND;SG;1;PRS resver resvoient V;IPFV;IND;PL;3;PST;LGSPEC1 resver resvons V;IND;PL;1;PRS resver resvent V;IND;PL;3;PRS resver resveroys V;COND;SG;1;LGSPEC2 resver resvez V;IND;PL;2;PRS resver resvasse V;IPFV;SBJV;SG;1;PST resver resve V;IMP;SG;2 resver resverois V;COND;SG;1;LGSPEC1 resver resvassions V;IPFV;SBJV;PL;1;PST resver resverez V;IND;PL;2;FUT resver resvasmes V;PFV;IND;PL;1;PST resver resvastes V;PFV;IND;PL;2;PST resver resvyons V;IPFV;IND;PL;1;PST;LGSPEC2 resver resvoyent V;IPFV;IND;PL;3;PST;LGSPEC2 resver resvoyt V;IPFV;IND;SG;3;PST;LGSPEC2 couster coustassions V;IPFV;SBJV;PL;1;PST couster coustasmes V;PFV;IND;PL;1;PST couster cousterois V;COND;SG;2;LGSPEC1 couster coustez V;IMP;PL;2 couster couster V;NFIN couster couste V;SBJV;SG;3;PRS couster cousteroyent V;COND;PL;3;LGSPEC2 couster coustons V;IND;PL;1;PRS couster cousteroys V;COND;SG;2;LGSPEC2 couster cousteray V;IND;SG;1;FUT;LGSPEC2 couster coustois V;IPFV;IND;SG;1;PST;LGSPEC1 couster cousterons V;IND;PL;1;FUT couster couste V;IND;SG;1;PRS couster coustent V;SBJV;PL;3;PRS couster coustoient V;IPFV;IND;PL;3;PST;LGSPEC1 couster coustas V;PFV;IND;SG;2;PST couster coustassiez V;IPFV;SBJV;PL;2;PST couster coustes V;SBJV;SG;2;PRS couster cousteras V;IND;SG;2;FUT couster cousterions V;COND;PL;1;LGSPEC1 couster coustasse V;IPFV;SBJV;SG;1;PST couster coustyez V;IPFV;IND;PL;2;PST;LGSPEC2 couster coustons V;SBJV;PL;1;PRS couster cousteront V;IND;PL;3;FUT couster coustasses V;IPFV;SBJV;SG;2;PST couster coustoit V;IPFV;IND;SG;3;PST;LGSPEC1 couster coustions V;IPFV;IND;PL;1;PST;LGSPEC1 couster coustoyent V;IPFV;IND;PL;3;PST;LGSPEC2 couster coustent V;IND;PL;3;PRS couster cousteroient V;COND;PL;3;LGSPEC1 couster coustoyt V;IPFV;IND;SG;3;PST;LGSPEC2 couster coustes V;IND;SG;2;PRS couster coustois V;IPFV;IND;SG;2;PST;LGSPEC1 couster coustera V;IND;SG;3;FUT couster coustastes V;PFV;IND;PL;2;PST couster couste V;IND;SG;3;PRS couster coustez V;IND;PL;2;PRS couster coustiez V;IPFV;IND;PL;2;PST;LGSPEC1 couster cousterez V;IND;PL;2;FUT couster cousteryez V;COND;PL;2;LGSPEC2 couster couste V;IMP;SG;2 couster cousteroyt V;COND;SG;3;LGSPEC2 couster coustoys V;IPFV;IND;SG;2;PST;LGSPEC2 couster cousteriez V;COND;PL;2;LGSPEC1 couster cousterai V;IND;SG;1;FUT;LGSPEC1 couster cousterent V;PFV;IND;PL;3;PST couster couste V;SBJV;SG;1;PRS couster cousteroys V;COND;SG;1;LGSPEC2 couster coustast V;IPFV;SBJV;SG;3;PST couster coustons V;IMP;PL;1 couster cousteroit V;COND;SG;3;LGSPEC1 couster cousta V;PFV;IND;SG;1;PST couster cousteryons V;COND;PL;1;LGSPEC2 couster coustoys V;IPFV;IND;SG;1;PST;LGSPEC2 couster cousta V;PFV;IND;SG;3;PST couster cousterois V;COND;SG;1;LGSPEC1 couster coustassent V;IPFV;SBJV;PL;3;PST couster coustez V;SBJV;PL;2;PRS couster coustyons V;IPFV;IND;PL;1;PST;LGSPEC2 ieusner ieusnas V;PFV;IND;SG;2;PST ieusner ieusnez V;IMP;PL;2 ieusner ieusneriez V;COND;PL;2;LGSPEC1 ieusner ieusnoit V;IPFV;IND;SG;3;PST;LGSPEC1 ieusner ieusnassiez V;IPFV;SBJV;PL;2;PST ieusner ieusne V;IND;SG;3;PRS ieusner ieusneroys V;COND;SG;1;LGSPEC2 ieusner ieusnes V;IND;SG;2;PRS ieusner ieusnasse V;IPFV;SBJV;SG;1;PST ieusner ieusnez V;IND;PL;2;PRS ieusner ieusna V;PFV;IND;SG;1;PST ieusner ieusner V;NFIN ieusner ieusne V;IMP;SG;2 ieusner ieusne V;IND;SG;1;PRS ieusner ieusneront V;IND;PL;3;FUT ieusner ieusnyons V;IPFV;IND;PL;1;PST;LGSPEC2 ieusner ieusneryez V;COND;PL;2;LGSPEC2 ieusner ieusnasses V;IPFV;SBJV;SG;2;PST ieusner ieusnent V;IND;PL;3;PRS ieusner ieusnoys V;IPFV;IND;SG;1;PST;LGSPEC2 ieusner ieusnast V;IPFV;SBJV;SG;3;PST ieusner ieusnions V;IPFV;IND;PL;1;PST;LGSPEC1 ieusner ieusnerai V;IND;SG;1;FUT;LGSPEC1 ieusner ieusnasmes V;PFV;IND;PL;1;PST ieusner ieusnons V;IMP;PL;1 ieusner ieusnons V;SBJV;PL;1;PRS ieusner ieusneroys V;COND;SG;2;LGSPEC2 ieusner ieusneroyt V;COND;SG;3;LGSPEC2 ieusner ieusnassent V;IPFV;SBJV;PL;3;PST ieusner ieusnons V;IND;PL;1;PRS ieusner ieusnerons V;IND;PL;1;FUT ieusner ieusniez V;IPFV;IND;PL;2;PST;LGSPEC1 ieusner ieusnois V;IPFV;IND;SG;1;PST;LGSPEC1 ieusner ieusna V;PFV;IND;SG;3;PST ieusner ieusneroyent V;COND;PL;3;LGSPEC2 ieusner ieusneroient V;COND;PL;3;LGSPEC1 ieusner ieusnerent V;PFV;IND;PL;3;PST ieusner ieusnastes V;PFV;IND;PL;2;PST ieusner ieusneras V;IND;SG;2;FUT ieusner ieusnois V;IPFV;IND;SG;2;PST;LGSPEC1 ieusner ieusnoyent V;IPFV;IND;PL;3;PST;LGSPEC2 ieusner ieusneryons V;COND;PL;1;LGSPEC2 ieusner ieusneroit V;COND;SG;3;LGSPEC1 ieusner ieusnerois V;COND;SG;2;LGSPEC1 ieusner ieusnerions V;COND;PL;1;LGSPEC1 ieusner ieusne V;SBJV;SG;1;PRS ieusner ieusnera V;IND;SG;3;FUT ieusner ieusnoys V;IPFV;IND;SG;2;PST;LGSPEC2 ieusner ieusnyez V;IPFV;IND;PL;2;PST;LGSPEC2 ieusner ieusnoient V;IPFV;IND;PL;3;PST;LGSPEC1 ieusner ieusnent V;SBJV;PL;3;PRS ieusner ieusnes V;SBJV;SG;2;PRS ieusner ieusnerez V;IND;PL;2;FUT ieusner ieusneray V;IND;SG;1;FUT;LGSPEC2 ieusner ieusne V;SBJV;SG;3;PRS ieusner ieusnez V;SBJV;PL;2;PRS ieusner ieusnerois V;COND;SG;1;LGSPEC1 ieusner ieusnoyt V;IPFV;IND;SG;3;PST;LGSPEC2 ieusner ieusnassions V;IPFV;SBJV;PL;1;PST importuner importuneryons V;COND;PL;1;LGSPEC2 importuner importune V;IND;SG;1;PRS importuner importunerez V;IND;PL;2;FUT importuner importuneray V;IND;SG;1;FUT;LGSPEC2 importuner importuniez V;IPFV;IND;PL;2;PST;LGSPEC1 importuner importune V;SBJV;SG;3;PRS importuner importunerions V;COND;PL;1;LGSPEC1 importuner importuna V;PFV;IND;SG;3;PST importuner importuneroient V;COND;PL;3;LGSPEC1 importuner importunez V;IND;PL;2;PRS importuner importunerent V;PFV;IND;PL;3;PST importuner importunent V;IND;PL;3;PRS importuner importunera V;IND;SG;3;FUT importuner importunoit V;IPFV;IND;SG;3;PST;LGSPEC1 importuner importuneront V;IND;PL;3;FUT importuner importuneroys V;COND;SG;2;LGSPEC2 importuner importuneryez V;COND;PL;2;LGSPEC2 importuner importunoyent V;IPFV;IND;PL;3;PST;LGSPEC2 importuner importunons V;IMP;PL;1 importuner importunoient V;IPFV;IND;PL;3;PST;LGSPEC1 importuner importunasse V;IPFV;SBJV;SG;1;PST importuner importunez V;IMP;PL;2 importuner importunent V;SBJV;PL;3;PRS importuner importunons V;SBJV;PL;1;PRS importuner importunons V;IND;PL;1;PRS importuner importunez V;SBJV;PL;2;PRS importuner importunasses V;IPFV;SBJV;SG;2;PST importuner importuner V;NFIN importuner importuneroit V;COND;SG;3;LGSPEC1 importuner importunions V;IPFV;IND;PL;1;PST;LGSPEC1 importuner importuneroys V;COND;SG;1;LGSPEC2 importuner importune V;IMP;SG;2 importuner importunassent V;IPFV;SBJV;PL;3;PST importuner importunas V;PFV;IND;SG;2;PST importuner importunasmes V;PFV;IND;PL;1;PST importuner importunassions V;IPFV;SBJV;PL;1;PST importuner importunoys V;IPFV;IND;SG;1;PST;LGSPEC2 importuner importunoyt V;IPFV;IND;SG;3;PST;LGSPEC2 importuner importuneroyent V;COND;PL;3;LGSPEC2 importuner importuneroyt V;COND;SG;3;LGSPEC2 importuner importunyez V;IPFV;IND;PL;2;PST;LGSPEC2 importuner importunerai V;IND;SG;1;FUT;LGSPEC1 importuner importune V;IND;SG;3;PRS importuner importunois V;IPFV;IND;SG;2;PST;LGSPEC1 importuner importunerois V;COND;SG;1;LGSPEC1 importuner importunes V;IND;SG;2;PRS importuner importunerois V;COND;SG;2;LGSPEC1 importuner importunois V;IPFV;IND;SG;1;PST;LGSPEC1 importuner importunyons V;IPFV;IND;PL;1;PST;LGSPEC2 importuner importuneriez V;COND;PL;2;LGSPEC1 importuner importunassiez V;IPFV;SBJV;PL;2;PST importuner importunoys V;IPFV;IND;SG;2;PST;LGSPEC2 importuner importuneras V;IND;SG;2;FUT importuner importunastes V;PFV;IND;PL;2;PST importuner importune V;SBJV;SG;1;PRS importuner importuna V;PFV;IND;SG;1;PST importuner importunast V;IPFV;SBJV;SG;3;PST importuner importunes V;SBJV;SG;2;PRS importuner importunerons V;IND;PL;1;FUT prattiquer prattiquerions V;COND;PL;1;LGSPEC1 prattiquer prattiquas V;PFV;IND;SG;2;PST prattiquer prattiquassent V;IPFV;SBJV;PL;3;PST prattiquer prattiqueroit V;COND;SG;3;LGSPEC1 prattiquer prattiqueray V;IND;SG;1;FUT;LGSPEC2 prattiquer prattiqueroyt V;COND;SG;3;LGSPEC2 prattiquer prattiquerez V;IND;PL;2;FUT prattiquer prattiques V;IND;SG;2;PRS prattiquer prattiquoient V;IPFV;IND;PL;3;PST;LGSPEC1 prattiquer prattique V;IND;SG;1;PRS prattiquer prattiquasmes V;PFV;IND;PL;1;PST prattiquer prattiquassions V;IPFV;SBJV;PL;1;PST prattiquer prattiqua V;PFV;IND;SG;3;PST prattiquer prattiquerent V;PFV;IND;PL;3;PST prattiquer prattiqueroyent V;COND;PL;3;LGSPEC2 prattiquer prattique V;IMP;SG;2 prattiquer prattiqua V;PFV;IND;SG;1;PST prattiquer prattiquoit V;IPFV;IND;SG;3;PST;LGSPEC1 prattiquer prattiquyons V;IPFV;IND;PL;1;PST;LGSPEC2 prattiquer prattiqueront V;IND;PL;3;FUT prattiquer prattiqueroient V;COND;PL;3;LGSPEC1 prattiquer prattiquent V;SBJV;PL;3;PRS prattiquer prattiquoyt V;IPFV;IND;SG;3;PST;LGSPEC2 prattiquer prattiquastes V;PFV;IND;PL;2;PST prattiquer prattique V;SBJV;SG;3;PRS prattiquer prattiqueryez V;COND;PL;2;LGSPEC2 prattiquer prattiqueriez V;COND;PL;2;LGSPEC1 prattiquer prattiqueroys V;COND;SG;1;LGSPEC2 prattiquer prattiquons V;IND;PL;1;PRS prattiquer prattiquons V;SBJV;PL;1;PRS prattiquer prattiquerons V;IND;PL;1;FUT prattiquer prattiquez V;IMP;PL;2 prattiquer prattiqueras V;IND;SG;2;FUT prattiquer prattiquerois V;COND;SG;2;LGSPEC1 prattiquer prattique V;SBJV;SG;1;PRS prattiquer prattiqueroys V;COND;SG;2;LGSPEC2 prattiquer prattiquasse V;IPFV;SBJV;SG;1;PST prattiquer prattiquassiez V;IPFV;SBJV;PL;2;PST prattiquer prattiquasses V;IPFV;SBJV;SG;2;PST prattiquer prattiquer V;NFIN prattiquer prattiqueryons V;COND;PL;1;LGSPEC2 prattiquer prattiquerai V;IND;SG;1;FUT;LGSPEC1 prattiquer prattiquois V;IPFV;IND;SG;1;PST;LGSPEC1 prattiquer prattiquois V;IPFV;IND;SG;2;PST;LGSPEC1 prattiquer prattiquent V;IND;PL;3;PRS prattiquer prattique V;IND;SG;3;PRS prattiquer prattiquyez V;IPFV;IND;PL;2;PST;LGSPEC2 prattiquer prattiquoyent V;IPFV;IND;PL;3;PST;LGSPEC2 prattiquer prattiquons V;IMP;PL;1 prattiquer prattiquions V;IPFV;IND;PL;1;PST;LGSPEC1 prattiquer prattiquiez V;IPFV;IND;PL;2;PST;LGSPEC1 prattiquer prattiquez V;IND;PL;2;PRS prattiquer prattiquera V;IND;SG;3;FUT prattiquer prattiquoys V;IPFV;IND;SG;2;PST;LGSPEC2 prattiquer prattiquerois V;COND;SG;1;LGSPEC1 prattiquer prattiquoys V;IPFV;IND;SG;1;PST;LGSPEC2 prattiquer prattiquast V;IPFV;SBJV;SG;3;PST prattiquer prattiquez V;SBJV;PL;2;PRS prattiquer prattiques V;SBJV;SG;2;PRS saulter saulteryons V;COND;PL;1;LGSPEC2 saulter saulteriez V;COND;PL;2;LGSPEC1 saulter saulteroit V;COND;SG;3;LGSPEC1 saulter saultoit V;IPFV;IND;SG;3;PST;LGSPEC1 saulter saultent V;SBJV;PL;3;PRS saulter saultes V;SBJV;SG;2;PRS saulter saultasmes V;PFV;IND;PL;1;PST saulter saultoyt V;IPFV;IND;SG;3;PST;LGSPEC2 saulter saulteryez V;COND;PL;2;LGSPEC2 saulter saultent V;IND;PL;3;PRS saulter saulterois V;COND;SG;1;LGSPEC1 saulter saultons V;IMP;PL;1 saulter saultois V;IPFV;IND;SG;1;PST;LGSPEC1 saulter saultoient V;IPFV;IND;PL;3;PST;LGSPEC1 saulter saultas V;PFV;IND;SG;2;PST saulter saultez V;IMP;PL;2 saulter saultois V;IPFV;IND;SG;2;PST;LGSPEC1 saulter saulteront V;IND;PL;3;FUT saulter saultez V;IND;PL;2;PRS saulter saulte V;IMP;SG;2 saulter saulta V;PFV;IND;SG;1;PST saulter saulterions V;COND;PL;1;LGSPEC1 saulter saulterai V;IND;SG;1;FUT;LGSPEC1 saulter saulteroys V;COND;SG;1;LGSPEC2 saulter saultasses V;IPFV;SBJV;SG;2;PST saulter saultes V;IND;SG;2;PRS saulter saulteroient V;COND;PL;3;LGSPEC1 saulter saultons V;IND;PL;1;PRS saulter saultez V;SBJV;PL;2;PRS saulter saultoyent V;IPFV;IND;PL;3;PST;LGSPEC2 saulter saultastes V;PFV;IND;PL;2;PST saulter saulterois V;COND;SG;2;LGSPEC1 saulter saulteroys V;COND;SG;2;LGSPEC2 saulter saulterons V;IND;PL;1;FUT saulter saultassiez V;IPFV;SBJV;PL;2;PST saulter saultiez V;IPFV;IND;PL;2;PST;LGSPEC1 saulter saulteroyent V;COND;PL;3;LGSPEC2 saulter saulte V;IND;SG;1;PRS saulter saultions V;IPFV;IND;PL;1;PST;LGSPEC1 saulter saulte V;IND;SG;3;PRS saulter saulterez V;IND;PL;2;FUT saulter saulte V;SBJV;SG;1;PRS saulter saulter V;NFIN saulter saultassent V;IPFV;SBJV;PL;3;PST saulter saulteroyt V;COND;SG;3;LGSPEC2 saulter saulta V;PFV;IND;SG;3;PST saulter saulte V;SBJV;SG;3;PRS saulter saultasse V;IPFV;SBJV;SG;1;PST saulter saulterent V;PFV;IND;PL;3;PST saulter saultyons V;IPFV;IND;PL;1;PST;LGSPEC2 saulter saultoys V;IPFV;IND;SG;2;PST;LGSPEC2 saulter saultassions V;IPFV;SBJV;PL;1;PST saulter saultons V;SBJV;PL;1;PRS saulter saultoys V;IPFV;IND;SG;1;PST;LGSPEC2 saulter saultyez V;IPFV;IND;PL;2;PST;LGSPEC2 saulter saulteras V;IND;SG;2;FUT saulter saultera V;IND;SG;3;FUT saulter saultast V;IPFV;SBJV;SG;3;PST saulter saulteray V;IND;SG;1;FUT;LGSPEC2 respirer respirois V;IPFV;IND;SG;2;PST;LGSPEC1 respirer respirassions V;IPFV;SBJV;PL;1;PST respirer respirerions V;COND;PL;1;LGSPEC1 respirer respireray V;IND;SG;1;FUT;LGSPEC2 respirer respirent V;SBJV;PL;3;PRS respirer respirassiez V;IPFV;SBJV;PL;2;PST respirer respire V;IND;SG;3;PRS respirer respirez V;IND;PL;2;PRS respirer respireront V;IND;PL;3;FUT respirer respireroient V;COND;PL;3;LGSPEC1 respirer respirons V;IMP;PL;1 respirer respiriez V;IPFV;IND;PL;2;PST;LGSPEC1 respirer respirerons V;IND;PL;1;FUT respirer respirastes V;PFV;IND;PL;2;PST respirer respirerent V;PFV;IND;PL;3;PST respirer respireryons V;COND;PL;1;LGSPEC2 respirer respires V;SBJV;SG;2;PRS respirer respirera V;IND;SG;3;FUT respirer respireroyent V;COND;PL;3;LGSPEC2 respirer respiroit V;IPFV;IND;SG;3;PST;LGSPEC1 respirer respirerai V;IND;SG;1;FUT;LGSPEC1 respirer respiroys V;IPFV;IND;SG;2;PST;LGSPEC2 respirer respiroys V;IPFV;IND;SG;1;PST;LGSPEC2 respirer respires V;IND;SG;2;PRS respirer respirasse V;IPFV;SBJV;SG;1;PST respirer respireriez V;COND;PL;2;LGSPEC1 respirer respiryons V;IPFV;IND;PL;1;PST;LGSPEC2 respirer respiras V;PFV;IND;SG;2;PST respirer respire V;IND;SG;1;PRS respirer respirons V;IND;PL;1;PRS respirer respire V;IMP;SG;2 respirer respireroit V;COND;SG;3;LGSPEC1 respirer respirent V;IND;PL;3;PRS respirer respirerois V;COND;SG;1;LGSPEC1 respirer respireras V;IND;SG;2;FUT respirer respirast V;IPFV;SBJV;SG;3;PST respirer respirerois V;COND;SG;2;LGSPEC1 respirer respirerez V;IND;PL;2;FUT respirer respirasses V;IPFV;SBJV;SG;2;PST respirer respirer V;NFIN respirer respira V;PFV;IND;SG;1;PST respirer respiroient V;IPFV;IND;PL;3;PST;LGSPEC1 respirer respiroyt V;IPFV;IND;SG;3;PST;LGSPEC2 respirer respire V;SBJV;SG;3;PRS respirer respirez V;IMP;PL;2 respirer respiryez V;IPFV;IND;PL;2;PST;LGSPEC2 respirer respiroyent V;IPFV;IND;PL;3;PST;LGSPEC2 respirer respireryez V;COND;PL;2;LGSPEC2 respirer respirois V;IPFV;IND;SG;1;PST;LGSPEC1 respirer respire V;SBJV;SG;1;PRS respirer respireroyt V;COND;SG;3;LGSPEC2 respirer respirassent V;IPFV;SBJV;PL;3;PST respirer respirons V;SBJV;PL;1;PRS respirer respirasmes V;PFV;IND;PL;1;PST respirer respirez V;SBJV;PL;2;PRS respirer respirions V;IPFV;IND;PL;1;PST;LGSPEC1 respirer respira V;PFV;IND;SG;3;PST respirer respireroys V;COND;SG;2;LGSPEC2 respirer respireroys V;COND;SG;1;LGSPEC2 atourner atourneras V;IND;SG;2;FUT atourner atourne V;SBJV;SG;3;PRS atourner atournons V;SBJV;PL;1;PRS atourner atournyez V;IPFV;IND;PL;2;PST;LGSPEC2 atourner atournoyt V;IPFV;IND;SG;3;PST;LGSPEC2 atourner atournent V;IND;PL;3;PRS atourner atourna V;PFV;IND;SG;1;PST atourner atournerons V;IND;PL;1;FUT atourner atournoyent V;IPFV;IND;PL;3;PST;LGSPEC2 atourner atournasses V;IPFV;SBJV;SG;2;PST atourner atourner V;NFIN atourner atournois V;IPFV;IND;SG;2;PST;LGSPEC1 atourner atourneroit V;COND;SG;3;LGSPEC1 atourner atourneroys V;COND;SG;1;LGSPEC2 atourner atournas V;PFV;IND;SG;2;PST atourner atournyons V;IPFV;IND;PL;1;PST;LGSPEC2 atourner atourneroient V;COND;PL;3;LGSPEC1 atourner atournassent V;IPFV;SBJV;PL;3;PST atourner atourniez V;IPFV;IND;PL;2;PST;LGSPEC1 atourner atournons V;IMP;PL;1 atourner atourneryez V;COND;PL;2;LGSPEC2 atourner atournassiez V;IPFV;SBJV;PL;2;PST atourner atourneront V;IND;PL;3;FUT atourner atournerez V;IND;PL;2;FUT atourner atournasse V;IPFV;SBJV;SG;1;PST atourner atournassions V;IPFV;SBJV;PL;1;PST atourner atourna V;PFV;IND;SG;3;PST atourner atournez V;IMP;PL;2 atourner atournois V;IPFV;IND;SG;1;PST;LGSPEC1 atourner atournoient V;IPFV;IND;PL;3;PST;LGSPEC1 atourner atournerions V;COND;PL;1;LGSPEC1 atourner atournes V;SBJV;SG;2;PRS atourner atourne V;SBJV;SG;1;PRS atourner atourne V;IND;SG;1;PRS atourner atourneroyent V;COND;PL;3;LGSPEC2 atourner atournerai V;IND;SG;1;FUT;LGSPEC1 atourner atournes V;IND;SG;2;PRS atourner atournerois V;COND;SG;1;LGSPEC1 atourner atournerois V;COND;SG;2;LGSPEC1 atourner atourneray V;IND;SG;1;FUT;LGSPEC2 atourner atournast V;IPFV;SBJV;SG;3;PST atourner atourneriez V;COND;PL;2;LGSPEC1 atourner atournez V;IND;PL;2;PRS atourner atournons V;IND;PL;1;PRS atourner atournoys V;IPFV;IND;SG;2;PST;LGSPEC2 atourner atournasmes V;PFV;IND;PL;1;PST atourner atournerent V;PFV;IND;PL;3;PST atourner atournions V;IPFV;IND;PL;1;PST;LGSPEC1 atourner atourne V;IMP;SG;2 atourner atournez V;SBJV;PL;2;PRS atourner atourne V;IND;SG;3;PRS atourner atournoit V;IPFV;IND;SG;3;PST;LGSPEC1 atourner atournoys V;IPFV;IND;SG;1;PST;LGSPEC2 atourner atourneroyt V;COND;SG;3;LGSPEC2 atourner atournent V;SBJV;PL;3;PRS atourner atournera V;IND;SG;3;FUT atourner atourneroys V;COND;SG;2;LGSPEC2 atourner atournastes V;PFV;IND;PL;2;PST atourner atourneryons V;COND;PL;1;LGSPEC2 transporter transportions V;IPFV;IND;PL;1;PST;LGSPEC1 transporter transporteroit V;COND;SG;3;LGSPEC1 transporter transporteront V;IND;PL;3;FUT transporter transporte V;IND;SG;1;PRS transporter transportoient V;IPFV;IND;PL;3;PST;LGSPEC1 transporter transporterois V;COND;SG;2;LGSPEC1 transporter transporteroys V;COND;SG;1;LGSPEC2 transporter transporteriez V;COND;PL;2;LGSPEC1 transporter transportoys V;IPFV;IND;SG;2;PST;LGSPEC2 transporter transporterois V;COND;SG;1;LGSPEC1 transporter transportasse V;IPFV;SBJV;SG;1;PST transporter transportez V;IND;PL;2;PRS transporter transporte V;IMP;SG;2 transporter transportasses V;IPFV;SBJV;SG;2;PST transporter transporteroyent V;COND;PL;3;LGSPEC2 transporter transportyons V;IPFV;IND;PL;1;PST;LGSPEC2 transporter transportyez V;IPFV;IND;PL;2;PST;LGSPEC2 transporter transportes V;SBJV;SG;2;PRS transporter transportoys V;IPFV;IND;SG;1;PST;LGSPEC2 transporter transporterez V;IND;PL;2;FUT transporter transporteray V;IND;SG;1;FUT;LGSPEC2 transporter transportez V;SBJV;PL;2;PRS transporter transporteras V;IND;SG;2;FUT transporter transporteroyt V;COND;SG;3;LGSPEC2 transporter transportassiez V;IPFV;SBJV;PL;2;PST transporter transportons V;IMP;PL;1 transporter transportes V;IND;SG;2;PRS transporter transporte V;IND;SG;3;PRS transporter transporterai V;IND;SG;1;FUT;LGSPEC1 transporter transportast V;IPFV;SBJV;SG;3;PST transporter transportons V;IND;PL;1;PRS transporter transporterons V;IND;PL;1;FUT transporter transportoyent V;IPFV;IND;PL;3;PST;LGSPEC2 transporter transportois V;IPFV;IND;SG;1;PST;LGSPEC1 transporter transportent V;SBJV;PL;3;PRS transporter transporterions V;COND;PL;1;LGSPEC1 transporter transportera V;IND;SG;3;FUT transporter transporteryez V;COND;PL;2;LGSPEC2 transporter transporteroys V;COND;SG;2;LGSPEC2 transporter transportiez V;IPFV;IND;PL;2;PST;LGSPEC1 transporter transportoit V;IPFV;IND;SG;3;PST;LGSPEC1 transporter transportois V;IPFV;IND;SG;2;PST;LGSPEC1 transporter transportas V;PFV;IND;SG;2;PST transporter transportons V;SBJV;PL;1;PRS transporter transportasmes V;PFV;IND;PL;1;PST transporter transporterent V;PFV;IND;PL;3;PST transporter transporteroient V;COND;PL;3;LGSPEC1 transporter transporteryons V;COND;PL;1;LGSPEC2 transporter transportassent V;IPFV;SBJV;PL;3;PST transporter transportoyt V;IPFV;IND;SG;3;PST;LGSPEC2 transporter transportassions V;IPFV;SBJV;PL;1;PST transporter transporta V;PFV;IND;SG;1;PST transporter transporta V;PFV;IND;SG;3;PST transporter transporte V;SBJV;SG;3;PRS transporter transportastes V;PFV;IND;PL;2;PST transporter transportez V;IMP;PL;2 transporter transportent V;IND;PL;3;PRS transporter transporte V;SBJV;SG;1;PRS transporter transporter V;NFIN aerer aere V;IND;SG;3;PRS aerer aera V;PFV;IND;SG;3;PST aerer aerent V;IND;PL;3;PRS aerer aeroyent V;IPFV;IND;PL;3;PST;LGSPEC2 aerer aerois V;IPFV;IND;SG;2;PST;LGSPEC1 aerer aerassions V;IPFV;SBJV;PL;1;PST aerer aerassent V;IPFV;SBJV;PL;3;PST aerer aeroient V;IPFV;IND;PL;3;PST;LGSPEC1 aerer aeriez V;IPFV;IND;PL;2;PST;LGSPEC1 aerer aereroyt V;COND;SG;3;LGSPEC2 aerer aera V;PFV;IND;SG;1;PST aerer aerez V;SBJV;PL;2;PRS aerer aererez V;IND;PL;2;FUT aerer aerons V;IMP;PL;1 aerer aereras V;IND;SG;2;FUT aerer aerez V;IMP;PL;2 aerer aerez V;IND;PL;2;PRS aerer aereroys V;COND;SG;2;LGSPEC2 aerer aerions V;IPFV;IND;PL;1;PST;LGSPEC1 aerer aerasse V;IPFV;SBJV;SG;1;PST aerer aereray V;IND;SG;1;FUT;LGSPEC2 aerer aereroient V;COND;PL;3;LGSPEC1 aerer aerasses V;IPFV;SBJV;SG;2;PST aerer aererons V;IND;PL;1;FUT aerer aeroys V;IPFV;IND;SG;2;PST;LGSPEC2 aerer aererois V;COND;SG;1;LGSPEC1 aerer aerastes V;PFV;IND;PL;2;PST aerer aeroit V;IPFV;IND;SG;3;PST;LGSPEC1 aerer aerer V;NFIN aerer aere V;SBJV;SG;1;PRS aerer aerera V;IND;SG;3;FUT aerer aere V;SBJV;SG;3;PRS aerer aerons V;IND;PL;1;PRS aerer aerassiez V;IPFV;SBJV;PL;2;PST aerer aere V;IMP;SG;2 aerer aereroys V;COND;SG;1;LGSPEC2 aerer aereroit V;COND;SG;3;LGSPEC1 aerer aeroys V;IPFV;IND;SG;1;PST;LGSPEC2 aerer aerons V;SBJV;PL;1;PRS aerer aereryons V;COND;PL;1;LGSPEC2 aerer aerasmes V;PFV;IND;PL;1;PST aerer aeroyt V;IPFV;IND;SG;3;PST;LGSPEC2 aerer aeryons V;IPFV;IND;PL;1;PST;LGSPEC2 aerer aererions V;COND;PL;1;LGSPEC1 aerer aerois V;IPFV;IND;SG;1;PST;LGSPEC1 aerer aererai V;IND;SG;1;FUT;LGSPEC1 aerer aeres V;IND;SG;2;PRS aerer aeryez V;IPFV;IND;PL;2;PST;LGSPEC2 aerer aeres V;SBJV;SG;2;PRS aerer aere V;IND;SG;1;PRS aerer aererent V;PFV;IND;PL;3;PST aerer aereront V;IND;PL;3;FUT aerer aereriez V;COND;PL;2;LGSPEC1 aerer aerent V;SBJV;PL;3;PRS aerer aereryez V;COND;PL;2;LGSPEC2 aerer aereroyent V;COND;PL;3;LGSPEC2 aerer aerast V;IPFV;SBJV;SG;3;PST aerer aererois V;COND;SG;2;LGSPEC1 aerer aeras V;PFV;IND;SG;2;PST deffier deffie V;SBJV;SG;1;PRS deffier deffia V;PFV;IND;SG;1;PST deffier deffiasmes V;PFV;IND;PL;1;PST deffier deffie V;IND;SG;1;PRS deffier deffiyez V;IPFV;IND;PL;2;PST;LGSPEC2 deffier deffiasses V;IPFV;SBJV;SG;2;PST deffier deffierois V;COND;SG;2;LGSPEC1 deffier deffiois V;IPFV;IND;SG;2;PST;LGSPEC1 deffier deffie V;IND;SG;3;PRS deffier deffiassent V;IPFV;SBJV;PL;3;PST deffier deffiera V;IND;SG;3;FUT deffier deffioys V;IPFV;IND;SG;2;PST;LGSPEC2 deffier deffiois V;IPFV;IND;SG;1;PST;LGSPEC1 deffier deffiastes V;PFV;IND;PL;2;PST deffier deffier V;NFIN deffier deffieryons V;COND;PL;1;LGSPEC2 deffier deffieriez V;COND;PL;2;LGSPEC1 deffier deffions V;SBJV;PL;1;PRS deffier deffieroyent V;COND;PL;3;LGSPEC2 deffier deffiassiez V;IPFV;SBJV;PL;2;PST deffier deffie V;IMP;SG;2 deffier deffioient V;IPFV;IND;PL;3;PST;LGSPEC1 deffier deffions V;IND;PL;1;PRS deffier deffieray V;IND;SG;1;FUT;LGSPEC2 deffier deffiez V;IMP;PL;2 deffier deffieront V;IND;PL;3;FUT deffier deffiyons V;IPFV;IND;PL;1;PST;LGSPEC2 deffier deffieras V;IND;SG;2;FUT deffier deffiez V;IND;PL;2;PRS deffier deffieryez V;COND;PL;2;LGSPEC2 deffier deffierois V;COND;SG;1;LGSPEC1 deffier deffieroys V;COND;SG;1;LGSPEC2 deffier deffiez V;SBJV;PL;2;PRS deffier deffieroys V;COND;SG;2;LGSPEC2 deffier deffia V;PFV;IND;SG;3;PST deffier deffioit V;IPFV;IND;SG;3;PST;LGSPEC1 deffier deffierai V;IND;SG;1;FUT;LGSPEC1 deffier deffies V;SBJV;SG;2;PRS deffier deffierons V;IND;PL;1;FUT deffier deffions V;IMP;PL;1 deffier deffient V;IND;PL;3;PRS deffier deffierions V;COND;PL;1;LGSPEC1 deffier deffies V;IND;SG;2;PRS deffier deffieroyt V;COND;SG;3;LGSPEC2 deffier deffioyent V;IPFV;IND;PL;3;PST;LGSPEC2 deffier deffiions V;IPFV;IND;PL;1;PST;LGSPEC1 deffier deffias V;PFV;IND;SG;2;PST deffier deffierez V;IND;PL;2;FUT deffier deffiasse V;IPFV;SBJV;SG;1;PST deffier deffiassions V;IPFV;SBJV;PL;1;PST deffier deffie V;SBJV;SG;3;PRS deffier deffiast V;IPFV;SBJV;SG;3;PST deffier deffieroit V;COND;SG;3;LGSPEC1 deffier deffiiez V;IPFV;IND;PL;2;PST;LGSPEC1 deffier deffioys V;IPFV;IND;SG;1;PST;LGSPEC2 deffier deffierent V;PFV;IND;PL;3;PST deffier deffieroient V;COND;PL;3;LGSPEC1 deffier deffioyt V;IPFV;IND;SG;3;PST;LGSPEC2 deffier deffient V;SBJV;PL;3;PRS ottroyer ottroyons V;IMP;PL;1 ottroyer ottroyions V;IPFV;IND;PL;1;PST;LGSPEC1 ottroyer ottroyeroyent V;COND;PL;3;LGSPEC2 ottroyer ottroyas V;PFV;IND;SG;2;PST ottroyer ottroyons V;IND;PL;1;PRS ottroyer ottroyez V;SBJV;PL;2;PRS ottroyer ottroya V;PFV;IND;SG;1;PST ottroyer ottroyerent V;PFV;IND;PL;3;PST ottroyer ottroyeroys V;COND;SG;2;LGSPEC2 ottroyer ottroyerois V;COND;SG;2;LGSPEC1 ottroyer ottroyassions V;IPFV;SBJV;PL;1;PST ottroyer ottroyoient V;IPFV;IND;PL;3;PST;LGSPEC1 ottroyer ottroyerai V;IND;SG;1;FUT;LGSPEC1 ottroyer ottroyiez V;IPFV;IND;PL;2;PST;LGSPEC1 ottroyer ottroyasses V;IPFV;SBJV;SG;2;PST ottroyer ottroyoys V;IPFV;IND;SG;2;PST;LGSPEC2 ottroyer ottroye V;IND;SG;3;PRS ottroyer ottroyent V;IND;PL;3;PRS ottroyer ottroyeroient V;COND;PL;3;LGSPEC1 ottroyer ottroyeroys V;COND;SG;1;LGSPEC2 ottroyer ottroyyons V;IPFV;IND;PL;1;PST;LGSPEC2 ottroyer ottroyyez V;IPFV;IND;PL;2;PST;LGSPEC2 ottroyer ottroyastes V;PFV;IND;PL;2;PST ottroyer ottroyerez V;IND;PL;2;FUT ottroyer ottroyeryons V;COND;PL;1;LGSPEC2 ottroyer ottroyeras V;IND;SG;2;FUT ottroyer ottroyes V;SBJV;SG;2;PRS ottroyer ottroyoys V;IPFV;IND;SG;1;PST;LGSPEC2 ottroyer ottroyasse V;IPFV;SBJV;SG;1;PST ottroyer ottroye V;SBJV;SG;3;PRS ottroyer ottroyerois V;COND;SG;1;LGSPEC1 ottroyer ottroyeryez V;COND;PL;2;LGSPEC2 ottroyer ottroyeront V;IND;PL;3;FUT ottroyer ottroyois V;IPFV;IND;SG;1;PST;LGSPEC1 ottroyer ottroya V;PFV;IND;SG;3;PST ottroyer ottroyast V;IPFV;SBJV;SG;3;PST ottroyer ottroyez V;IMP;PL;2 ottroyer ottroyassiez V;IPFV;SBJV;PL;2;PST ottroyer ottroyerons V;IND;PL;1;FUT ottroyer ottroyoyent V;IPFV;IND;PL;3;PST;LGSPEC2 ottroyer ottroyeroyt V;COND;SG;3;LGSPEC2 ottroyer ottroyerions V;COND;PL;1;LGSPEC1 ottroyer ottroyoyt V;IPFV;IND;SG;3;PST;LGSPEC2 ottroyer ottroyeriez V;COND;PL;2;LGSPEC1 ottroyer ottroyez V;IND;PL;2;PRS ottroyer ottroye V;IMP;SG;2 ottroyer ottroyassent V;IPFV;SBJV;PL;3;PST ottroyer ottroyois V;IPFV;IND;SG;2;PST;LGSPEC1 ottroyer ottroyent V;SBJV;PL;3;PRS ottroyer ottroyons V;SBJV;PL;1;PRS ottroyer ottroye V;SBJV;SG;1;PRS ottroyer ottroyera V;IND;SG;3;FUT ottroyer ottroyes V;IND;SG;2;PRS ottroyer ottroyeroit V;COND;SG;3;LGSPEC1 ottroyer ottroyoit V;IPFV;IND;SG;3;PST;LGSPEC1 ottroyer ottroyer V;NFIN ottroyer ottroye V;IND;SG;1;PRS ottroyer ottroyasmes V;PFV;IND;PL;1;PST ottroyer ottroyeray V;IND;SG;1;FUT;LGSPEC2 avanchier avanchastes V;PFV;IND;PL;2;PST avanchier avanchieroit V;COND;SG;3;LGSPEC1 avanchier avanchoient V;IPFV;IND;PL;3;PST;LGSPEC1 avanchier avanchyez V;IPFV;IND;PL;2;PST;LGSPEC2 avanchier avanchieryons V;COND;PL;1;LGSPEC2 avanchier avanchassent V;IPFV;SBJV;PL;3;PST avanchier avanchent V;IND;PL;3;PRS avanchier avanchieras V;IND;SG;2;FUT avanchier avanchas V;PFV;IND;SG;2;PST avanchier avancha V;PFV;IND;SG;3;PST avanchier avanchieroyent V;COND;PL;3;LGSPEC2 avanchier avanchierons V;IND;PL;1;FUT avanchier avanche V;SBJV;SG;1;PRS avanchier avanches V;IND;SG;2;PRS avanchier avanchieroient V;COND;PL;3;LGSPEC1 avanchier avanchasmes V;PFV;IND;PL;1;PST avanchier avanchierent V;PFV;IND;PL;3;PST avanchier avanchasses V;IPFV;SBJV;SG;2;PST avanchier avanche V;IMP;SG;2 avanchier avanchyons V;IPFV;IND;PL;1;PST;LGSPEC2 avanchier avanchieray V;IND;SG;1;FUT;LGSPEC2 avanchier avanchieryez V;COND;PL;2;LGSPEC2 avanchier avanchieroys V;COND;SG;1;LGSPEC2 avanchier avanche V;SBJV;SG;3;PRS avanchier avancha V;PFV;IND;SG;1;PST avanchier avanchasse V;IPFV;SBJV;SG;1;PST avanchier avanche V;IND;SG;1;PRS avanchier avanchiera V;IND;SG;3;FUT avanchier avanches V;SBJV;SG;2;PRS avanchier avanchieroyt V;COND;SG;3;LGSPEC2 avanchier avanchoys V;IPFV;IND;SG;1;PST;LGSPEC2 avanchier avanchier V;NFIN avanchier avanche V;IND;SG;3;PRS avanchier avanchent V;SBJV;PL;3;PRS avanchier avanchierions V;COND;PL;1;LGSPEC1 avanchier avanchieroys V;COND;SG;2;LGSPEC2 avanchier avanchions V;IMP;PL;1 avanchier avanchiez V;IND;PL;2;PRS avanchier avanchoyt V;IPFV;IND;SG;3;PST;LGSPEC2 avanchier avanchieriez V;COND;PL;2;LGSPEC1 avanchier avanchierez V;IND;PL;2;FUT avanchier avanchions V;IND;PL;1;PRS avanchier avanchierai V;IND;SG;1;FUT;LGSPEC1 avanchier avanchassiez V;IPFV;SBJV;PL;2;PST avanchier avanchiez V;IPFV;IND;PL;2;PST;LGSPEC1 avanchier avanchassions V;IPFV;SBJV;PL;1;PST avanchier avanchoys V;IPFV;IND;SG;2;PST;LGSPEC2 avanchier avanchois V;IPFV;IND;SG;1;PST;LGSPEC1 avanchier avanchois V;IPFV;IND;SG;2;PST;LGSPEC1 avanchier avanchoyent V;IPFV;IND;PL;3;PST;LGSPEC2 avanchier avanchast V;IPFV;SBJV;SG;3;PST avanchier avanchiez V;IMP;PL;2 avanchier avanchiez V;SBJV;PL;2;PRS avanchier avanchions V;SBJV;PL;1;PRS avanchier avanchierois V;COND;SG;2;LGSPEC1 avanchier avanchierois V;COND;SG;1;LGSPEC1 avanchier avanchoit V;IPFV;IND;SG;3;PST;LGSPEC1 avanchier avanchions V;IPFV;IND;PL;1;PST;LGSPEC1 avanchier avanchieront V;IND;PL;3;FUT practicquer practicque V;IND;SG;3;PRS practicquer practicqueroit V;COND;SG;3;LGSPEC1 practicquer practicqua V;PFV;IND;SG;1;PST practicquer practicquerai V;IND;SG;1;FUT;LGSPEC1 practicquer practicquas V;PFV;IND;SG;2;PST practicquer practicquoient V;IPFV;IND;PL;3;PST;LGSPEC1 practicquer practicques V;SBJV;SG;2;PRS practicquer practicqueray V;IND;SG;1;FUT;LGSPEC2 practicquer practicquons V;SBJV;PL;1;PRS practicquer practicqua V;PFV;IND;SG;3;PST practicquer practicqueriez V;COND;PL;2;LGSPEC1 practicquer practicquasse V;IPFV;SBJV;SG;1;PST practicquer practicquoyt V;IPFV;IND;SG;3;PST;LGSPEC2 practicquer practicquent V;IND;PL;3;PRS practicquer practicquoys V;IPFV;IND;SG;1;PST;LGSPEC2 practicquer practicqueras V;IND;SG;2;FUT practicquer practicquois V;IPFV;IND;SG;2;PST;LGSPEC1 practicquer practicqueroys V;COND;SG;2;LGSPEC2 practicquer practicquast V;IPFV;SBJV;SG;3;PST practicquer practicquoys V;IPFV;IND;SG;2;PST;LGSPEC2 practicquer practicques V;IND;SG;2;PRS practicquer practicquerois V;COND;SG;1;LGSPEC1 practicquer practicqueront V;IND;PL;3;FUT practicquer practicquiez V;IPFV;IND;PL;2;PST;LGSPEC1 practicquer practicquassent V;IPFV;SBJV;PL;3;PST practicquer practicquerions V;COND;PL;1;LGSPEC1 practicquer practicquerent V;PFV;IND;PL;3;PST practicquer practicqueroient V;COND;PL;3;LGSPEC1 practicquer practicqueroyt V;COND;SG;3;LGSPEC2 practicquer practicquyez V;IPFV;IND;PL;2;PST;LGSPEC2 practicquer practicquez V;SBJV;PL;2;PRS practicquer practicquastes V;PFV;IND;PL;2;PST practicquer practicquent V;SBJV;PL;3;PRS practicquer practicque V;SBJV;SG;1;PRS practicquer practicquasses V;IPFV;SBJV;SG;2;PST practicquer practicque V;SBJV;SG;3;PRS practicquer practicque V;IMP;SG;2 practicquer practicquassiez V;IPFV;SBJV;PL;2;PST practicquer practicquerons V;IND;PL;1;FUT practicquer practicquons V;IMP;PL;1 practicquer practicque V;IND;SG;1;PRS practicquer practicquez V;IND;PL;2;PRS practicquer practicquassions V;IPFV;SBJV;PL;1;PST practicquer practicquoyent V;IPFV;IND;PL;3;PST;LGSPEC2 practicquer practicquera V;IND;SG;3;FUT practicquer practicqueroyent V;COND;PL;3;LGSPEC2 practicquer practicquyons V;IPFV;IND;PL;1;PST;LGSPEC2 practicquer practicquez V;IMP;PL;2 practicquer practicquasmes V;PFV;IND;PL;1;PST practicquer practicquoit V;IPFV;IND;SG;3;PST;LGSPEC1 practicquer practicquions V;IPFV;IND;PL;1;PST;LGSPEC1 practicquer practicqueryez V;COND;PL;2;LGSPEC2 practicquer practicquer V;NFIN practicquer practicquerois V;COND;SG;2;LGSPEC1 practicquer practicqueroys V;COND;SG;1;LGSPEC2 practicquer practicqueryons V;COND;PL;1;LGSPEC2 practicquer practicquois V;IPFV;IND;SG;1;PST;LGSPEC1 practicquer practicquons V;IND;PL;1;PRS practicquer practicquerez V;IND;PL;2;FUT desbarater desbaratons V;SBJV;PL;1;PRS desbarater desbaraterai V;IND;SG;1;FUT;LGSPEC1 desbarater desbaratassent V;IPFV;SBJV;PL;3;PST desbarater desbarateroyent V;COND;PL;3;LGSPEC2 desbarater desbaratastes V;PFV;IND;PL;2;PST desbarater desbaraterent V;PFV;IND;PL;3;PST desbarater desbaraterois V;COND;SG;1;LGSPEC1 desbarater desbaratera V;IND;SG;3;FUT desbarater desbarateront V;IND;PL;3;FUT desbarater desbarateroient V;COND;PL;3;LGSPEC1 desbarater desbaratyons V;IPFV;IND;PL;1;PST;LGSPEC2 desbarater desbaratassiez V;IPFV;SBJV;PL;2;PST desbarater desbarateroys V;COND;SG;1;LGSPEC2 desbarater desbaratoyt V;IPFV;IND;SG;3;PST;LGSPEC2 desbarater desbaratoys V;IPFV;IND;SG;2;PST;LGSPEC2 desbarater desbarates V;SBJV;SG;2;PRS desbarater desbarate V;IND;SG;3;PRS desbarater desbaraterions V;COND;PL;1;LGSPEC1 desbarater desbaratasse V;IPFV;SBJV;SG;1;PST desbarater desbaratasmes V;PFV;IND;PL;1;PST desbarater desbaratoient V;IPFV;IND;PL;3;PST;LGSPEC1 desbarater desbaraterois V;COND;SG;2;LGSPEC1 desbarater desbarations V;IPFV;IND;PL;1;PST;LGSPEC1 desbarater desbarates V;IND;SG;2;PRS desbarater desbarate V;SBJV;SG;1;PRS desbarater desbaratez V;IMP;PL;2 desbarater desbaratas V;PFV;IND;SG;2;PST desbarater desbarateroys V;COND;SG;2;LGSPEC2 desbarater desbarateroit V;COND;SG;3;LGSPEC1 desbarater desbaratois V;IPFV;IND;SG;2;PST;LGSPEC1 desbarater desbaratez V;SBJV;PL;2;PRS desbarater desbarateras V;IND;SG;2;FUT desbarater desbaratent V;SBJV;PL;3;PRS desbarater desbaratoyent V;IPFV;IND;PL;3;PST;LGSPEC2 desbarater desbarater V;NFIN desbarater desbarateryez V;COND;PL;2;LGSPEC2 desbarater desbaratons V;IMP;PL;1 desbarater desbaraterez V;IND;PL;2;FUT desbarater desbaratois V;IPFV;IND;SG;1;PST;LGSPEC1 desbarater desbaratiez V;IPFV;IND;PL;2;PST;LGSPEC1 desbarater desbarate V;SBJV;SG;3;PRS desbarater desbarata V;PFV;IND;SG;3;PST desbarater desbaratassions V;IPFV;SBJV;PL;1;PST desbarater desbaratast V;IPFV;SBJV;SG;3;PST desbarater desbaratez V;IND;PL;2;PRS desbarater desbaratyez V;IPFV;IND;PL;2;PST;LGSPEC2 desbarater desbaraterons V;IND;PL;1;FUT desbarater desbaratoit V;IPFV;IND;SG;3;PST;LGSPEC1 desbarater desbarateriez V;COND;PL;2;LGSPEC1 desbarater desbarateryons V;COND;PL;1;LGSPEC2 desbarater desbarate V;IND;SG;1;PRS desbarater desbaratons V;IND;PL;1;PRS desbarater desbarata V;PFV;IND;SG;1;PST desbarater desbaratoys V;IPFV;IND;SG;1;PST;LGSPEC2 desbarater desbarateray V;IND;SG;1;FUT;LGSPEC2 desbarater desbaratent V;IND;PL;3;PRS desbarater desbarate V;IMP;SG;2 desbarater desbarateroyt V;COND;SG;3;LGSPEC2 desbarater desbaratasses V;IPFV;SBJV;SG;2;PST seiourner seiournasse V;IPFV;SBJV;SG;1;PST seiourner seiourneroyent V;COND;PL;3;LGSPEC2 seiourner seiourne V;SBJV;SG;1;PRS seiourner seiournerois V;COND;SG;2;LGSPEC1 seiourner seiourneriez V;COND;PL;2;LGSPEC1 seiourner seiournerions V;COND;PL;1;LGSPEC1 seiourner seiournas V;PFV;IND;SG;2;PST seiourner seiournoys V;IPFV;IND;SG;2;PST;LGSPEC2 seiourner seiourneront V;IND;PL;3;FUT seiourner seiourne V;IND;SG;3;PRS seiourner seiournoit V;IPFV;IND;SG;3;PST;LGSPEC1 seiourner seiournions V;IPFV;IND;PL;1;PST;LGSPEC1 seiourner seiournent V;SBJV;PL;3;PRS seiourner seiournez V;SBJV;PL;2;PRS seiourner seiournyons V;IPFV;IND;PL;1;PST;LGSPEC2 seiourner seiournoys V;IPFV;IND;SG;1;PST;LGSPEC2 seiourner seiourna V;PFV;IND;SG;3;PST seiourner seiourneray V;IND;SG;1;FUT;LGSPEC2 seiourner seiournerai V;IND;SG;1;FUT;LGSPEC1 seiourner seiournons V;IMP;PL;1 seiourner seiournera V;IND;SG;3;FUT seiourner seiournastes V;PFV;IND;PL;2;PST seiourner seiourneroys V;COND;SG;1;LGSPEC2 seiourner seiourniez V;IPFV;IND;PL;2;PST;LGSPEC1 seiourner seiourner V;NFIN seiourner seiourneryez V;COND;PL;2;LGSPEC2 seiourner seiourna V;PFV;IND;SG;1;PST seiourner seiournyez V;IPFV;IND;PL;2;PST;LGSPEC2 seiourner seiourneras V;IND;SG;2;FUT seiourner seiournasmes V;PFV;IND;PL;1;PST seiourner seiournoyent V;IPFV;IND;PL;3;PST;LGSPEC2 seiourner seiourneryons V;COND;PL;1;LGSPEC2 seiourner seiournes V;IND;SG;2;PRS seiourner seiournerez V;IND;PL;2;FUT seiourner seiournois V;IPFV;IND;SG;2;PST;LGSPEC1 seiourner seiournasses V;IPFV;SBJV;SG;2;PST seiourner seiourneroyt V;COND;SG;3;LGSPEC2 seiourner seiournoyt V;IPFV;IND;SG;3;PST;LGSPEC2 seiourner seiournois V;IPFV;IND;SG;1;PST;LGSPEC1 seiourner seiourneroit V;COND;SG;3;LGSPEC1 seiourner seiourneroient V;COND;PL;3;LGSPEC1 seiourner seiournoient V;IPFV;IND;PL;3;PST;LGSPEC1 seiourner seiournerois V;COND;SG;1;LGSPEC1 seiourner seiourneroys V;COND;SG;2;LGSPEC2 seiourner seiournons V;IND;PL;1;PRS seiourner seiournez V;IMP;PL;2 seiourner seiourne V;IND;SG;1;PRS seiourner seiournerent V;PFV;IND;PL;3;PST seiourner seiournent V;IND;PL;3;PRS seiourner seiournez V;IND;PL;2;PRS seiourner seiournes V;SBJV;SG;2;PRS seiourner seiourne V;IMP;SG;2 seiourner seiournassent V;IPFV;SBJV;PL;3;PST seiourner seiournast V;IPFV;SBJV;SG;3;PST seiourner seiournons V;SBJV;PL;1;PRS seiourner seiournassions V;IPFV;SBJV;PL;1;PST seiourner seiourne V;SBJV;SG;3;PRS seiourner seiournerons V;IND;PL;1;FUT seiourner seiournassiez V;IPFV;SBJV;PL;2;PST pausmer pausmastes V;PFV;IND;PL;2;PST pausmer pausmoyent V;IPFV;IND;PL;3;PST;LGSPEC2 pausmer pausmassent V;IPFV;SBJV;PL;3;PST pausmer pausmassions V;IPFV;SBJV;PL;1;PST pausmer pausmeroys V;COND;SG;1;LGSPEC2 pausmer pausmassiez V;IPFV;SBJV;PL;2;PST pausmer pausmas V;PFV;IND;SG;2;PST pausmer pausme V;SBJV;SG;3;PRS pausmer pausmeroit V;COND;SG;3;LGSPEC1 pausmer pausmeroys V;COND;SG;2;LGSPEC2 pausmer pausment V;SBJV;PL;3;PRS pausmer pausmasses V;IPFV;SBJV;SG;2;PST pausmer pausma V;PFV;IND;SG;3;PST pausmer pausmyez V;IPFV;IND;PL;2;PST;LGSPEC2 pausmer pausmons V;SBJV;PL;1;PRS pausmer pausmoyt V;IPFV;IND;SG;3;PST;LGSPEC2 pausmer pausmera V;IND;SG;3;FUT pausmer pausmiez V;IPFV;IND;PL;2;PST;LGSPEC1 pausmer pausmes V;SBJV;SG;2;PRS pausmer pausme V;SBJV;SG;1;PRS pausmer pausmerions V;COND;PL;1;LGSPEC1 pausmer pausmoys V;IPFV;IND;SG;2;PST;LGSPEC2 pausmer pausmeras V;IND;SG;2;FUT pausmer pausmoys V;IPFV;IND;SG;1;PST;LGSPEC2 pausmer pausmeroient V;COND;PL;3;LGSPEC1 pausmer pausme V;IND;SG;1;PRS pausmer pausmasse V;IPFV;SBJV;SG;1;PST pausmer pausment V;IND;PL;3;PRS pausmer pausmast V;IPFV;SBJV;SG;3;PST pausmer pausmerai V;IND;SG;1;FUT;LGSPEC1 pausmer pausmerons V;IND;PL;1;FUT pausmer pausmez V;IND;PL;2;PRS pausmer pausmoient V;IPFV;IND;PL;3;PST;LGSPEC1 pausmer pausmeroyt V;COND;SG;3;LGSPEC2 pausmer pausmasmes V;PFV;IND;PL;1;PST pausmer pausmons V;IMP;PL;1 pausmer pausmeryons V;COND;PL;1;LGSPEC2 pausmer pausmeryez V;COND;PL;2;LGSPEC2 pausmer pausmez V;IMP;PL;2 pausmer pausmeriez V;COND;PL;2;LGSPEC1 pausmer pausmez V;SBJV;PL;2;PRS pausmer pausmoit V;IPFV;IND;SG;3;PST;LGSPEC1 pausmer pausmions V;IPFV;IND;PL;1;PST;LGSPEC1 pausmer pausmons V;IND;PL;1;PRS pausmer pausmeront V;IND;PL;3;FUT pausmer pausma V;PFV;IND;SG;1;PST pausmer pausme V;IND;SG;3;PRS pausmer pausmeroyent V;COND;PL;3;LGSPEC2 pausmer pausmois V;IPFV;IND;SG;2;PST;LGSPEC1 pausmer pausmer V;NFIN pausmer pausmes V;IND;SG;2;PRS pausmer pausmerois V;COND;SG;2;LGSPEC1 pausmer pausmerent V;PFV;IND;PL;3;PST pausmer pausme V;IMP;SG;2 pausmer pausmerois V;COND;SG;1;LGSPEC1 pausmer pausmyons V;IPFV;IND;PL;1;PST;LGSPEC2 pausmer pausmeray V;IND;SG;1;FUT;LGSPEC2 pausmer pausmois V;IPFV;IND;SG;1;PST;LGSPEC1 pausmer pausmerez V;IND;PL;2;FUT getter gettera V;IND;SG;3;FUT getter getteryons V;COND;PL;1;LGSPEC2 getter gettez V;SBJV;PL;2;PRS getter gettasses V;IPFV;SBJV;SG;2;PST getter getteras V;IND;SG;2;FUT getter gettiez V;IPFV;IND;PL;2;PST;LGSPEC1 getter gettoient V;IPFV;IND;PL;3;PST;LGSPEC1 getter getteriez V;COND;PL;2;LGSPEC1 getter getteray V;IND;SG;1;FUT;LGSPEC2 getter gettent V;SBJV;PL;3;PRS getter gettoys V;IPFV;IND;SG;2;PST;LGSPEC2 getter gettois V;IPFV;IND;SG;2;PST;LGSPEC1 getter getterai V;IND;SG;1;FUT;LGSPEC1 getter gettes V;SBJV;SG;2;PRS getter getteroient V;COND;PL;3;LGSPEC1 getter gettyons V;IPFV;IND;PL;1;PST;LGSPEC2 getter getter V;NFIN getter gettasmes V;PFV;IND;PL;1;PST getter getteroyt V;COND;SG;3;LGSPEC2 getter gettons V;SBJV;PL;1;PRS getter gettoyt V;IPFV;IND;SG;3;PST;LGSPEC2 getter gettons V;IND;PL;1;PRS getter gettoys V;IPFV;IND;SG;1;PST;LGSPEC2 getter gettons V;IMP;PL;1 getter gettoyent V;IPFV;IND;PL;3;PST;LGSPEC2 getter gettast V;IPFV;SBJV;SG;3;PST getter gettassions V;IPFV;SBJV;PL;1;PST getter getterons V;IND;PL;1;FUT getter gettyez V;IPFV;IND;PL;2;PST;LGSPEC2 getter gette V;SBJV;SG;3;PRS getter gette V;IND;SG;1;PRS getter getta V;PFV;IND;SG;3;PST getter getteryez V;COND;PL;2;LGSPEC2 getter gettent V;IND;PL;3;PRS getter gettassent V;IPFV;SBJV;PL;3;PST getter getterois V;COND;SG;2;LGSPEC1 getter gettassiez V;IPFV;SBJV;PL;2;PST getter getterent V;PFV;IND;PL;3;PST getter gettez V;IND;PL;2;PRS getter gette V;SBJV;SG;1;PRS getter gettez V;IMP;PL;2 getter getteroys V;COND;SG;2;LGSPEC2 getter getterois V;COND;SG;1;LGSPEC1 getter gettes V;IND;SG;2;PRS getter getterez V;IND;PL;2;FUT getter gette V;IND;SG;3;PRS getter getteroyent V;COND;PL;3;LGSPEC2 getter gettois V;IPFV;IND;SG;1;PST;LGSPEC1 getter gettoit V;IPFV;IND;SG;3;PST;LGSPEC1 getter getterions V;COND;PL;1;LGSPEC1 getter gettions V;IPFV;IND;PL;1;PST;LGSPEC1 getter getta V;PFV;IND;SG;1;PST getter gette V;IMP;SG;2 getter getteroit V;COND;SG;3;LGSPEC1 getter gettas V;PFV;IND;SG;2;PST getter getteront V;IND;PL;3;FUT getter getteroys V;COND;SG;1;LGSPEC2 getter gettasse V;IPFV;SBJV;SG;1;PST getter gettastes V;PFV;IND;PL;2;PST galoper galopoyent V;IPFV;IND;PL;3;PST;LGSPEC2 galoper galopyez V;IPFV;IND;PL;2;PST;LGSPEC2 galoper galopassions V;IPFV;SBJV;PL;1;PST galoper galopera V;IND;SG;3;FUT galoper galoperoyent V;COND;PL;3;LGSPEC2 galoper galopoys V;IPFV;IND;SG;1;PST;LGSPEC2 galoper galopoyt V;IPFV;IND;SG;3;PST;LGSPEC2 galoper galopent V;IND;PL;3;PRS galoper galopes V;IND;SG;2;PRS galoper galoperons V;IND;PL;1;FUT galoper galopons V;SBJV;PL;1;PRS galoper galopas V;PFV;IND;SG;2;PST galoper galoperois V;COND;SG;2;LGSPEC1 galoper galopons V;IND;PL;1;PRS galoper galopoit V;IPFV;IND;SG;3;PST;LGSPEC1 galoper galopoys V;IPFV;IND;SG;2;PST;LGSPEC2 galoper galopions V;IPFV;IND;PL;1;PST;LGSPEC1 galoper galopons V;IMP;PL;1 galoper galoperyez V;COND;PL;2;LGSPEC2 galoper galopoient V;IPFV;IND;PL;3;PST;LGSPEC1 galoper galoper V;NFIN galoper galope V;IND;SG;1;PRS galoper galoperoyt V;COND;SG;3;LGSPEC2 galoper galoperay V;IND;SG;1;FUT;LGSPEC2 galoper galoperyons V;COND;PL;1;LGSPEC2 galoper galopiez V;IPFV;IND;PL;2;PST;LGSPEC1 galoper galoperent V;PFV;IND;PL;3;PST galoper galoperoit V;COND;SG;3;LGSPEC1 galoper galopez V;IND;PL;2;PRS galoper galoperions V;COND;PL;1;LGSPEC1 galoper galoperont V;IND;PL;3;FUT galoper galopassiez V;IPFV;SBJV;PL;2;PST galoper galoperai V;IND;SG;1;FUT;LGSPEC1 galoper galopez V;IMP;PL;2 galoper galope V;IND;SG;3;PRS galoper galoperoys V;COND;SG;2;LGSPEC2 galoper galopassent V;IPFV;SBJV;PL;3;PST galoper galopyons V;IPFV;IND;PL;1;PST;LGSPEC2 galoper galoperez V;IND;PL;2;FUT galoper galopent V;SBJV;PL;3;PRS galoper galoperas V;IND;SG;2;FUT galoper galopez V;SBJV;PL;2;PRS galoper galoperois V;COND;SG;1;LGSPEC1 galoper galopasmes V;PFV;IND;PL;1;PST galoper galopast V;IPFV;SBJV;SG;3;PST galoper galopasses V;IPFV;SBJV;SG;2;PST galoper galopa V;PFV;IND;SG;3;PST galoper galopastes V;PFV;IND;PL;2;PST galoper galoperoys V;COND;SG;1;LGSPEC2 galoper galope V;SBJV;SG;3;PRS galoper galope V;IMP;SG;2 galoper galopa V;PFV;IND;SG;1;PST galoper galope V;SBJV;SG;1;PRS galoper galopes V;SBJV;SG;2;PRS galoper galoperoient V;COND;PL;3;LGSPEC1 galoper galopois V;IPFV;IND;SG;1;PST;LGSPEC1 galoper galoperiez V;COND;PL;2;LGSPEC1 galoper galopasse V;IPFV;SBJV;SG;1;PST galoper galopois V;IPFV;IND;SG;2;PST;LGSPEC1 celebrer celebrasses V;IPFV;SBJV;SG;2;PST celebrer celebroyt V;IPFV;IND;SG;3;PST;LGSPEC2 celebrer celebrer V;NFIN celebrer celebra V;PFV;IND;SG;3;PST celebrer celebre V;SBJV;SG;3;PRS celebrer celebrast V;IPFV;SBJV;SG;3;PST celebrer celebrasmes V;PFV;IND;PL;1;PST celebrer celebrassiez V;IPFV;SBJV;PL;2;PST celebrer celebreras V;IND;SG;2;FUT celebrer celebrerent V;PFV;IND;PL;3;PST celebrer celebrerois V;COND;SG;1;LGSPEC1 celebrer celebreroit V;COND;SG;3;LGSPEC1 celebrer celebreroyt V;COND;SG;3;LGSPEC2 celebrer celebreront V;IND;PL;3;FUT celebrer celebreroient V;COND;PL;3;LGSPEC1 celebrer celebrois V;IPFV;IND;SG;1;PST;LGSPEC1 celebrer celebrastes V;PFV;IND;PL;2;PST celebrer celebrera V;IND;SG;3;FUT celebrer celebres V;IND;SG;2;PRS celebrer celebrerois V;COND;SG;2;LGSPEC1 celebrer celebrois V;IPFV;IND;SG;2;PST;LGSPEC1 celebrer celebre V;IND;SG;1;PRS celebrer celebre V;SBJV;SG;1;PRS celebrer celebres V;SBJV;SG;2;PRS celebrer celebrasse V;IPFV;SBJV;SG;1;PST celebrer celebrons V;IMP;PL;1 celebrer celebrons V;SBJV;PL;1;PRS celebrer celebreroyent V;COND;PL;3;LGSPEC2 celebrer celebroys V;IPFV;IND;SG;1;PST;LGSPEC2 celebrer celebrions V;IPFV;IND;PL;1;PST;LGSPEC1 celebrer celebrent V;SBJV;PL;3;PRS celebrer celebrent V;IND;PL;3;PRS celebrer celebrerez V;IND;PL;2;FUT celebrer celebryez V;IPFV;IND;PL;2;PST;LGSPEC2 celebrer celebrassent V;IPFV;SBJV;PL;3;PST celebrer celebrassions V;IPFV;SBJV;PL;1;PST celebrer celebreriez V;COND;PL;2;LGSPEC1 celebrer celebreroys V;COND;SG;1;LGSPEC2 celebrer celebras V;PFV;IND;SG;2;PST celebrer celebre V;IMP;SG;2 celebrer celebriez V;IPFV;IND;PL;2;PST;LGSPEC1 celebrer celebrez V;IND;PL;2;PRS celebrer celebroys V;IPFV;IND;SG;2;PST;LGSPEC2 celebrer celebrerai V;IND;SG;1;FUT;LGSPEC1 celebrer celebroient V;IPFV;IND;PL;3;PST;LGSPEC1 celebrer celebreryez V;COND;PL;2;LGSPEC2 celebrer celebrez V;IMP;PL;2 celebrer celebre V;IND;SG;3;PRS celebrer celebroyent V;IPFV;IND;PL;3;PST;LGSPEC2 celebrer celebreryons V;COND;PL;1;LGSPEC2 celebrer celebreroys V;COND;SG;2;LGSPEC2 celebrer celebrerons V;IND;PL;1;FUT celebrer celebreray V;IND;SG;1;FUT;LGSPEC2 celebrer celebra V;PFV;IND;SG;1;PST celebrer celebrez V;SBJV;PL;2;PRS celebrer celebrons V;IND;PL;1;PRS celebrer celebryons V;IPFV;IND;PL;1;PST;LGSPEC2 celebrer celebrerions V;COND;PL;1;LGSPEC1 celebrer celebroit V;IPFV;IND;SG;3;PST;LGSPEC1 recommander recommandera V;IND;SG;3;FUT recommander recommanderez V;IND;PL;2;FUT recommander recommande V;IMP;SG;2 recommander recommandoit V;IPFV;IND;SG;3;PST;LGSPEC1 recommander recommandoyt V;IPFV;IND;SG;3;PST;LGSPEC2 recommander recommandassiez V;IPFV;SBJV;PL;2;PST recommander recommande V;SBJV;SG;1;PRS recommander recommanda V;PFV;IND;SG;3;PST recommander recommandassions V;IPFV;SBJV;PL;1;PST recommander recommandasse V;IPFV;SBJV;SG;1;PST recommander recommandassent V;IPFV;SBJV;PL;3;PST recommander recommande V;IND;SG;1;PRS recommander recommander V;NFIN recommander recommanderent V;PFV;IND;PL;3;PST recommander recommandent V;IND;PL;3;PRS recommander recommandez V;IMP;PL;2 recommander recommandast V;IPFV;SBJV;SG;3;PST recommander recommandiez V;IPFV;IND;PL;2;PST;LGSPEC1 recommander recommanderions V;COND;PL;1;LGSPEC1 recommander recommandoient V;IPFV;IND;PL;3;PST;LGSPEC1 recommander recommanderont V;IND;PL;3;FUT recommander recommandons V;SBJV;PL;1;PRS recommander recommandois V;IPFV;IND;SG;2;PST;LGSPEC1 recommander recommanderoyt V;COND;SG;3;LGSPEC2 recommander recommandes V;SBJV;SG;2;PRS recommander recommandions V;IPFV;IND;PL;1;PST;LGSPEC1 recommander recommandois V;IPFV;IND;SG;1;PST;LGSPEC1 recommander recommanderoient V;COND;PL;3;LGSPEC1 recommander recommanderas V;IND;SG;2;FUT recommander recommanderoys V;COND;SG;1;LGSPEC2 recommander recommanderay V;IND;SG;1;FUT;LGSPEC2 recommander recommandasmes V;PFV;IND;PL;1;PST recommander recommandez V;SBJV;PL;2;PRS recommander recommanderoyent V;COND;PL;3;LGSPEC2 recommander recommanderoys V;COND;SG;2;LGSPEC2 recommander recommanderons V;IND;PL;1;FUT recommander recommanderyons V;COND;PL;1;LGSPEC2 recommander recommanderiez V;COND;PL;2;LGSPEC1 recommander recommanderoit V;COND;SG;3;LGSPEC1 recommander recommandyez V;IPFV;IND;PL;2;PST;LGSPEC2 recommander recommanderois V;COND;SG;1;LGSPEC1 recommander recommandastes V;PFV;IND;PL;2;PST recommander recommandasses V;IPFV;SBJV;SG;2;PST recommander recommandoys V;IPFV;IND;SG;1;PST;LGSPEC2 recommander recommanderai V;IND;SG;1;FUT;LGSPEC1 recommander recommande V;SBJV;SG;3;PRS recommander recommanderois V;COND;SG;2;LGSPEC1 recommander recommandas V;PFV;IND;SG;2;PST recommander recommandent V;SBJV;PL;3;PRS recommander recommanda V;PFV;IND;SG;1;PST recommander recommandyons V;IPFV;IND;PL;1;PST;LGSPEC2 recommander recommandons V;IND;PL;1;PRS recommander recommandoys V;IPFV;IND;SG;2;PST;LGSPEC2 recommander recommanderyez V;COND;PL;2;LGSPEC2 recommander recommande V;IND;SG;3;PRS recommander recommandes V;IND;SG;2;PRS recommander recommandons V;IMP;PL;1 recommander recommandoyent V;IPFV;IND;PL;3;PST;LGSPEC2 recommander recommandez V;IND;PL;2;PRS prester prestent V;SBJV;PL;3;PRS prester prestez V;IND;PL;2;PRS prester presterons V;IND;PL;1;FUT prester presteroys V;COND;SG;1;LGSPEC2 prester prestyons V;IPFV;IND;PL;1;PST;LGSPEC2 prester prestastes V;PFV;IND;PL;2;PST prester prestons V;SBJV;PL;1;PRS prester preste V;IND;SG;3;PRS prester prester V;NFIN prester preste V;IND;SG;1;PRS prester presterez V;IND;PL;2;FUT prester prestois V;IPFV;IND;SG;2;PST;LGSPEC1 prester prestera V;IND;SG;3;FUT prester prestons V;IMP;PL;1 prester prestez V;SBJV;PL;2;PRS prester presterions V;COND;PL;1;LGSPEC1 prester presta V;PFV;IND;SG;3;PST prester prestons V;IND;PL;1;PRS prester prestast V;IPFV;SBJV;SG;3;PST prester prestoient V;IPFV;IND;PL;3;PST;LGSPEC1 prester prestoyent V;IPFV;IND;PL;3;PST;LGSPEC2 prester prestois V;IPFV;IND;SG;1;PST;LGSPEC1 prester presteroient V;COND;PL;3;LGSPEC1 prester prestiez V;IPFV;IND;PL;2;PST;LGSPEC1 prester presteras V;IND;SG;2;FUT prester prestions V;IPFV;IND;PL;1;PST;LGSPEC1 prester prestasse V;IPFV;SBJV;SG;1;PST prester presteroyent V;COND;PL;3;LGSPEC2 prester preste V;SBJV;SG;1;PRS prester preste V;SBJV;SG;3;PRS prester presteront V;IND;PL;3;FUT prester prestassent V;IPFV;SBJV;PL;3;PST prester presterois V;COND;SG;2;LGSPEC1 prester prestoys V;IPFV;IND;SG;1;PST;LGSPEC2 prester prestoit V;IPFV;IND;SG;3;PST;LGSPEC1 prester prestes V;IND;SG;2;PRS prester prestoys V;IPFV;IND;SG;2;PST;LGSPEC2 prester presterois V;COND;SG;1;LGSPEC1 prester prestyez V;IPFV;IND;PL;2;PST;LGSPEC2 prester prestassiez V;IPFV;SBJV;PL;2;PST prester presteroys V;COND;SG;2;LGSPEC2 prester presteriez V;COND;PL;2;LGSPEC1 prester prestez V;IMP;PL;2 prester prestas V;PFV;IND;SG;2;PST prester prestoyt V;IPFV;IND;SG;3;PST;LGSPEC2 prester prestes V;SBJV;SG;2;PRS prester presteroyt V;COND;SG;3;LGSPEC2 prester preste V;IMP;SG;2 prester presteryons V;COND;PL;1;LGSPEC2 prester presterai V;IND;SG;1;FUT;LGSPEC1 prester presteroit V;COND;SG;3;LGSPEC1 prester prestent V;IND;PL;3;PRS prester presteray V;IND;SG;1;FUT;LGSPEC2 prester prestassions V;IPFV;SBJV;PL;1;PST prester presterent V;PFV;IND;PL;3;PST prester presteryez V;COND;PL;2;LGSPEC2 prester prestasses V;IPFV;SBJV;SG;2;PST prester presta V;PFV;IND;SG;1;PST prester prestasmes V;PFV;IND;PL;1;PST intoxiquer intoxiquerai V;IND;SG;1;FUT;LGSPEC1 intoxiquer intoxiquerent V;PFV;IND;PL;3;PST intoxiquer intoxiquasmes V;PFV;IND;PL;1;PST intoxiquer intoxiqueryez V;COND;PL;2;LGSPEC2 intoxiquer intoxiquerez V;IND;PL;2;FUT intoxiquer intoxiquez V;IND;PL;2;PRS intoxiquer intoxiqueras V;IND;SG;2;FUT intoxiquer intoxiqueroyent V;COND;PL;3;LGSPEC2 intoxiquer intoxiquassions V;IPFV;SBJV;PL;1;PST intoxiquer intoxiquons V;IND;PL;1;PRS intoxiquer intoxiquast V;IPFV;SBJV;SG;3;PST intoxiquer intoxiquions V;IPFV;IND;PL;1;PST;LGSPEC1 intoxiquer intoxiquassent V;IPFV;SBJV;PL;3;PST intoxiquer intoxiquera V;IND;SG;3;FUT intoxiquer intoxiqueroys V;COND;SG;1;LGSPEC2 intoxiquer intoxiquasses V;IPFV;SBJV;SG;2;PST intoxiquer intoxiquent V;IND;PL;3;PRS intoxiquer intoxiqueroyt V;COND;SG;3;LGSPEC2 intoxiquer intoxiquons V;SBJV;PL;1;PRS intoxiquer intoxiqueryons V;COND;PL;1;LGSPEC2 intoxiquer intoxiques V;IND;SG;2;PRS intoxiquer intoxique V;SBJV;SG;1;PRS intoxiquer intoxiquoyt V;IPFV;IND;SG;3;PST;LGSPEC2 intoxiquer intoxiquoit V;IPFV;IND;SG;3;PST;LGSPEC1 intoxiquer intoxiquerons V;IND;PL;1;FUT intoxiquer intoxiquoys V;IPFV;IND;SG;1;PST;LGSPEC2 intoxiquer intoxiqueroient V;COND;PL;3;LGSPEC1 intoxiquer intoxiquons V;IMP;PL;1 intoxiquer intoxiquyez V;IPFV;IND;PL;2;PST;LGSPEC2 intoxiquer intoxiquez V;SBJV;PL;2;PRS intoxiquer intoxique V;IND;SG;3;PRS intoxiquer intoxiquent V;SBJV;PL;3;PRS intoxiquer intoxiqueroys V;COND;SG;2;LGSPEC2 intoxiquer intoxiqueriez V;COND;PL;2;LGSPEC1 intoxiquer intoxiquez V;IMP;PL;2 intoxiquer intoxiquoys V;IPFV;IND;SG;2;PST;LGSPEC2 intoxiquer intoxiqueroit V;COND;SG;3;LGSPEC1 intoxiquer intoxiquois V;IPFV;IND;SG;2;PST;LGSPEC1 intoxiquer intoxiquoyent V;IPFV;IND;PL;3;PST;LGSPEC2 intoxiquer intoxiquoient V;IPFV;IND;PL;3;PST;LGSPEC1 intoxiquer intoxiquois V;IPFV;IND;SG;1;PST;LGSPEC1 intoxiquer intoxiquas V;PFV;IND;SG;2;PST intoxiquer intoxiquerois V;COND;SG;1;LGSPEC1 intoxiquer intoxiquassiez V;IPFV;SBJV;PL;2;PST intoxiquer intoxiqueray V;IND;SG;1;FUT;LGSPEC2 intoxiquer intoxiqua V;PFV;IND;SG;3;PST intoxiquer intoxique V;SBJV;SG;3;PRS intoxiquer intoxiquerois V;COND;SG;2;LGSPEC1 intoxiquer intoxiquasse V;IPFV;SBJV;SG;1;PST intoxiquer intoxiquastes V;PFV;IND;PL;2;PST intoxiquer intoxiqueront V;IND;PL;3;FUT intoxiquer intoxique V;IMP;SG;2 intoxiquer intoxiquyons V;IPFV;IND;PL;1;PST;LGSPEC2 intoxiquer intoxiquerions V;COND;PL;1;LGSPEC1 intoxiquer intoxiques V;SBJV;SG;2;PRS intoxiquer intoxiquer V;NFIN intoxiquer intoxiquiez V;IPFV;IND;PL;2;PST;LGSPEC1 intoxiquer intoxique V;IND;SG;1;PRS intoxiquer intoxiqua V;PFV;IND;SG;1;PST affamer affameryez V;COND;PL;2;LGSPEC2 affamer affame V;SBJV;SG;1;PRS affamer affameroient V;COND;PL;3;LGSPEC1 affamer affameriez V;COND;PL;2;LGSPEC1 affamer affame V;IND;SG;3;PRS affamer affameroit V;COND;SG;3;LGSPEC1 affamer affames V;IND;SG;2;PRS affamer affamois V;IPFV;IND;SG;2;PST;LGSPEC1 affamer affameroys V;COND;SG;1;LGSPEC2 affamer affameront V;IND;PL;3;FUT affamer affamast V;IPFV;SBJV;SG;3;PST affamer affamasses V;IPFV;SBJV;SG;2;PST affamer affamoient V;IPFV;IND;PL;3;PST;LGSPEC1 affamer affamera V;IND;SG;3;FUT affamer affamasmes V;PFV;IND;PL;1;PST affamer affamois V;IPFV;IND;SG;1;PST;LGSPEC1 affamer affamerai V;IND;SG;1;FUT;LGSPEC1 affamer affamions V;IPFV;IND;PL;1;PST;LGSPEC1 affamer affamassiez V;IPFV;SBJV;PL;2;PST affamer affamoys V;IPFV;IND;SG;2;PST;LGSPEC2 affamer affamoit V;IPFV;IND;SG;3;PST;LGSPEC1 affamer affameroyent V;COND;PL;3;LGSPEC2 affamer affamer V;NFIN affamer affames V;SBJV;SG;2;PRS affamer affamerons V;IND;PL;1;FUT affamer affamoys V;IPFV;IND;SG;1;PST;LGSPEC2 affamer affamasse V;IPFV;SBJV;SG;1;PST affamer affameryons V;COND;PL;1;LGSPEC2 affamer affamiez V;IPFV;IND;PL;2;PST;LGSPEC1 affamer affamassions V;IPFV;SBJV;PL;1;PST affamer affamez V;IMP;PL;2 affamer affament V;IND;PL;3;PRS affamer affame V;IND;SG;1;PRS affamer affamyez V;IPFV;IND;PL;2;PST;LGSPEC2 affamer affamons V;IND;PL;1;PRS affamer affamas V;PFV;IND;SG;2;PST affamer affameroys V;COND;SG;2;LGSPEC2 affamer affamerez V;IND;PL;2;FUT affamer affame V;IMP;SG;2 affamer affameray V;IND;SG;1;FUT;LGSPEC2 affamer affamons V;SBJV;PL;1;PRS affamer affamyons V;IPFV;IND;PL;1;PST;LGSPEC2 affamer affamez V;SBJV;PL;2;PRS affamer affamerois V;COND;SG;1;LGSPEC1 affamer affamassent V;IPFV;SBJV;PL;3;PST affamer affamerions V;COND;PL;1;LGSPEC1 affamer affamoyent V;IPFV;IND;PL;3;PST;LGSPEC2 affamer affament V;SBJV;PL;3;PRS affamer affama V;PFV;IND;SG;1;PST affamer affamerent V;PFV;IND;PL;3;PST affamer affameroyt V;COND;SG;3;LGSPEC2 affamer affamerois V;COND;SG;2;LGSPEC1 affamer affamons V;IMP;PL;1 affamer affameras V;IND;SG;2;FUT affamer affamoyt V;IPFV;IND;SG;3;PST;LGSPEC2 affamer affamastes V;PFV;IND;PL;2;PST affamer affame V;SBJV;SG;3;PRS affamer affamez V;IND;PL;2;PRS affamer affama V;PFV;IND;SG;3;PST occuper occupez V;IND;PL;2;PRS occuper occupassent V;IPFV;SBJV;PL;3;PST occuper occupois V;IPFV;IND;SG;2;PST;LGSPEC1 occuper occupe V;IND;SG;3;PRS occuper occuperent V;PFV;IND;PL;3;PST occuper occupoys V;IPFV;IND;SG;1;PST;LGSPEC2 occuper occupassions V;IPFV;SBJV;PL;1;PST occuper occupoit V;IPFV;IND;SG;3;PST;LGSPEC1 occuper occupiez V;IPFV;IND;PL;2;PST;LGSPEC1 occuper occupes V;SBJV;SG;2;PRS occuper occuperoit V;COND;SG;3;LGSPEC1 occuper occuperiez V;COND;PL;2;LGSPEC1 occuper occupez V;SBJV;PL;2;PRS occuper occuperont V;IND;PL;3;FUT occuper occuperyez V;COND;PL;2;LGSPEC2 occuper occuperoient V;COND;PL;3;LGSPEC1 occuper occupasse V;IPFV;SBJV;SG;1;PST occuper occupoient V;IPFV;IND;PL;3;PST;LGSPEC1 occuper occupons V;IMP;PL;1 occuper occuperoyent V;COND;PL;3;LGSPEC2 occuper occuper V;NFIN occuper occupons V;IND;PL;1;PRS occuper occupa V;PFV;IND;SG;1;PST occuper occupastes V;PFV;IND;PL;2;PST occuper occupa V;PFV;IND;SG;3;PST occuper occuperay V;IND;SG;1;FUT;LGSPEC2 occuper occupe V;IND;SG;1;PRS occuper occuperois V;COND;SG;2;LGSPEC1 occuper occupassiez V;IPFV;SBJV;PL;2;PST occuper occupasses V;IPFV;SBJV;SG;2;PST occuper occupent V;IND;PL;3;PRS occuper occupois V;IPFV;IND;SG;1;PST;LGSPEC1 occuper occupoyent V;IPFV;IND;PL;3;PST;LGSPEC2 occuper occuperons V;IND;PL;1;FUT occuper occupast V;IPFV;SBJV;SG;3;PST occuper occuperoys V;COND;SG;2;LGSPEC2 occuper occuperions V;COND;PL;1;LGSPEC1 occuper occupas V;PFV;IND;SG;2;PST occuper occupe V;IMP;SG;2 occuper occupoys V;IPFV;IND;SG;2;PST;LGSPEC2 occuper occupions V;IPFV;IND;PL;1;PST;LGSPEC1 occuper occupyons V;IPFV;IND;PL;1;PST;LGSPEC2 occuper occupe V;SBJV;SG;3;PRS occuper occuperoys V;COND;SG;1;LGSPEC2 occuper occupera V;IND;SG;3;FUT occuper occuperoyt V;COND;SG;3;LGSPEC2 occuper occupoyt V;IPFV;IND;SG;3;PST;LGSPEC2 occuper occuperois V;COND;SG;1;LGSPEC1 occuper occupez V;IMP;PL;2 occuper occuperai V;IND;SG;1;FUT;LGSPEC1 occuper occupe V;SBJV;SG;1;PRS occuper occupons V;SBJV;PL;1;PRS occuper occuperez V;IND;PL;2;FUT occuper occupent V;SBJV;PL;3;PRS occuper occuperas V;IND;SG;2;FUT occuper occupyez V;IPFV;IND;PL;2;PST;LGSPEC2 occuper occupasmes V;PFV;IND;PL;1;PST occuper occuperyons V;COND;PL;1;LGSPEC2 occuper occupes V;IND;SG;2;PRS esmerveillier esmerveillier V;NFIN esmerveillier esmerveille V;IND;SG;1;PRS esmerveillier esmerveillyez V;IPFV;IND;PL;2;PST;LGSPEC2 esmerveillier esmerveillieroit V;COND;SG;3;LGSPEC1 esmerveillier esmerveillasse V;IPFV;SBJV;SG;1;PST esmerveillier esmerveillois V;IPFV;IND;SG;2;PST;LGSPEC1 esmerveillier esmerveillent V;IND;PL;3;PRS esmerveillier esmerveillieras V;IND;SG;2;FUT esmerveillier esmerveillierions V;COND;PL;1;LGSPEC1 esmerveillier esmerveillieryons V;COND;PL;1;LGSPEC2 esmerveillier esmerveillasmes V;PFV;IND;PL;1;PST esmerveillier esmerveillent V;SBJV;PL;3;PRS esmerveillier esmerveillierois V;COND;SG;1;LGSPEC1 esmerveillier esmerveillieroyent V;COND;PL;3;LGSPEC2 esmerveillier esmerveilliera V;IND;SG;3;FUT esmerveillier esmerveillieray V;IND;SG;1;FUT;LGSPEC2 esmerveillier esmerveillieroys V;COND;SG;2;LGSPEC2 esmerveillier esmerveille V;SBJV;SG;3;PRS esmerveillier esmerveillions V;IMP;PL;1 esmerveillier esmerveillierent V;PFV;IND;PL;3;PST esmerveillier esmerveillast V;IPFV;SBJV;SG;3;PST esmerveillier esmerveillieront V;IND;PL;3;FUT esmerveillier esmerveilliez V;IPFV;IND;PL;2;PST;LGSPEC1 esmerveillier esmerveilla V;PFV;IND;SG;3;PST esmerveillier esmerveillastes V;PFV;IND;PL;2;PST esmerveillier esmerveillions V;IND;PL;1;PRS esmerveillier esmerveilles V;SBJV;SG;2;PRS esmerveillier esmerveillassent V;IPFV;SBJV;PL;3;PST esmerveillier esmerveilloyent V;IPFV;IND;PL;3;PST;LGSPEC2 esmerveillier esmerveillassiez V;IPFV;SBJV;PL;2;PST esmerveillier esmerveillieriez V;COND;PL;2;LGSPEC1 esmerveillier esmerveillions V;SBJV;PL;1;PRS esmerveillier esmerveilliez V;IND;PL;2;PRS esmerveillier esmerveillasses V;IPFV;SBJV;SG;2;PST esmerveillier esmerveilloys V;IPFV;IND;SG;1;PST;LGSPEC2 esmerveillier esmerveillieroyt V;COND;SG;3;LGSPEC2 esmerveillier esmerveillierez V;IND;PL;2;FUT esmerveillier esmerveillieroient V;COND;PL;3;LGSPEC1 esmerveillier esmerveilloient V;IPFV;IND;PL;3;PST;LGSPEC1 esmerveillier esmerveille V;IND;SG;3;PRS esmerveillier esmerveillieryez V;COND;PL;2;LGSPEC2 esmerveillier esmerveillassions V;IPFV;SBJV;PL;1;PST esmerveillier esmerveilloit V;IPFV;IND;SG;3;PST;LGSPEC1 esmerveillier esmerveillois V;IPFV;IND;SG;1;PST;LGSPEC1 esmerveillier esmerveillierois V;COND;SG;2;LGSPEC1 esmerveillier esmerveillieroys V;COND;SG;1;LGSPEC2 esmerveillier esmerveilla V;PFV;IND;SG;1;PST esmerveillier esmerveillierai V;IND;SG;1;FUT;LGSPEC1 esmerveillier esmerveille V;IMP;SG;2 esmerveillier esmerveilloys V;IPFV;IND;SG;2;PST;LGSPEC2 esmerveillier esmerveilliez V;IMP;PL;2 esmerveillier esmerveille V;SBJV;SG;1;PRS esmerveillier esmerveilles V;IND;SG;2;PRS esmerveillier esmerveilliez V;SBJV;PL;2;PRS esmerveillier esmerveilloyt V;IPFV;IND;SG;3;PST;LGSPEC2 esmerveillier esmerveillyons V;IPFV;IND;PL;1;PST;LGSPEC2 esmerveillier esmerveillas V;PFV;IND;SG;2;PST esmerveillier esmerveillierons V;IND;PL;1;FUT esmerveillier esmerveillions V;IPFV;IND;PL;1;PST;LGSPEC1 preter preteroit V;COND;SG;3;LGSPEC1 preter pretastes V;PFV;IND;PL;2;PST preter pretes V;IND;SG;2;PRS preter pretoys V;IPFV;IND;SG;2;PST;LGSPEC2 preter preta V;PFV;IND;SG;3;PST preter pretes V;SBJV;SG;2;PRS preter preteryons V;COND;PL;1;LGSPEC2 preter pretons V;IND;PL;1;PRS preter pretasses V;IPFV;SBJV;SG;2;PST preter preterions V;COND;PL;1;LGSPEC1 preter preteroys V;COND;SG;1;LGSPEC2 preter prete V;IND;SG;1;PRS preter pretez V;SBJV;PL;2;PRS preter pretons V;SBJV;PL;1;PRS preter pretons V;IMP;PL;1 preter pretera V;IND;SG;3;FUT preter preteroient V;COND;PL;3;LGSPEC1 preter preteriez V;COND;PL;2;LGSPEC1 preter pretast V;IPFV;SBJV;SG;3;PST preter pretassent V;IPFV;SBJV;PL;3;PST preter pretassions V;IPFV;SBJV;PL;1;PST preter prete V;SBJV;SG;1;PRS preter prete V;SBJV;SG;3;PRS preter pretoient V;IPFV;IND;PL;3;PST;LGSPEC1 preter preteront V;IND;PL;3;FUT preter pretasse V;IPFV;SBJV;SG;1;PST preter preterois V;COND;SG;1;LGSPEC1 preter pretyez V;IPFV;IND;PL;2;PST;LGSPEC2 preter pretoit V;IPFV;IND;SG;3;PST;LGSPEC1 preter preterois V;COND;SG;2;LGSPEC1 preter pretoyent V;IPFV;IND;PL;3;PST;LGSPEC2 preter pretas V;PFV;IND;SG;2;PST preter preterez V;IND;PL;2;FUT preter pretyons V;IPFV;IND;PL;1;PST;LGSPEC2 preter prete V;IND;SG;3;PRS preter preteras V;IND;SG;2;FUT preter preta V;PFV;IND;SG;1;PST preter preterai V;IND;SG;1;FUT;LGSPEC1 preter prete V;IMP;SG;2 preter preterons V;IND;PL;1;FUT preter preteroyt V;COND;SG;3;LGSPEC2 preter pretions V;IPFV;IND;PL;1;PST;LGSPEC1 preter preteroys V;COND;SG;2;LGSPEC2 preter pretoys V;IPFV;IND;SG;1;PST;LGSPEC2 preter preter V;NFIN preter pretez V;IND;PL;2;PRS preter preteryez V;COND;PL;2;LGSPEC2 preter pretez V;IMP;PL;2 preter preterent V;PFV;IND;PL;3;PST preter preteroyent V;COND;PL;3;LGSPEC2 preter pretois V;IPFV;IND;SG;2;PST;LGSPEC1 preter pretoyt V;IPFV;IND;SG;3;PST;LGSPEC2 preter pretiez V;IPFV;IND;PL;2;PST;LGSPEC1 preter pretent V;IND;PL;3;PRS preter pretasmes V;PFV;IND;PL;1;PST preter preteray V;IND;SG;1;FUT;LGSPEC2 preter pretassiez V;IPFV;SBJV;PL;2;PST preter pretent V;SBJV;PL;3;PRS preter pretois V;IPFV;IND;SG;1;PST;LGSPEC1 contreroller contrerolle V;IND;SG;1;PRS contreroller contrerollerons V;IND;PL;1;FUT contreroller contrerollions V;IPFV;IND;PL;1;PST;LGSPEC1 contreroller contrerollez V;SBJV;PL;2;PRS contreroller contrerolleront V;IND;PL;3;FUT contreroller contreroller V;NFIN contreroller contrerollent V;IND;PL;3;PRS contreroller contrerollas V;PFV;IND;SG;2;PST contreroller contrerolleroyt V;COND;SG;3;LGSPEC2 contreroller contrerollent V;SBJV;PL;3;PRS contreroller contrerolloys V;IPFV;IND;SG;2;PST;LGSPEC2 contreroller contrerolles V;IND;SG;2;PRS contreroller contrerollasses V;IPFV;SBJV;SG;2;PST contreroller contrerollasmes V;PFV;IND;PL;1;PST contreroller contrerolleroys V;COND;SG;2;LGSPEC2 contreroller contrerollez V;IMP;PL;2 contreroller contrerolloient V;IPFV;IND;PL;3;PST;LGSPEC1 contreroller contrerollastes V;PFV;IND;PL;2;PST contreroller contrerolleroit V;COND;SG;3;LGSPEC1 contreroller contrerollassent V;IPFV;SBJV;PL;3;PST contreroller contrerollassions V;IPFV;SBJV;PL;1;PST contreroller contrerollyons V;IPFV;IND;PL;1;PST;LGSPEC2 contreroller contrerollons V;SBJV;PL;1;PRS contreroller contrerolla V;PFV;IND;SG;1;PST contreroller contrerolloit V;IPFV;IND;SG;3;PST;LGSPEC1 contreroller contrerolliez V;IPFV;IND;PL;2;PST;LGSPEC1 contreroller contrerolleryez V;COND;PL;2;LGSPEC2 contreroller contrerolle V;IMP;SG;2 contreroller contrerollassiez V;IPFV;SBJV;PL;2;PST contreroller contrerolleroys V;COND;SG;1;LGSPEC2 contreroller contrerollerai V;IND;SG;1;FUT;LGSPEC1 contreroller contrerolloyt V;IPFV;IND;SG;3;PST;LGSPEC2 contreroller contrerollast V;IPFV;SBJV;SG;3;PST contreroller contrerollez V;IND;PL;2;PRS contreroller contrerollerez V;IND;PL;2;FUT contreroller contrerolles V;SBJV;SG;2;PRS contreroller contrerollois V;IPFV;IND;SG;1;PST;LGSPEC1 contreroller contrerolleroient V;COND;PL;3;LGSPEC1 contreroller contrerollois V;IPFV;IND;SG;2;PST;LGSPEC1 contreroller contrerolle V;SBJV;SG;1;PRS contreroller contrerolleras V;IND;SG;2;FUT contreroller contrerolle V;IND;SG;3;PRS contreroller contrerolloys V;IPFV;IND;SG;1;PST;LGSPEC2 contreroller contrerollerois V;COND;SG;1;LGSPEC1 contreroller contrerollons V;IMP;PL;1 contreroller contrerollerent V;PFV;IND;PL;3;PST contreroller contrerollerois V;COND;SG;2;LGSPEC1 contreroller contrerolle V;SBJV;SG;3;PRS contreroller contrerolla V;PFV;IND;SG;3;PST contreroller contrerollasse V;IPFV;SBJV;SG;1;PST contreroller contrerollons V;IND;PL;1;PRS contreroller contrerollyez V;IPFV;IND;PL;2;PST;LGSPEC2 contreroller contrerolleray V;IND;SG;1;FUT;LGSPEC2 contreroller contrerolleriez V;COND;PL;2;LGSPEC1 contreroller contrerollera V;IND;SG;3;FUT contreroller contrerolleroyent V;COND;PL;3;LGSPEC2 contreroller contrerollerions V;COND;PL;1;LGSPEC1 contreroller contrerolleryons V;COND;PL;1;LGSPEC2 contreroller contrerolloyent V;IPFV;IND;PL;3;PST;LGSPEC2 deschainer deschaine V;IND;SG;1;PRS deschainer deschainoys V;IPFV;IND;SG;1;PST;LGSPEC2 deschainer deschainasses V;IPFV;SBJV;SG;2;PST deschainer deschaineroient V;COND;PL;3;LGSPEC1 deschainer deschaineras V;IND;SG;2;FUT deschainer deschaina V;PFV;IND;SG;1;PST deschainer deschainera V;IND;SG;3;FUT deschainer deschainassent V;IPFV;SBJV;PL;3;PST deschainer deschainerent V;PFV;IND;PL;3;PST deschainer deschaine V;IMP;SG;2 deschainer deschaine V;IND;SG;3;PRS deschainer deschainois V;IPFV;IND;SG;1;PST;LGSPEC1 deschainer deschainerai V;IND;SG;1;FUT;LGSPEC1 deschainer deschaineray V;IND;SG;1;FUT;LGSPEC2 deschainer deschainyez V;IPFV;IND;PL;2;PST;LGSPEC2 deschainer deschainastes V;PFV;IND;PL;2;PST deschainer deschainons V;IND;PL;1;PRS deschainer deschainasse V;IPFV;SBJV;SG;1;PST deschainer deschainent V;IND;PL;3;PRS deschainer deschaineroit V;COND;SG;3;LGSPEC1 deschainer deschainerois V;COND;SG;2;LGSPEC1 deschainer deschaine V;SBJV;SG;3;PRS deschainer deschainiez V;IPFV;IND;PL;2;PST;LGSPEC1 deschainer deschaineroyent V;COND;PL;3;LGSPEC2 deschainer deschainez V;IND;PL;2;PRS deschainer deschainoys V;IPFV;IND;SG;2;PST;LGSPEC2 deschainer deschaineroys V;COND;SG;1;LGSPEC2 deschainer deschainent V;SBJV;PL;3;PRS deschainer deschaines V;SBJV;SG;2;PRS deschainer deschaineryez V;COND;PL;2;LGSPEC2 deschainer deschaineront V;IND;PL;3;FUT deschainer deschaines V;IND;SG;2;PRS deschainer deschainas V;PFV;IND;SG;2;PST deschainer deschaineriez V;COND;PL;2;LGSPEC1 deschainer deschainez V;SBJV;PL;2;PRS deschainer deschainasmes V;PFV;IND;PL;1;PST deschainer deschainassiez V;IPFV;SBJV;PL;2;PST deschainer deschaineroys V;COND;SG;2;LGSPEC2 deschainer deschainast V;IPFV;SBJV;SG;3;PST deschainer deschainons V;IMP;PL;1 deschainer deschainoient V;IPFV;IND;PL;3;PST;LGSPEC1 deschainer deschainoyt V;IPFV;IND;SG;3;PST;LGSPEC2 deschainer deschaineryons V;COND;PL;1;LGSPEC2 deschainer deschainer V;NFIN deschainer deschainois V;IPFV;IND;SG;2;PST;LGSPEC1 deschainer deschainerez V;IND;PL;2;FUT deschainer deschainyons V;IPFV;IND;PL;1;PST;LGSPEC2 deschainer deschainassions V;IPFV;SBJV;PL;1;PST deschainer deschainez V;IMP;PL;2 deschainer deschaina V;PFV;IND;SG;3;PST deschainer deschaine V;SBJV;SG;1;PRS deschainer deschainerons V;IND;PL;1;FUT deschainer deschaineroyt V;COND;SG;3;LGSPEC2 deschainer deschainoyent V;IPFV;IND;PL;3;PST;LGSPEC2 deschainer deschainerois V;COND;SG;1;LGSPEC1 deschainer deschainoit V;IPFV;IND;SG;3;PST;LGSPEC1 deschainer deschainons V;SBJV;PL;1;PRS deschainer deschainions V;IPFV;IND;PL;1;PST;LGSPEC1 deschainer deschainerions V;COND;PL;1;LGSPEC1 desprisonner desprisonnes V;IND;SG;2;PRS desprisonner desprisonnerions V;COND;PL;1;LGSPEC1 desprisonner desprisonnoyent V;IPFV;IND;PL;3;PST;LGSPEC2 desprisonner desprisonneroient V;COND;PL;3;LGSPEC1 desprisonner desprisonnasse V;IPFV;SBJV;SG;1;PST desprisonner desprisonnasses V;IPFV;SBJV;SG;2;PST desprisonner desprisonnions V;IPFV;IND;PL;1;PST;LGSPEC1 desprisonner desprisonnastes V;PFV;IND;PL;2;PST desprisonner desprisonnerez V;IND;PL;2;FUT desprisonner desprisonnassions V;IPFV;SBJV;PL;1;PST desprisonner desprisonnera V;IND;SG;3;FUT desprisonner desprisonnez V;SBJV;PL;2;PRS desprisonner desprisonne V;IND;SG;3;PRS desprisonner desprisonneroys V;COND;SG;1;LGSPEC2 desprisonner desprisonneriez V;COND;PL;2;LGSPEC1 desprisonner desprisonna V;PFV;IND;SG;1;PST desprisonner desprisonnons V;SBJV;PL;1;PRS desprisonner desprisonneroyent V;COND;PL;3;LGSPEC2 desprisonner desprisonniez V;IPFV;IND;PL;2;PST;LGSPEC1 desprisonner desprisonnasmes V;PFV;IND;PL;1;PST desprisonner desprisonneroit V;COND;SG;3;LGSPEC1 desprisonner desprisonnez V;IND;PL;2;PRS desprisonner desprisonneroys V;COND;SG;2;LGSPEC2 desprisonner desprisonnassent V;IPFV;SBJV;PL;3;PST desprisonner desprisonneront V;IND;PL;3;FUT desprisonner desprisonnent V;IND;PL;3;PRS desprisonner desprisonnas V;PFV;IND;SG;2;PST desprisonner desprisonnassiez V;IPFV;SBJV;PL;2;PST desprisonner desprisonnerai V;IND;SG;1;FUT;LGSPEC1 desprisonner desprisonnons V;IND;PL;1;PRS desprisonner desprisonne V;IMP;SG;2 desprisonner desprisonnerois V;COND;SG;1;LGSPEC1 desprisonner desprisonneroyt V;COND;SG;3;LGSPEC2 desprisonner desprisonnoit V;IPFV;IND;SG;3;PST;LGSPEC1 desprisonner desprisonnerois V;COND;SG;2;LGSPEC1 desprisonner desprisonnent V;SBJV;PL;3;PRS desprisonner desprisonner V;NFIN desprisonner desprisonnast V;IPFV;SBJV;SG;3;PST desprisonner desprisonnes V;SBJV;SG;2;PRS desprisonner desprisonnerons V;IND;PL;1;FUT desprisonner desprisonnoient V;IPFV;IND;PL;3;PST;LGSPEC1 desprisonner desprisonnons V;IMP;PL;1 desprisonner desprisonnyez V;IPFV;IND;PL;2;PST;LGSPEC2 desprisonner desprisonnez V;IMP;PL;2 desprisonner desprisonnois V;IPFV;IND;SG;2;PST;LGSPEC1 desprisonner desprisonna V;PFV;IND;SG;3;PST desprisonner desprisonnois V;IPFV;IND;SG;1;PST;LGSPEC1 desprisonner desprisonnerent V;PFV;IND;PL;3;PST desprisonner desprisonneras V;IND;SG;2;FUT desprisonner desprisonne V;SBJV;SG;3;PRS desprisonner desprisonneryez V;COND;PL;2;LGSPEC2 desprisonner desprisonne V;SBJV;SG;1;PRS desprisonner desprisonnyons V;IPFV;IND;PL;1;PST;LGSPEC2 desprisonner desprisonnoys V;IPFV;IND;SG;2;PST;LGSPEC2 desprisonner desprisonnoyt V;IPFV;IND;SG;3;PST;LGSPEC2 desprisonner desprisonneryons V;COND;PL;1;LGSPEC2 desprisonner desprisonne V;IND;SG;1;PRS desprisonner desprisonneray V;IND;SG;1;FUT;LGSPEC2 desprisonner desprisonnoys V;IPFV;IND;SG;1;PST;LGSPEC2 vuider vuideriez V;COND;PL;2;LGSPEC1 vuider vuidasmes V;PFV;IND;PL;1;PST vuider vuideroys V;COND;SG;2;LGSPEC2 vuider vuideroit V;COND;SG;3;LGSPEC1 vuider vuideryez V;COND;PL;2;LGSPEC2 vuider vuida V;PFV;IND;SG;1;PST vuider vuiderez V;IND;PL;2;FUT vuider vuidastes V;PFV;IND;PL;2;PST vuider vuidasse V;IPFV;SBJV;SG;1;PST vuider vuide V;IMP;SG;2 vuider vuidez V;IMP;PL;2 vuider vuides V;SBJV;SG;2;PRS vuider vuidera V;IND;SG;3;FUT vuider vuidoys V;IPFV;IND;SG;2;PST;LGSPEC2 vuider vuidois V;IPFV;IND;SG;2;PST;LGSPEC1 vuider vuidassiez V;IPFV;SBJV;PL;2;PST vuider vuideroient V;COND;PL;3;LGSPEC1 vuider vuideray V;IND;SG;1;FUT;LGSPEC2 vuider vuidassions V;IPFV;SBJV;PL;1;PST vuider vuiderions V;COND;PL;1;LGSPEC1 vuider vuide V;SBJV;SG;3;PRS vuider vuide V;IND;SG;3;PRS vuider vuiderent V;PFV;IND;PL;3;PST vuider vuidez V;IND;PL;2;PRS vuider vuidas V;PFV;IND;SG;2;PST vuider vuides V;IND;SG;2;PRS vuider vuidons V;IND;PL;1;PRS vuider vuideroyent V;COND;PL;3;LGSPEC2 vuider vuidoit V;IPFV;IND;SG;3;PST;LGSPEC1 vuider vuidois V;IPFV;IND;SG;1;PST;LGSPEC1 vuider vuident V;SBJV;PL;3;PRS vuider vuiderois V;COND;SG;1;LGSPEC1 vuider vuidiez V;IPFV;IND;PL;2;PST;LGSPEC1 vuider vuiderons V;IND;PL;1;FUT vuider vuidons V;IMP;PL;1 vuider vuidons V;SBJV;PL;1;PRS vuider vuidyons V;IPFV;IND;PL;1;PST;LGSPEC2 vuider vuideryons V;COND;PL;1;LGSPEC2 vuider vuidoys V;IPFV;IND;SG;1;PST;LGSPEC2 vuider vuidast V;IPFV;SBJV;SG;3;PST vuider vuideront V;IND;PL;3;FUT vuider vuide V;IND;SG;1;PRS vuider vuidions V;IPFV;IND;PL;1;PST;LGSPEC1 vuider vuideras V;IND;SG;2;FUT vuider vuidoyt V;IPFV;IND;SG;3;PST;LGSPEC2 vuider vuiderois V;COND;SG;2;LGSPEC1 vuider vuidoient V;IPFV;IND;PL;3;PST;LGSPEC1 vuider vuide V;SBJV;SG;1;PRS vuider vuidassent V;IPFV;SBJV;PL;3;PST vuider vuidyez V;IPFV;IND;PL;2;PST;LGSPEC2 vuider vuiderai V;IND;SG;1;FUT;LGSPEC1 vuider vuideroyt V;COND;SG;3;LGSPEC2 vuider vuider V;NFIN vuider vuideroys V;COND;SG;1;LGSPEC2 vuider vuidasses V;IPFV;SBJV;SG;2;PST vuider vuident V;IND;PL;3;PRS vuider vuidez V;SBJV;PL;2;PRS vuider vuida V;PFV;IND;SG;3;PST vuider vuidoyent V;IPFV;IND;PL;3;PST;LGSPEC2 mucer muçois V;IPFV;IND;SG;1;PST;LGSPEC1 mucer muceryons V;COND;PL;1;LGSPEC2 mucer mucez V;SBJV;PL;2;PRS mucer muceroys V;COND;SG;1;LGSPEC2 mucer muçoient V;IPFV;IND;PL;3;PST;LGSPEC1 mucer muçasses V;IPFV;SBJV;SG;2;PST mucer mucerez V;IND;PL;2;FUT mucer muçasse V;IPFV;SBJV;SG;1;PST mucer muçoit V;IPFV;IND;SG;3;PST;LGSPEC1 mucer muçois V;IPFV;IND;SG;2;PST;LGSPEC1 mucer mucent V;SBJV;PL;3;PRS mucer muces V;IND;SG;2;PRS mucer muceray V;IND;SG;1;FUT;LGSPEC2 mucer mucerois V;COND;SG;1;LGSPEC1 mucer muce V;SBJV;SG;1;PRS mucer muçast V;IPFV;SBJV;SG;3;PST mucer muceroyt V;COND;SG;3;LGSPEC2 mucer muças V;PFV;IND;SG;2;PST mucer mucerons V;IND;PL;1;FUT mucer muceryez V;COND;PL;2;LGSPEC2 mucer muce V;IND;SG;3;PRS mucer muce V;SBJV;SG;3;PRS mucer muçassent V;IPFV;SBJV;PL;3;PST mucer muceroit V;COND;SG;3;LGSPEC1 mucer mucera V;IND;SG;3;FUT mucer muçons V;IND;PL;1;PRS mucer muçastes V;PFV;IND;PL;2;PST mucer muce V;IMP;SG;2 mucer mucyez V;IPFV;IND;PL;2;PST;LGSPEC2 mucer muces V;SBJV;SG;2;PRS mucer muçassions V;IPFV;SBJV;PL;1;PST mucer muçasmes V;PFV;IND;PL;1;PST mucer muceroys V;COND;SG;2;LGSPEC2 mucer muçoys V;IPFV;IND;SG;2;PST;LGSPEC2 mucer muciez V;IPFV;IND;PL;2;PST;LGSPEC1 mucer mucions V;IPFV;IND;PL;1;PST;LGSPEC1 mucer mucerois V;COND;SG;2;LGSPEC1 mucer muçons V;SBJV;PL;1;PRS mucer mucerions V;COND;PL;1;LGSPEC1 mucer muçoys V;IPFV;IND;SG;1;PST;LGSPEC2 mucer muceriez V;COND;PL;2;LGSPEC1 mucer muce V;IND;SG;1;PRS mucer muça V;PFV;IND;SG;3;PST mucer muçoyt V;IPFV;IND;SG;3;PST;LGSPEC2 mucer muçoyent V;IPFV;IND;PL;3;PST;LGSPEC2 mucer muceront V;IND;PL;3;FUT mucer muceroient V;COND;PL;3;LGSPEC1 mucer muçassiez V;IPFV;SBJV;PL;2;PST mucer muçons V;IMP;PL;1 mucer muça V;PFV;IND;SG;1;PST mucer muceroyent V;COND;PL;3;LGSPEC2 mucer mucent V;IND;PL;3;PRS mucer mucez V;IND;PL;2;PRS mucer muçons V;IPFV;IND;PL;1;PST;LGSPEC2 mucer mucer V;NFIN mucer mucerai V;IND;SG;1;FUT;LGSPEC1 mucer mucerent V;PFV;IND;PL;3;PST mucer mucez V;IMP;PL;2 mucer muceras V;IND;SG;2;FUT ieuner ieune V;IMP;SG;2 ieuner ieunerois V;COND;SG;2;LGSPEC1 ieuner ieunions V;IPFV;IND;PL;1;PST;LGSPEC1 ieuner ieunoyent V;IPFV;IND;PL;3;PST;LGSPEC2 ieuner ieunasse V;IPFV;SBJV;SG;1;PST ieuner ieunerai V;IND;SG;1;FUT;LGSPEC1 ieuner ieune V;SBJV;SG;3;PRS ieuner ieuneront V;IND;PL;3;FUT ieuner ieunasses V;IPFV;SBJV;SG;2;PST ieuner ieunez V;IMP;PL;2 ieuner ieunent V;IND;PL;3;PRS ieuner ieunyons V;IPFV;IND;PL;1;PST;LGSPEC2 ieuner ieuner V;NFIN ieuner ieunassions V;IPFV;SBJV;PL;1;PST ieuner ieunerez V;IND;PL;2;FUT ieuner ieuna V;PFV;IND;SG;3;PST ieuner ieunoient V;IPFV;IND;PL;3;PST;LGSPEC1 ieuner ieunons V;IND;PL;1;PRS ieuner ieunoyt V;IPFV;IND;SG;3;PST;LGSPEC2 ieuner ieunez V;SBJV;PL;2;PRS ieuner ieunyez V;IPFV;IND;PL;2;PST;LGSPEC2 ieuner ieunera V;IND;SG;3;FUT ieuner ieuneroit V;COND;SG;3;LGSPEC1 ieuner ieuneroient V;COND;PL;3;LGSPEC1 ieuner ieuna V;PFV;IND;SG;1;PST ieuner ieunerois V;COND;SG;1;LGSPEC1 ieuner ieuniez V;IPFV;IND;PL;2;PST;LGSPEC1 ieuner ieunasmes V;PFV;IND;PL;1;PST ieuner ieune V;SBJV;SG;1;PRS ieuner ieunes V;SBJV;SG;2;PRS ieuner ieunes V;IND;SG;2;PRS ieuner ieunons V;IMP;PL;1 ieuner ieunez V;IND;PL;2;PRS ieuner ieunastes V;PFV;IND;PL;2;PST ieuner ieunast V;IPFV;SBJV;SG;3;PST ieuner ieune V;IND;SG;1;PRS ieuner ieunassent V;IPFV;SBJV;PL;3;PST ieuner ieunassiez V;IPFV;SBJV;PL;2;PST ieuner ieunoys V;IPFV;IND;SG;1;PST;LGSPEC2 ieuner ieuneroyt V;COND;SG;3;LGSPEC2 ieuner ieunas V;PFV;IND;SG;2;PST ieuner ieuneray V;IND;SG;1;FUT;LGSPEC2 ieuner ieuneryez V;COND;PL;2;LGSPEC2 ieuner ieunerent V;PFV;IND;PL;3;PST ieuner ieuneroys V;COND;SG;1;LGSPEC2 ieuner ieunoys V;IPFV;IND;SG;2;PST;LGSPEC2 ieuner ieuneroyent V;COND;PL;3;LGSPEC2 ieuner ieuneras V;IND;SG;2;FUT ieuner ieunerions V;COND;PL;1;LGSPEC1 ieuner ieune V;IND;SG;3;PRS ieuner ieunons V;SBJV;PL;1;PRS ieuner ieuneriez V;COND;PL;2;LGSPEC1 ieuner ieunerons V;IND;PL;1;FUT ieuner ieunoit V;IPFV;IND;SG;3;PST;LGSPEC1 ieuner ieuneryons V;COND;PL;1;LGSPEC2 ieuner ieuneroys V;COND;SG;2;LGSPEC2 ieuner ieunent V;SBJV;PL;3;PRS ieuner ieunois V;IPFV;IND;SG;2;PST;LGSPEC1 ieuner ieunois V;IPFV;IND;SG;1;PST;LGSPEC1 estonner estonna V;PFV;IND;SG;1;PST estonner estonne V;SBJV;SG;3;PRS estonner estonnois V;IPFV;IND;SG;2;PST;LGSPEC1 estonner estonnasse V;IPFV;SBJV;SG;1;PST estonner estonnerions V;COND;PL;1;LGSPEC1 estonner estonner V;NFIN estonner estonneryons V;COND;PL;1;LGSPEC2 estonner estonnyons V;IPFV;IND;PL;1;PST;LGSPEC2 estonner estonneray V;IND;SG;1;FUT;LGSPEC2 estonner estonne V;IND;SG;1;PRS estonner estonneras V;IND;SG;2;FUT estonner estonnois V;IPFV;IND;SG;1;PST;LGSPEC1 estonner estonneroyent V;COND;PL;3;LGSPEC2 estonner estonnons V;SBJV;PL;1;PRS estonner estonneroit V;COND;SG;3;LGSPEC1 estonner estonnoys V;IPFV;IND;SG;1;PST;LGSPEC2 estonner estonnions V;IPFV;IND;PL;1;PST;LGSPEC1 estonner estonnasmes V;PFV;IND;PL;1;PST estonner estonne V;SBJV;SG;1;PRS estonner estonnerent V;PFV;IND;PL;3;PST estonner estonnoys V;IPFV;IND;SG;2;PST;LGSPEC2 estonner estonnerois V;COND;SG;2;LGSPEC1 estonner estonnez V;IND;PL;2;PRS estonner estonnastes V;PFV;IND;PL;2;PST estonner estonnons V;IND;PL;1;PRS estonner estonnons V;IMP;PL;1 estonner estonnast V;IPFV;SBJV;SG;3;PST estonner estonnassent V;IPFV;SBJV;PL;3;PST estonner estonnera V;IND;SG;3;FUT estonner estonnoient V;IPFV;IND;PL;3;PST;LGSPEC1 estonner estonneroys V;COND;SG;1;LGSPEC2 estonner estonnes V;IND;SG;2;PRS estonner estonneroyt V;COND;SG;3;LGSPEC2 estonner estonneront V;IND;PL;3;FUT estonner estonnes V;SBJV;SG;2;PRS estonner estonneriez V;COND;PL;2;LGSPEC1 estonner estonne V;IND;SG;3;PRS estonner estonna V;PFV;IND;SG;3;PST estonner estonnoyt V;IPFV;IND;SG;3;PST;LGSPEC2 estonner estonnoyent V;IPFV;IND;PL;3;PST;LGSPEC2 estonner estonnerois V;COND;SG;1;LGSPEC1 estonner estonneroys V;COND;SG;2;LGSPEC2 estonner estonniez V;IPFV;IND;PL;2;PST;LGSPEC1 estonner estonnassions V;IPFV;SBJV;PL;1;PST estonner estonneroient V;COND;PL;3;LGSPEC1 estonner estonnez V;SBJV;PL;2;PRS estonner estonnas V;PFV;IND;SG;2;PST estonner estonnez V;IMP;PL;2 estonner estonnerons V;IND;PL;1;FUT estonner estonnoit V;IPFV;IND;SG;3;PST;LGSPEC1 estonner estonnent V;SBJV;PL;3;PRS estonner estonneryez V;COND;PL;2;LGSPEC2 estonner estonnent V;IND;PL;3;PRS estonner estonnyez V;IPFV;IND;PL;2;PST;LGSPEC2 estonner estonnerai V;IND;SG;1;FUT;LGSPEC1 estonner estonne V;IMP;SG;2 estonner estonnerez V;IND;PL;2;FUT estonner estonnassiez V;IPFV;SBJV;PL;2;PST estonner estonnasses V;IPFV;SBJV;SG;2;PST demander demandyez V;IPFV;IND;PL;2;PST;LGSPEC2 demander demanda V;PFV;IND;SG;3;PST demander demanderyez V;COND;PL;2;LGSPEC2 demander demandassions V;IPFV;SBJV;PL;1;PST demander demande V;IND;SG;1;PRS demander demandois V;IPFV;IND;SG;1;PST;LGSPEC1 demander demanderez V;IND;PL;2;FUT demander demandasse V;IPFV;SBJV;SG;1;PST demander demandastes V;PFV;IND;PL;2;PST demander demanderois V;COND;SG;2;LGSPEC1 demander demandast V;IPFV;SBJV;SG;3;PST demander demandoient V;IPFV;IND;PL;3;PST;LGSPEC1 demander demanderont V;IND;PL;3;FUT demander demanda V;PFV;IND;SG;1;PST demander demanderoys V;COND;SG;1;LGSPEC2 demander demandes V;SBJV;SG;2;PRS demander demanderiez V;COND;PL;2;LGSPEC1 demander demande V;SBJV;SG;3;PRS demander demandera V;IND;SG;3;FUT demander demandasmes V;PFV;IND;PL;1;PST demander demandassiez V;IPFV;SBJV;PL;2;PST demander demandez V;SBJV;PL;2;PRS demander demandoyent V;IPFV;IND;PL;3;PST;LGSPEC2 demander demanderoys V;COND;SG;2;LGSPEC2 demander demandons V;IND;PL;1;PRS demander demanderons V;IND;PL;1;FUT demander demanderai V;IND;SG;1;FUT;LGSPEC1 demander demandois V;IPFV;IND;SG;2;PST;LGSPEC1 demander demanderions V;COND;PL;1;LGSPEC1 demander demande V;IMP;SG;2 demander demandasses V;IPFV;SBJV;SG;2;PST demander demandassent V;IPFV;SBJV;PL;3;PST demander demandent V;SBJV;PL;3;PRS demander demander V;NFIN demander demandons V;IMP;PL;1 demander demandas V;PFV;IND;SG;2;PST demander demandiez V;IPFV;IND;PL;2;PST;LGSPEC1 demander demanderay V;IND;SG;1;FUT;LGSPEC2 demander demandons V;SBJV;PL;1;PRS demander demanderois V;COND;SG;1;LGSPEC1 demander demandent V;IND;PL;3;PRS demander demanderoit V;COND;SG;3;LGSPEC1 demander demandoit V;IPFV;IND;SG;3;PST;LGSPEC1 demander demanderas V;IND;SG;2;FUT demander demanderoyt V;COND;SG;3;LGSPEC2 demander demandes V;IND;SG;2;PRS demander demandoyt V;IPFV;IND;SG;3;PST;LGSPEC2 demander demandions V;IPFV;IND;PL;1;PST;LGSPEC1 demander demandyons V;IPFV;IND;PL;1;PST;LGSPEC2 demander demande V;IND;SG;3;PRS demander demandez V;IMP;PL;2 demander demanderyons V;COND;PL;1;LGSPEC2 demander demanderoient V;COND;PL;3;LGSPEC1 demander demanderent V;PFV;IND;PL;3;PST demander demandoys V;IPFV;IND;SG;1;PST;LGSPEC2 demander demandez V;IND;PL;2;PRS demander demandoys V;IPFV;IND;SG;2;PST;LGSPEC2 demander demande V;SBJV;SG;1;PRS demander demanderoyent V;COND;PL;3;LGSPEC2
bd72596167785727cf627ac5dd818f26941ac184
449d555969bfd7befe906877abab098c6e63a0e8
/343/CH2/EX2.48/ex2_48.sce
ffeda8488c95b79b989ad24612d0fc575b7ce936
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
360
sce
ex2_48.sce
clc; L=0.01; //Assigning value sto parameters fr=50; function v=f(t), y=400*sin(3000*t-10),endfunction; //Defining functions function i=f1(t),i=10*sqrt(2)*cos(3000*t-55), endfunction; V=278.54-%i*49.11; I=8.191+5.7*%i; Z=V/I; R=real(Z); Xl=3000*L; Xc=50; C=1/(2*%pi*fr*Xc); disp("Ohms",R,"resistance R"); disp("Farad",C,"Capacitance C");
382657a0bb75b0f56e578859e34cb3f5080c6314
449d555969bfd7befe906877abab098c6e63a0e8
/2780/CH2/EX2.13/Ex2_13.sce
220d870bc9ecacdf67ed6f41442f767984518ff9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
715
sce
Ex2_13.sce
clc //to calculate intensity mu=1.5 //refractive index(unitless) t=1.5*10^-6 //thickness of thin glass plate in m pathdifference=(mu-1)*t // in m lambda=5*10^-7 //wavelength in m //del=2*%pi*pathdifference/lambda del=3*%pi a1=1 //where a1=a2=a a2=1 //formula is I=a1^2+a2^2+2*a1*a2*cos del // where cos 3%pi=-1 I=a1^2+a2^2+2*a1*a2*(-1) disp("the intensity at the centre of the screen is I="+string(I)+"unitless" ) //to calculate lateral shift D=1 //distance in m twod=5*10^-4 //distance between two slits in m mu=1.5 //refractive index (unitless) t=1.5*10^-6 //thickness of thin glass plate in m x0=D*(mu-1)*t/twod disp("the lateral shift of the central maximum is x0="+string(x0)+"m")
f9fcc4c96de33ca05dd6c732716a40d6b9da5bd3
449d555969bfd7befe906877abab098c6e63a0e8
/854/CH9/EX9.9/Example9_9.sce
ead7058687a5d4413d97be1d60cc8665c7f52148
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,564
sce
Example9_9.sce
//clear// //Caption: Program to calculate self inductances and Mutual Inductances between two coaixal solenoids //Example9.9 //page 297 clc; n1 = sym('n1'); n2 = sym('n2'); I1 = sym('I1'); I2 = sym('I2'); az = sym('az'); R1 = sym('R1'); R2 = sym('R2'); u0 = sym('u0'); H1 = n1*I1*az; disp(H1,'H1 ='); H2 = n2*I2*az; disp(H2,'H2 ='); S1 = float(%pi*R1^2); S2 = float(%pi*R2^2); Hz = float(H1/az); phi12 = float(u0*Hz*S1); disp(phi12,'phi12 = ') M12 = n2*phi12/I1; disp(M12,'M12 =') //R1 = 2e-02; //R2 = 3e-02; //n1 = 50*100; //number of turns/m //n2 = 80*100; //number of turns/m //u0 = 4*%pi*1e-07; M12 = float(limit(M12,R1,2e-02)); M12 = float(limit(M12,R2,3e-02)); M12 = float(limit(M12,n1,5000)); M12 = float(limit(M12,n2,8000)); M12 = float(limit(M12,u0,4*%pi*1e-07)); disp(M12*1e03,'Mutual Inductance in mH/m M12=') L1 = u0*n1^2*S1; L1 = float(limit(L1,u0,4*%pi*1e-07)); L1 = float(limit(L1,n1,5000)); L1 = float(limit(L1,R1,2e-02)); disp(L1*1e3,'Self Inductance of solenoid 1 in mH/m L1 =') L2 = u0*n2^2*S2; L2 = float(limit(L2,u0,4*%pi*1e-07)); L2 = float(limit(L2,n2,8000)); L2 = float(limit(L2,R2,3e-02)); disp(L2*1e3,'Self Inductance of solenoid 1 in mH/m L2 =') //Result // H1 = az*n1*I1 // H2 = az*n2*I2 // phi12 = 3.141592653011903*n1*u0*I1*R1^2 // M12 = 3.141592653011903*n1*n2*u0*R1^2 // Mutual Inductance in mH/m M12= 63.16546815077 // Self Inductance of solenoid 1 in mH/m L1 = 39.47841759423 // Self Inductance of solenoid 1 in mH/m L2 = 227.39568534276
56143988daf7ad407d7d1a15f880a1210f6b5b4c
449d555969bfd7befe906877abab098c6e63a0e8
/2321/CH3/EX3.11.1/EX3_11_1.sce
bcbcb12f1593d8b60a4d8fafb8559a2fd6e9675b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
225
sce
EX3_11_1.sce
//Example No. 3.11.1 clc; clear; close; format('v',6); D=20;//Directivity K=90;//%//radiation efficiency G=(K/100)*D;//Gain GdB=10*log10(G);//dB disp(GdB,"Gain in dB : "); //Answer is not calculated in the book.
f803976909275a1b785c4f7e40ae970b959d7c6a
449d555969bfd7befe906877abab098c6e63a0e8
/1697/CH7/EX7.3/Exa7_3.sce
138bc1305f0b981f86f02b68c838bdb78b7ddd4e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
210
sce
Exa7_3.sce
//Exa 7.3 clc; clear; close; //given data : disp("Open mouth aperture, D = 10*lambda"); disp("Power gain : GP = 6*(D/labda)^2"); GP=6*10^2;//unitless GPdB=10*log10(GP) disp(GPdB,"Power gain in dB : ");
ca5a9dda0f350898b788c97bfe0d9e528a8e30ea
59ca8642f974b397e1747edc1015fce8b8e6c59f
/RK4.sce
010db446625628cc2a029e555fc2ceabacd1c11e
[]
no_license
mcortex/scilab-code
c6a367b216e531d0ebe3cda5d4a84156b23d2085
2709299d60d9e72294b274773bdadb4126a25ba9
refs/heads/master
2020-05-26T05:49:42.441734
2019-12-06T02:06:49
2019-12-06T02:06:49
188,126,346
0
0
null
null
null
null
UTF-8
Scilab
false
false
734
sce
RK4.sce
// FUNCION A EVALUAR: function z=f(t,y) //z=%e*t*%e^sin(y); //z=t^2*y^4 z=t*%e^y endfunction function T=RK4(t,y,f,h,N) // t=var indep, y=var dep de t, f(t,y(t)), h=paso, N=cantidad de iteraciones T=[t y] //matriz de 1 fila x 2 columnas: [t0 y0] for i=1:N K1=f(t,y)*h t=t+h/2 K2=f(t,y+K1/2)*h K3=f(t,y+K2/2)*h t=t+h/2 K4=f(t,y+K3)*h printf("\nyi= %12.9f + ( %12.9f + 2 * ( %12.9f + %12.9f ) + %12.9f ) / 6 ",y,K1,K2,K3,K4); y=y+(K1+2*(K2+K3)+K4)/6 // calculo yi T=[T;t y] // ";" agrega una fila a la matriz end t=T(:,1); y=T(:,2)'; //Grafico f(x) plot2d(t,y); //muestra grilla xgrid(3,1,7); endfunction
cf7ac1b22eb3da9c76dd7a81aa7fcc54c03df3db
449d555969bfd7befe906877abab098c6e63a0e8
/55/CH1/EX1.18/1ex18.sci
2c4f7d96fe5d063e364e927bff39c0be30c80e78
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
169
sci
1ex18.sci
U1=1; //given U2=5; //given P=[]; for i=1:2 P(i)=3^i-2^i; disp(P(i)) end disp('P(1)=U(1) and P(2)=U(2)'); disp('hence Un=3^n-2^n for all n belonging to N');
52ba6d6e08ffcc4c208de08c2d2f2acf2400c84b
36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd
/Adjust to Track Speed.sce
ba210cce0d775a37736dccd3111751f7cc158e85
[]
no_license
Ahmad6543/Scenarios
cef76bf19d46e86249a6099c01928e4e33db5f20
6a4563d241e61a62020f76796762df5ae8817cc8
refs/heads/master
2023-03-18T23:30:49.653812
2020-09-23T06:26:05
2020-09-23T06:26:05
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
28,554
sce
Adjust to Track Speed.sce
Name=Adjust to Track Speed PlayerCharacters=Alcove_Player BotCharacters=FloatingOrbr.rot IsChallenge=true Timelimit=60.0 PlayerProfile=Alcove_Player AddedBots=FloatingOrbr.rot;FloatingOrbr.rot PlayerMaxLives=0 BotMaxLives=0;0 PlayerTeam=2 BotTeams=1;1 MapName=smallspawngrid.map MapScale=6.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=true InvincibleBots=false Timescale=1.0 BlockHealthbars=true TimeRefilledByKill=0.3 ScoreToWin=6000.0 ScorePerDamage=1.0 ScorePerKill=150.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=true ScoreMultKillEfficiency=false GameTag=Tracking, Fun WeaponHeroTag=Tracking DifficultyTag=1 AuthorsTag=Stral, Disaria BlockHitMarkers=true BlockHitSounds=true BlockMissSounds=true BlockFCT=true Description=Fragile orbs spawn in front of you and float left or right. Practice making small adjustments into tracking aim. Shots on center of the hitbox deal higher DPS and projectiles or sparks are visual only. GameVersion=1.0.8.0 ScorePerDistance=0.0 MBSEnable=false MBSTime1=0.25 MBSTime2=0.5 MBSTime3=0.75 MBSTime1Mult=1.0 MBSTime2Mult=2.0 MBSTime3Mult=3.0 MBSFBInstead=false MBSRequireEnemyAlive=false [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Bot Profile] Name=FloatingOrbLeft DodgeProfileNames=HoldLeft DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=3.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=FloatingOrb SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=FloatingOrbRight DodgeProfileNames=HoldRight DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=3.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=FloatingOrb SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=FloatingOrbLeft+ DodgeProfileNames=HoldLeft DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=3.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=FloatingOrb+ SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=FloatingOrbRight+ DodgeProfileNames=HoldRight DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=3.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=FloatingOrb+ SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=FloatingOrbLeft++ DodgeProfileNames=HoldLeft DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=3.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=FloatingOrb++ SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=FloatingOrbRight++ DodgeProfileNames=HoldRight DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=3.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=FloatingOrb++ SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Rotation Profile] Name=FloatingOrbr ProfileNames=FloatingOrbLeft;FloatingOrbRight;FloatingOrbLeft+;FloatingOrbRight+;FloatingOrbLeft++;FloatingOrbRight++ ProfileWeights=1.0;1.0;0.8;0.8;0.65;0.65 Randomized=true [Character Profile] Name=Alcove_Player MaxHealth=300.0 WeaponProfileNames=Alcove_Tracking_Weapon;;;;;;; MinRespawnDelay=0.1 MaxRespawnDelay=0.1 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=0.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=0.0 Gravity=30.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=320.0 MainBBRadius=58.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=5.0 BlockSpawnDistance=222222.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=false BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=FloatingOrb MaxHealth=300.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.14 MaxRespawnDelay=0.14 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=3000.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=0.0 Gravity=0.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=255.000 Y=0.000 Z=0.000 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=64.0 ProjBBRadius=32.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.02 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.25 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=FloatingOrb+ MaxHealth=280.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.14 MaxRespawnDelay=0.14 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=3200.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=0.0 Gravity=0.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=255.000 Y=0.000 Z=0.000 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=64.0 ProjBBRadius=32.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.02 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.25 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=FloatingOrb++ MaxHealth=270.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.14 MaxRespawnDelay=0.14 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=3400.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=0.0 Gravity=0.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=255.000 Y=0.000 Z=0.000 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=64.0 ProjBBRadius=32.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.02 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.25 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Dodge Profile] Name=HoldLeft MaxTargetDistance=100000.0 MinTargetDistance=0.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.3 MaxLRTimeChange=0.3 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=100.0 RightStrafeTimeMult=0.000001 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Dodge Profile] Name=HoldRight MaxTargetDistance=100000.0 MinTargetDistance=0.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.3 MaxLRTimeChange=0.3 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=0.000001 RightStrafeTimeMult=100.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Weapon Profile] Name=Alcove_Tracking_Weapon Type=Hitscan ShotsPerClick=10 DamagePerShot=1.0 KnockbackFactor=0.0 TimeBetweenShots=0.02 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=60000.0 GravityScale=1.0 HeadshotCapable=false HeadshotMultiplier=0.1 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=1.0 DelayBeforeShot=0.0 HitscanVisualEffect=None ProjectileGraphic=Ball VisualLifetime=0.0001 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.05 HitSoundCooldown=0.05 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=0 DecalSize=4.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot=Alcove Tracking Effect Helper ADSShoot= StunDuration=0.0 CircularSpread=false SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.01 HitscanVisualRadius=0.001 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=true PBS0=0.0,0.0 PBS1=0.0,0.0 PBS2=0.3,45.0 PBS3=0.3,90.0 PBS4=0.3,135.0 PBS5=0.3,180.0 PBS6=0.3,225.0 PBS7=0.3,270.0 PBS8=0.3,315.0 PBS9=0.3,0.0 [Weapon Profile] Name=Alcove Tracking Effect Helper Type=Projectile ShotsPerClick=1 DamagePerShot=0.0 KnockbackFactor=0.0 TimeBetweenShots=0.12 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=100000.000 Y=-1000.000 Z=-1000.000 MuzzleVelocityMax=X=100000.000 Y=1000.000 Z=1000.000 InheritOwnerVelocity=1.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=0.025 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=false HeadshotMultiplier=0.1 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=0.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=999.0 HitSoundCooldown=999.0 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=0 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=2.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=4.0,0.5,2.0,8.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=4.0,0.5,2.0,8.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn brush vertices 656.000000 -16.000000 2064.000000 656.000000 -16.000000 -1872.000000 656.000000 16.000000 -1872.000000 656.000000 16.000000 2064.000000 -64.000000 16.000000 -1872.000000 -64.000000 -16.000000 -1872.000000 -64.000000 -16.000000 2064.000000 -64.000000 16.000000 2064.000000 faces 0.000000 0.000000 2.000000 2.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 656.000000 -16.000000 2096.000000 656.000000 -16.000000 2064.000000 656.000000 496.000000 2064.000000 656.000000 496.000000 2096.000000 -64.000000 496.000000 2064.000000 -64.000000 -16.000000 2064.000000 -64.000000 -16.000000 2096.000000 -64.000000 496.000000 2096.000000 faces 0.000000 0.000000 2.000000 2.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 656.000000 -16.000000 -1872.000000 656.000000 -16.000000 -1904.000000 656.000000 496.000000 -1904.000000 656.000000 496.000000 -1872.000000 -64.000000 496.000000 -1904.000000 -64.000000 -16.000000 -1904.000000 -64.000000 -16.000000 -1872.000000 -64.000000 496.000000 -1872.000000 faces 0.000000 0.000000 2.000000 2.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 688.000000 -16.000000 2096.000000 688.000000 -16.000000 -1904.000000 688.000000 496.000000 -1904.000000 688.000000 496.000000 2096.000000 656.000000 496.000000 -1904.000000 656.000000 -16.000000 -1904.000000 656.000000 -16.000000 2096.000000 656.000000 496.000000 2096.000000 faces 0.000000 0.000000 2.000000 2.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -64.000000 -16.000000 2096.000000 -64.000000 -16.000000 -1904.000000 -64.000000 496.000000 -1904.000000 -64.000000 496.000000 2096.000000 -96.000000 496.000000 -1904.000000 -96.000000 -16.000000 -1904.000000 -96.000000 -16.000000 2096.000000 -96.000000 496.000000 2096.000000 faces 0.000000 0.000000 2.000000 2.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 656.000000 464.000000 2064.000000 656.000000 464.000000 -1872.000000 656.000000 496.000000 -1872.000000 656.000000 496.000000 2064.000000 -64.000000 496.000000 -1872.000000 -64.000000 464.000000 -1872.000000 -64.000000 464.000000 2064.000000 -64.000000 496.000000 2064.000000 faces 0.000000 0.000000 2.000000 2.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 8.000000 16.000000 -88.000000 8.000000 16.000000 -152.000000 8.000000 256.000000 -152.000000 8.000000 256.000000 -88.000000 -56.000000 256.000000 -152.000000 -56.000000 16.000000 -152.000000 -56.000000 16.000000 -88.000000 -56.000000 256.000000 -88.000000 faces 0.000000 0.000000 2.000000 2.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty entity type PlayerSpawn Vector3 position -24.000000 280.000000 -120.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 576.000000 300.000000 -120.000000 Vector3 angles 270.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 576.000000 300.000000 -128.000000 Vector3 angles 270.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 576.000000 300.000000 -112.000000 Vector3 angles 270.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 576.000000 308.000000 -112.000000 Vector3 angles 270.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 576.000000 308.000000 -120.000000 Vector3 angles 270.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 576.000000 308.000000 -128.000000 Vector3 angles 270.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 576.000000 292.000000 -112.000000 Vector3 angles 270.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 576.000000 292.000000 -120.000000 Vector3 angles 270.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 576.000000 292.000000 -128.000000 Vector3 angles 270.000000 0.000000 0.000000 Bool8 TeamB 0
558d2bc12d86beddbe2ac50576c6f73a3deeb3c3
449d555969bfd7befe906877abab098c6e63a0e8
/1544/CH3/EX3.12/Ch03Ex12.sce
72ddda713184bbe64efe2285b9e0900c2cdb0bbe
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,988
sce
Ch03Ex12.sce
// Scilab code Ex3.12: Pg 92-95 (2008) clc; clear; V = 200; // Supply voltage, voltage C_AB = 2; // Capacitance across branch AB, micro-farad C_BC = 3; // Capacitance across branch BC, micro-farad C_CD = 6; // Capacitance across branch CD, micro-farad C_EF = 8; // Capacitance across branch EF, micro-farad C_BD = 4; // Capacitance across branch EF, micro-farad // Part (a) // Since 3-micro-farad & 6-micro-farad capacitors are in series & the reciprocal of the resulting capacitance of capacitors connected in series is the sum of the reciprocal of the individual capacitances present in the circuit, therefore i.e 1/C = 1/C1 + 1/C2 C_BCD = ( C_BC*C_CD )/(C_BC+C_CD); // Resulting capacitance across branch BCD, micro-farad //Since C_BCD & 4-micro-farad capacitors are in parallel & the resulting capacitance of parallerly connected capacitors is the sum of the individual capacitance present in the circuit C_BD = C_BCD + C_BD; // Resulting capacitance across branch BD, micro-farad // Since 2-micro-farad & C_BD capacitors are in series & the reciprocal of the resulting capacitance of capacitors connected in series is the sum of the reciprocal of the individual capacitances present in the circuit, therefore, we have C_AD = (C_BD*C_AB)/(C_BD+C_AB); // Resulting capacitance across branch AD, micro-farad //Since C_AD & C_EF capacitors are in parallel & the resulting capacitance of parallerly connected capacitors is the sum of the individual capacitance present in the circuit C = C_AD + C_EF; // Resulting capacitance of the circuit, micro-farad Q = V*C; // Electric charge drawn from the supply, C // Part (b) Q_EF = V*C_EF; // The charge on the 8 micro-farad capacitor, micro-coulomb // Part (c) Q_AD = Q - Q_EF; // The charge on the 4 micro-farad capacitor, C Q_BD = Q_AD; // Charge in series combination of capacitors, micro-farad // Since Q = C*V, solving for V V_BD = Q_BD/C_BD; // The p.d. across the 4  F capacitor,V // Part(d) Q_BCD = V_BD*C_BCD; // Electric charge across branch BCD, C Q_BC = Q_BCD; // Electric charge, C V_BC = Q_BC/C_BC; // The p.d. across the 3 micro-farad capacitor printf("\nThe charge drawn from the supply = %3.1f mC", Q/1e+03); printf("\nThe charge on the %1d micro-farad capacitor = %3.1f mC", C_EF, Q_EF/1e+03); printf("\nThe p.d. across the %1d micro-farad capacitor= %2d V", C_BD, V_BD); printf("\nThe p.d. across the %1d micro-farad capacitor = %5.2f V", Q_BC, V_BC); // Result // The charge drawn from the supply = 1.9 mC // The charge on the 8 micro-farad capacitor = 1.6 mC // The p.d. across the 6 micro-farad capacitor= 50 V // The p.d. across the 100 micro-farad capacitor = 33.33 V
b183bc8be11a6eca7d73ac587d31dc96a282e508
449d555969bfd7befe906877abab098c6e63a0e8
/3041/CH2/EX2.13/Ex2_13.sce
51ff1476d263700ba815b1647d60ca667ab2f3c3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
479
sce
Ex2_13.sce
//Variable declaration K=2 //device parameter Rd=2.5*10**3 //drain resistance(k ohms) Rs= Rd R1=100*10**3 //resistance(ohms) R2=200*10**3 //resistance(ohms) Vdd=12 //drain voltage(V) Vt=4 //threshold voltage(V) //Calculations Vgg=(R2*Vdd)/(R1+R2) syms Id expr=solve([Id**2-3.28*Id+2.56],[Id]) disp(expr) Id=1.28 Vds=Vdd-5*Id //Result printf ("Id is %.2f mA and Vds is %.1f V",Id,Vds)