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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
9d0548ae1a9eeb0361941093cf8350c54fedf82a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3537/CH4/EX4.1/Ex4_1.sce | 370b5da5af16707134cffad045a76a92f5f88e60 | [] | 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 | 337 | sce | Ex4_1.sce | //Example 4_1
clc();
clear;
//To calculate the density of the germanium
n=8
a=5.62*10^-10 //units in meters
M=710.59 //atomic weight of Ge units in a.m.u
N=6.02*10^26 //units in kg/mol
Density=(n*M)/(a^3*N)
printf("Density of the germanium is %.0f kg/m^3",Density)
|
8b37a2a3c4eff18839dad8d1de1884634bee83f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /443/CH1/EX1.9/1_9.sce | 48be2be03f922e496e4cb25879795941d83c0224 | [] | 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 | 804 | sce | 1_9.sce | pathname=get_absolute_file_path('1_9.sce')
filename=pathname+filesep()+'1_9_data.sci'
exec(filename)
//mechanical efficiency at full load
nm=bp/(bp+fp)
//mechanical effciciency at half load
nmh=0.5*bp/(0.5*bp+fp)
//mechanical efficiency at quarter load
nmq=0.25*bp/(0.25*bp+fp)
//mass flow rate of fuel
mf=bp/(nbth*CV)
//volume flow rate of fuel
vf=mf/(pg*1000)
//indicated thermal efficiency at full load
nith=nbth/nm
printf("\n\nRESULTS\n\n")
printf("\nmechanical efficiency at full load:%f \n",nm*100)
printf("\nmechanical effciciency at half load:%f\n",nmh*100)
printf("\nmechanical efficiency a quarter load:%f\n",nmq*100)
printf("\nmass flow rate of fuel:%f\n",mf)
printf("\nvolume flow rate of fuel:%f\n",vf)
printf("\nindicated thermal efficiency at full load:%f\n",nith*100) |
7c759f59d77cfe461599d6b7f84d8b940ff79c13 | 449d555969bfd7befe906877abab098c6e63a0e8 | /611/CH3/EX3.10/Chap3_Ex10.sce | 1d38a33e2d4a7b06ef653ea503dd4b8d43d80fa9 | [] | 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,115 | sce | Chap3_Ex10.sce | // Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
//Chapter-3,Example 10,Page 67
//Title:Acentric factor
//================================================================================================================
clear
clc
//INPUT
T=180;//temperature of water in degree celsius
P=1.0027;//saturation pressure of water in MPa
Tc=647.3;//critical temperature of water in K
Pc=221.2;//critical pressure of water in bar
Tr=0.7;//reduced temperature at which acentric factor was defined by Pitzer
//CALCULATION
T1=Tr*Tc;//calculating temperature in K using reduced temperature value
T1=T1-273.15;//conversion to degree celsius
Pr=(P*10)/Pc;//calculation of reduced pressure (no unit) using saturation pressure at t1. In this case t1 equals t, therefore the given saturation pressure is taken
w=-log10(Pr)-1.0;//calculation of acentric factor using Eq.(3.62)
////OUTPUT
mprintf('\n The acentric factor of water= %f \n',w);
//===============================================END OF PROGRAM===================================================
|
572c28ca699e63b5953fb549a94d70a86cabd9d8 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/rooteig/rooteig2.sce | 5c4eb0eb1e4f5ec5467fc249083db083ecd2fb22 | [] | 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 | 394 | sce | rooteig2.sce | //i/p args are x,p and sampling frequency fs
clc;
clear;
exec('/home/debdeep/Desktop/TEST NOW!!/rooteig/rooteig.sci');
x=[1 2 3 4 6 7 8 9];
p=3;
fs=4e6;
[f,pow] = rooteig(x,p,fs);
disp(f);
disp(pow);
//output
//
//!--error 10036
//rooteig: Wrong input argument #2 p(1); An even value expected for real input x
//at line 165 of function rooteig called by :
//[f,pow] = rooteig(x,p,fs);
|
cae78df284ce0be9b94b68b5bbda7fbdaf3d2a16 | 053ef56a0fe9ad96c7d6d36936188b5c6484a9d3 | /tests/fail_pla_fehler.tst | 0006bf2e210390a84018e03f428f100359cea271 | [] | no_license | beardeddragon5/PLA18 | f85fc8f3eccd992d0192990e5e061f9eef2c581e | fdbb2cc83510fb099963358add82385773718ec3 | refs/heads/master | 2021-04-15T09:08:47.041535 | 2018-10-03T11:00:29 | 2018-10-03T11:00:29 | 126,306,110 | 0 | 2 | null | 2018-10-03T11:00:30 | 2018-03-22T08:48:06 | C++ | UTF-8 | Scilab | false | false | 212 | tst | fail_pla_fehler.tst | const c = 6;
var n: int,f: real;
procedure test;
var i : int;
begin
f := 1.0;
i :=2;
while i <=n do
begin
f := f+i;
i := i+1;
end
end;
begin
n := c;
call test
end$
|
5e54ddd81384a4ed4d178b370c6ce7a745f7d829 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1067/CH20/EX20.21/20_21.sce | ee76fef74ce99020b5dcff72e8d141755b60aefc | [] | 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 | 718 | sce | 20_21.sce | clear;
clc;
xst=20;
xtr=28;
xs=250;
xt=15;
v1=25e3;
r1=500e6/.8;
v2=220e3;
rb=600e6;
vb=25e3;
xf=rb/r1;
xst=xst*xf/100;
xtr=xtr*xf/100;
xs=xs*xf/100;
xt=xt/100;
xeqs=inv(inv(xst)+inv(xt));
xeqt=inv(inv(xtr)+inv(xt));
xeg=inv(inv(xs)+inv(xt));
e=1;
xeqs=round(xeqs*1000)/1e3;
is=e/xeqs;
is=round(is);
it=e/xeqt;
ig=e/xeg;
i1=is*xt/(xt+xst);
i2=is*xst/(xst+xt);
ib=rb/(1.726*22.2*1e3);
Is=is*ib;
i1=round(i1*10)/10;
Is=round(Is/1e3)*1e3;
i2=fix(i2*100)/0100;
I1=i1*ib;
I2=i2*ib;
I1=fix(I1/1e2)*1e2;
I2=fix(I2/1e2)*1e2;
mprintf("total subtransient current T-off=%fkA\nsubtransient current on generator side=%fkA\n subtransient current on transformer side=%fkA",Is/1e3,I1/1e3,I2/1e3);
|
55880544f27d4f612df045d80d18de2ed2edc6f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3630/CH3/EX3.18/Ex3_18.sce | 0674e089ef06e1afcfce864c6a5c3affa090d6d2 | [] | 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 | 164 | sce | Ex3_18.sce | clc;
//Ex3.18
Vz=9.1; //volt
RL=10000; //ohm
IL=Vz/RL; //Ampere fromV=R*I
disp('micro Amperes',IL*1000000,"IL="); //The answers vary due to round off error
|
5d584d5db998f0e17e9c62ee2dbc59752741452b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2066/CH4/EX4.8/4_8.sce | 7319f38fee88f6dafc0173e9da6bfc6eebf750b8 | [] | 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 | 253 | sce | 4_8.sce | clc
clear
//Initialization of variables
x=12 //ft
angle=30 //degrees
g=32.2 //ft/s^2
z=-2 //ft
d=2 //in
//calculations
vj= x/cosd(angle) *sqrt(g/(2*(x*tand(angle) -z)))
Q=%pi/4 *(d/12)^2 *vj
//results
printf("Rate of flow = %.2f ft^3/s",Q)
|
e84f91577a7a092117cd76095bc4c53f4365841a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2102/CH6/EX6.16/exa_6_16.sce | a3d4af0b1cecb9f1f3b63797babc6f88f2097003 | [] | 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 | 435 | sce | exa_6_16.sce | // Exa 6.16
clc;
clear;
close;
// Given data
I_DSS= 10;// in mA
I_DSS= I_DSS*10^-3;// in A
V_P= -4;// in V
V_DD= 12;// in V
V_GG= 0;// in V
// Part (a) when
V_GS= -2;// in V
I_D= I_DSS*(1-V_GS/V_P)^2;// in A
disp(I_D*10^3,"When V_GS= -2 then, the value of I_D in mA ")
// Part (b) when
I_D= 9*10^-3;// in A
V_GS= V_P*(1-(sqrt(I_D/I_DSS)));// in V
disp(V_GS,"When I_D = 9 mA, then the value of V_GS in volts is : ")
|
c21e782ed6674156d14865d9262db8d83ac12ddd | 449d555969bfd7befe906877abab098c6e63a0e8 | /2321/CH12/EX12.9.3/EX12_9_3.sce | fb2f353386b9da7891ccddddfdc71aeedb148c38 | [] | 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 | 508 | sce | EX12_9_3.sce | //Example No. 12.9.3
clc;
clear;
close;
format('v',6);
D=6;//meter(Diameter)
f=10;//GHz(Frequency)
c=3*10^8;//m/s////speed of light
lambda=c/(f*10^9);//m(Wavelength)
GP=6*(D/lambda)^2;//unitless(Power gain)
GP_dB=10*log10(GP);//dB(Power gain)
disp(GP_dB,"Gain in dB : ");
FNBW=140*lambda/D;//degree(FNBW)
disp(FNBW,"FNBW in degree : ");
HPBW=58*lambda/D;//degree(HPBW)
disp(HPBW,"HPBW in degree : ");
K=0.65;//constant
Ao=K*%pi/4*D^2;//m²(Capture area)
disp(Ao,"Capture area in m² : ");
|
84485f69ade5d776274d5f22ca7d6d3ce54d980e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2489/CH7/EX7.9/7_9.sce | c2ad91dd5f161f82470101d6e6f356c1eef139e3 | [] | 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 | 238 | sce | 7_9.sce | clc
//Intitalisation of variables
clear
a= -9.92
b= -2.3*10^-3
c= 10.2*10^-6
T= 25 //C
dH= -22100 //cal
//CALCULATIONS
dH1= dH-(a*(273+T)+b*0.5*(273+T)^2+c*0.33*(273+T)^3)
//RESULTS
printf ('Heat of reaction = %.f cal',dH1+1)
|
2b01b62ab582571ba81a0f0cb7cc3eb91a29f314 | 036a77bd5f07b7b2b808ef3d90e92d20bd7b6c33 | /hard/tests/functionNegation.tst | bce9d5c8060912b69cba84fd52f11964d7f19d63 | [] | no_license | Jaymee-Ericca-7/simple-compiler | 186b11486e5af8debdde301acba84851c4545b02 | 209a8ed43c579a9ce34c63a10083cdbde5546313 | refs/heads/master | 2020-09-18T06:19:53.304100 | 2015-08-11T13:44:06 | 2015-08-11T13:44:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 115 | tst | functionNegation.tst | int complement(int number) begin
return 0 - number;
end
main begin
print(complement(4));
return 0 - 4;
end
|
032c54108711d754a417cfb517a0a0982072288a | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.2/Unix/scilab-2.2/macros/scicos/genfunc.sci | a221e6dfb43cdf0a3d8a695cdec0e1efe8394840 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] | 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 | 940 | sci | genfunc.sci | function [ok,mac,txt]=genfunc(txt)
[lhs,rhs]=argn(0)
if rhs<1 then txt=' ',end
mac=[]
while %t do
txt=x_dialog(['Set Function Block';
' '
'Enter Scilab instructions defining'
'y as a function of u'],txt)
if txt==[] then ok=%f,return,end
// check if txt defines y from u
deff('[]=mac()',txt)
vars=macrovar(mac)
if or(vars(3)=='u')&or(vars(5)=='y') then break,end
end
ok=%t
deff('[%_1,%_2]=mac(%_model,%_x,%_z,u,%_clock,%_flag,%_rpar,%_ipar)',..
['%_1=[];%_2=[];';
'select %_flag';
'case 1 then';
txt
'%_1=y';
'case -1 then ';
' %_model=list(%_model(1),1,1,0,0,[],[],[],[],''c'',%f,[%t %f])';
' %_1=list(%_model,'' '')';
'case -2 then ';
' txt=%_model(9)';
' [ok,mac,txt]=genfunc(txt)';
' if ok then '
' %_model(1)=mac'
' %_model(9)=txt'
' %_1=list(model,%_x)'
' end'
'end'])
comp(mac)
|
ea646e19cb9d7e12ec8fd81b039e34e95eab698a | 449d555969bfd7befe906877abab098c6e63a0e8 | /215/CH16/EX16.6/ex16_6.sce | 26c1153ec80dafc27122754d8db3e3ac67328bfd | [] | 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 | 690 | sce | ex16_6.sce | clc
//Example 16.6
disp('Given')
disp('Km=20 Kf=50')
Km=20; Kf=50;
s=poly(0,'s')
//From figure 16.20(a)
C=0.05; L=0.5;
//Performing magnitude as well as frequency scaling simultaneously
Cscaled =C/(Km*Kf)
Lscaled = L*Km/Kf
printf("Scaled values are \n")
printf("Cscaled =%d uF \t Lscaled =%d mH \n",Cscaled*10^6,Lscaled*10^3)
//Converting the Laplace transform of the circuit
//From figure 16.20(c)
disp('Vin=V1+0.5s*(1-0.2*V1)')
disp('V1=20/s')
//On substituting V1 in equation of Vin
Zin=(s^2-4*s+40)/(2*s)
disp(Zin,'Zin=')
//Now we need to scale Zin
//We will multiply Zin by Km and replace s by s/Kf
Zinscaled=horner(Km*Zin,s/Kf)
disp(Zinscaled,'Zinscaled')
|
97f74496a7253ebff2e44a226763f730e6a47793 | 449d555969bfd7befe906877abab098c6e63a0e8 | /74/CH3/EX3.5/example5_sce.sce | db6e8b16be01657a3d79fbe5671984819539ad63 | [] | 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 | example5_sce.sce | //chapter 3
//example 3.5
//page 120,
A=2*10^5;//open loop gain
R1=1000;Rf=10000;
Ri=2*10^6;//input resistance
Ro=75;//output resistance
Fo=5;// single break frequency in Hz
B=R1/(R1+Rf)
Af=A/(1+A*B);//gain
disp(Af)// closed loop gain
Rif=Ri*(1+A*B);// closed loop input resistance
disp(Rif)
Rof=Ro/(1+A*B);
disp(Rof)// colsed loop output resistance
Fof=Fo*(1+A*B);
disp(Fof)// colsed loop bandwidth in Hz |
a9ce7564d0bd57a1928bf2d9823319da0698a155 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2198/CH2/EX2.12.4/Ex2_12_4.sce | f560adb018b096f9642fe5c0b145bec0e875b828 | [] | 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 | 297 | sce | Ex2_12_4.sce | //Ex 2.12.4
clc;clear;close;
format('v',8);
//Given :
W=2*10^-4*10^-2;//m
A=1*10^-6;//m^2
epsilon_r=16;//for Ge
epsilon_o=8.854*10^-12;//permitivity
q=1.6*10^-19;//Coulomb
CT=epsilon_r*epsilon_o*A/W;//
disp(CT*10^12,"Barrier capacitance(pF) : ");
//Answer is wrong in the textbook.
|
3fdabc6707866cb5a3096f5f5692cf0bd58395c9 | 5a05d7e1b331922620afe242e4393f426335f2e3 | /macros/cheby2.sci | d22ef866f18fbc6d0a4e1c0bea966ef1ea57ee1f | [] | no_license | sauravdekhtawala/FOSSEE-Signal-Processing-Toolbox | 2728cf855f58886c7c4a9317cc00784ba8cd8a5b | 91f8045f58b6b96dbaaf2d4400586660b92d461c | refs/heads/master | 2022-04-19T17:33:22.731810 | 2020-04-22T12:17:41 | 2020-04-22T12:17:41 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,467 | sci | cheby2.sci | // Copyright (C) 2018 - IIT Bombay - FOSSEE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
// Original Source : https://octave.sourceforge.io/signal/
// Modifieded by:Sonu Sharma, RGIT Mumbai
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
function [a, b, c, d] = cheby2 (n, rs, w, varargin)
//Chebyshev type II filter design with rs dB of stopband attenuation.
//Calling Sequence
//[b, a] = cheby2 (n, rs, ws)
//[b, a] = cheby2 (n, rs, ws, "high")
//[b, a] = cheby2 (n, rs, [wl, wh])
//[b, a] = cheby2 (n, rs, [wl, wh], "stop")
//[z, p, g] = cheby2 (…)
//[…] = cheby2 (…, "s")
//Parameters
//n: positive integer value (order of filter)
//rs: non negative scalar value (stopband attenuation in dB)
//ws: positive real value,
// 1).Normalised digital stopband edge(s) for digital filter, in the range [0, 1] {dimensionless}
// 2).Analog stopband edge(s) for analog filter, in the range [0, Inf] {rad/sec}
//Description
//This function generates a Chebyshev type II filter with rs dB of stopband attenuation.
//The fourth parameter takes in high or low, default value is low. The cutoff is pi*Wc radians.
//[b, a] = cheby2(n, Rp, [Wl, Wh]) indicates a band pass filter with edges pi*Wl and pi*Wh radians.
//[b, a] = cheby2(n, Rp, [Wl, Wh], ’stop’) indicates a band reject filter with edges pi*Wl and pi*Wh radians.
//[z, p, g] = cheby2(...) returns filter as zero-pole-gain rather than coefficients of the numerator and denominator polynomials.
//[...] = cheby2(...,’s’) returns a Laplace space filter, w can be larger than 1.
//Examples
//[z, p, g]=cheby2(2,5,0.7,"high")
//Output:
// g =
//
// 0.4752770
// p =
//
// - 0.3938806 + 0.5313815i - 0.3938806 - 0.5313815i
// z =
//
// - 0.3164543 - 0.9486078i - 0.3164543 + 0.9486078i
funcprot(0);
[nargout nargin] = argn();
if (nargin > 5 | nargin < 3 | nargout > 4 | nargout < 2)
error("cheby2: invalid number of inputs");
end
// interpret the input parameters
if (~ (isscalar (n) & (n == fix (n)) & (n > 0)))
error ("cheby2: filter order N must be a positive integer");
end
stop = %F;
digital = %T;
for i = 1:length(varargin)
select (varargin(i))
case "s"
digital = %F;
case "z"
digital = %T;
case "high"
stop = %T;
case "stop"
stop = %T;
case "low"
stop = %T;
case "pass"
stop = %F;
else
error ("cheby2: expected [high|stop] or [s|z]");
end
end
[rows_w columns_w] = size(w);
if (~ ((length (w) <= 2) & (rows_w == 1 | columns_w == 1)))
error ("cheby2: frequency must be given as WS or [WL, WH]");
elseif ((length (w) == 2) & (w(2) <= w(1)))
error ("cheby2: W(1) must be less than W(2)");
end
if (digital & ~ and ((w >= 0) & (w <= 1)))
error ("cheby2: all elements of W must be in the range [0,1]");
elseif (~ digital & ~ and (w >= 0))
error ("cheby2: all elements of W must be in the range [0,inf]");
end
if (~ (isscalar (rs) & or(type(rs) == [1 5 8]) & (rs >= 0)))
error ("cheby2: stopband attenuation RS must be a non-negative scalar");
end
// Prewarp to the band edges to s plane
if (digital)
T = 2; // sampling frequency of 2 Hz
w = 2 / T * tan (%pi * w / T);
end
// Generate splane poles and zeros for the Chebyshev type 2 filter
// From: Stearns, SD; David, RA; (1988). Signal Processing Algorithms.
// New Jersey: Prentice-Hall.
C = 1; // default cutoff frequency
lambda = 10^(rs / 20);
phi = log (lambda + sqrt (lambda^2 - 1)) / n;
theta = %pi * ([1:n] - 0.5) / n;
alpha = -sinh (phi) * sin (theta);
beta = cosh (phi) * cos (theta);
if (modulo (n, 2))
// drop theta==pi/2 since it results in a zero at infinity
zero = 1*%i * C ./ cos (theta([1:(n - 1) / 2, (n + 3) / 2:n]));
else
zero = 1*%i * C ./ cos (theta);
end
pole = C ./ (alpha.^2 + beta.^2) .* (alpha - 1*%i * beta);
// Compensate for amplitude at s=0
// Because of the vagaries of floating point computations, the
// prod(pole)/prod(zero) sometimes comes out as negative and
// with a small imaginary component even though analytically
// the gain will always be positive, hence the abs(real(...))
gain = abs (real (prod (pole) / prod (zero)));
// splane frequency transform
[zero, pole, gain] = sftrans (zero, pole, gain, w, stop);
// Use bilinear transform to convert poles to the z plane
if (digital)
[zero, pole, gain] = bilinear (zero, pole, gain, T);
end
// convert to the correct output form
if (nargout == 2)
[a b] = zp2tf(zero, pole, gain);
elseif (nargout == 3)
a = zero;
b = pole;
c = gain;
else
// output ss results
//[a, b, c, d] = zp2ss (zero, pole, gain);
error("cheby2: yet not implemented in state-space form OR invalid number of o/p arguments")
end
endfunction
|
b54e8db8872d3225da4f0977493b19099c97f51b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1991/CH6/EX6.12/12.sce | 9f1b9d35b8d35db2b12d11dd1df21fb86afaf7f8 | [] | 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 | 12.sce | clc
clear
//input
r100=6.9//resistence of steam
r0=5.8 //resistece of ice
t=550 //temperature
//calculation
r=(t*(r100-r0))/100 +5.8//platinum resistance thermometre
//output
printf("the resistence is %3.3f ohm",r)
|
0856b7ed6ce001db1bdc21e8ecd2e06487e4c91a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3731/CH6/EX6.6/Ex6_6.sce | 9e1487acd6d5436771a479dbc9ad361b0a9aeccf | [] | 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,464 | sce | Ex6_6.sce |
//Chapter 6:Induction Motor Drives
//Example 6
clc;
//Variable Initialization
//Ratings of the star connected Induction motor which operates under dynamic braking
f=50 // frequency in HZ
P=6 // number of poles
//Parameters referred to the stator
Xr_=3.01 // rotor winding reactance in ohm
Xs=Xr_ // stator winding reactance in ohm
Rr_=4.575 // resistance of the rotor windings in ohm
Rs=1.9 // resistance of the stator windings in ohm
J=0.1 // moment of inertia of the motor load system in kg-m2
Id=12 // given DC current
N=1500 //given asynchronous speed
//magnetization chacrateristic at the given asynchronous speed
Im=[0.13,0.37,0.6,0.9,1.2,1.7,2.24,2.9,3.9,4.9,6,8,9,9.5] //magnetization current
E=[12.8,32,53.8,80,106,142,173,200,227,246,260,280,288,292] //back emf
//Solution
Ns=120*f/P //synchronous speed in rpm
torque=[]
speed=[]
temp=[]
Is=sqrt(2/3)*Id //value of stator current for two lead connection
Wms=2*%pi*N/60
for i=2:14
x=(Is**2-Im(i)**2)/(1+2*Xr_*Im(i)/E(i)) //x=Ir_**2
Ir_=sqrt(x) //required rotor current
y=(E(i)/Ir_)**2-Xr_**2
S=Rr_/sqrt(y) //required slip
N=S*Ns //required speed
T=(3/Wms)*(Ir_)**2*Rr_/S //required torque
speed($+1)=N
torque($+1)=T
temp($+1)=T
end
mprintf("Hence the magnetization curve is")
disp(speed,"Speed:in rpm")
for i=1:13
torque(i)=-1*torque(i)
end
disp(torque,"Braking torque :in N-m")
//Results
//Plot of of torque vs speed
subplot(2,1,1)
plot(torque,speed)
xlabel('Torque, N-m')
ylabel('Speed, rpm')
title('Torque vs Speed')
xgrid(2)
//Plot of Wm vs J/T
inertia_over_torque=[]
for i=3:13
J_T=1000*J/temp(i)
inertia_over_torque($+1)=J_T
end
disp(inertia_over_torque,"J/t :")
Wm=[1,4,8,12,16,20,25,55,95,125,160]
//the values of Wm are taken for the angular frequency with maximum value of Wms=50*pi rad/s
subplot(2,1,2)
plot(Wm,inertia_over_torque)
xlabel('$Angular speed \omega_m$')
ylabel(' J/T,1*10e-2')
title('$J/T vs \omega_m$')
xgrid(2)
x=[6.5,6.5]
y=[2,4.5]
plot(x,y,'blue')
str=["${A}$"]
str1=["${B}$"]
str2=["${C}$"]
str3=["${D}$"]
str4=["${E}$"]
xstring(6,2,str)
xstring(6,4.5,str1)
xstring(80,3.4,str2)
xstring(156,8.3,str3)
xstring(156,2,str4)
mprintf("Hence from the plot the area ABCDEA between the curve and the speed axis for speed change ")
mprintf("for synchronous to 0.02 times synchrnous speed is the stopping time which is equal to: 9.36 sec")
|
35062adb9b32d7716d509688115f0dd31d3587f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1388/CH7/EX7.29/7_29.sce | 586cb14abc89d6501d9c8ee19850f08df705878b | [] | 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 | 171 | sce | 7_29.sce | clc
//initialisation of variables
c= 10^-7
c1= 1
f= 1
k= -0.05915 //j/mol
//CALCULATIONS
E= (k/f)*log10(c/c1)
//RESULTS
printf (' cell potential = %.5f volt',E)
|
dd825533a7204ac121e0acaad64894125a0155be | 96a1ace8300f2a05933a29c2190c2591ebeafedf | /mondat_tstfile.tst | db80a8b00460155878753ab2c22139ff2f14111c | [] | no_license | nirml08/pilot | e15a99873a155e96843a1410a18959988dccaa6f | 303b4997f2d63a28c178e9f9937e96f1ee78af72 | refs/heads/master | 2020-05-31T22:54:18.151041 | 2019-09-17T07:34:39 | 2019-09-17T07:34:39 | 190,528,935 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 20 | tst | mondat_tstfile.tst | its 10:57 currently
|
82c2384d76fc5696e54b06bc15d7486cd14fc0de | fa11034f9ded2f7e35e68c4c578ab24bee926f36 | /MT/MT/test.tst | 9d93ad5b46f71dcdf388f5957d213b8277cbb046 | [] | no_license | padzikm/MT | aa3ee2ff442c6df474e5d9feb5abf8c9c949f83d | 015ab559b610d982b5c48cbca07889428058fe9d | refs/heads/master | 2021-01-16T21:18:38.679336 | 2014-11-30T23:43:53 | 2014-11-30T23:43:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 431 | tst | test.tst | real a
real b
real c
real d
a=2
b=-3
c=-2
d=sqrt(b*b-4*a*c)
print (-b+d)/(2*a)
print (-b-d)/(2*a)
print Pi/4
bool aa
aa=false
int i
i=5
real x
x=7.5
bool bb
bb = i<=x
print aa
print bb
print aa==bb
int y
y=0
bb= i>10*x && aa==(x/y>-2)
print !bb
print 0090
exit
--------------
Prawidlowe wyniki
Result: 2r
Result: -0.5r
Result: 0.785398163397448r
Result: false
Result: true
Result: false
Result: true
Result: 90i
|
0198f543b4f195c166043120694b7b356d997833 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3651/CH8/EX8.13/13.sce | a9b29defd598214cef41cc8d77f430ec04a36212 | [] | 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 | 300 | sce | 13.sce | //variable declaration
alpha=1.85
lamda=1.3*10**-6
a=25*10**-6
N_a=0.21
//Calculations
V_n=((2*%pi**2)*a**2*N_a**2)/lamda**2
N_m=(alpha/(alpha+2))*V_n
printf('No.of modes =%0.3f =155(approx)\n',(N_m))
printf('Taking the two possible polarizations, Total No.of nodes =%0.3f \n',(N_m*2))
|
007c4bba8ef777f643339c07e0fa0217ffd5034b | 123d86dc4ecc28fc2102a1ee5e719dd09fe6cc49 | /ftvguide/orbitdate.tst | 22adb4fbb2b5e5fd15b40db78a133e786b187a39 | [
"MIT",
"BSD-3-Clause-Clear"
] | permissive | trjaffe/tvguide | a153adef6f93a0740423958999e3f6c81916c269 | a7916cde611d5e5f1d287da3940fb0296dc32552 | refs/heads/master | 2021-06-02T15:03:47.647269 | 2020-01-31T15:46:17 | 2020-01-31T15:46:17 | 96,552,785 | 0 | 0 | null | 2017-07-07T15:39:38 | 2017-07-07T15:39:38 | null | UTF-8 | Scilab | false | false | 1,234 | tst | orbitdate.tst | 1 2018-Jun-26T15:50
2 2018-Jul-25T04:10
3 2018-Aug-22T23:10
4 2018-Sep-20T12:10
5 2018-Oct-18T13:30
6 2018-Nov-15T00:50
7 2018-Dec-11T22:00
8 2019-Jan-07T08:10
9 2019-Feb-02T10:20
10 2019-Feb-28T08:30
11 2019-Mar-26T13:50
12 2019-Apr-22T19:00
13 2019-May-21T04:50
-- 2019-Jun-19T04:30
If we go into science one orbit late:
1 2018-Jul-10T23:20
2 2018-Aug-08T15:30
3 2018-Sep-06T05:50
4 2018-Oct-04T11:20
5 2018-Nov-01T05:20
6 2018-Nov-28T10:10
7 2018-Dec-25T02:20
8 2019-Jan-20T09:30
9 2019-Feb-15T10:00
10 2019-Mar-13T10:20
11 2019-Apr-09T02:40
12 2019-May-06T23:50
13 2019-Jun-04T16:50
-- 2019-Jul-03T13:50
The times when we point anti-solar for nominal science start:
1 2018-07-10T22:00
2 2018-08-08T13:40
3 2018-09-06T05:40
4 2018-10-04T12:50
5 2018-11-01T07:10
6 2018-11-28T11:25
7 2018-12-25T03:05
8 2019-01-20T09:15
9 2019-02-15T09:25
10 2019-03-13T11:10
11 2019-04-09T04:25
12 2019-05-06T23:55
13 2019-06-04T16:40
And for a later start:
1 2018-07-25T07:25
2 2018-08-22T22:40
3 2018-09-20T08:35
4 2018-10-18T08:20
5 2018-11-14T19:45
6 2018-12-11T18:15
7 2019-01-07T05:55
8 2019-02-02T09:45
9 2019-02-28T10:10
10 2019-03-26T18:30
11 2019-04-23T01:15
12 2019-05-21T08:20
13 2019-06-19T03:20
|
b4f490702b2d6481d5c65d48392852fdaf392fc6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH34/EX33.6/EX33_6.sce | dda7f3b3e284e1e38fdd2d58335a2a6599be3a0d | [] | 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 | 581 | sce | EX33_6.sce | // Grob's Basic Electronics 11e
// Chapter No. 33
// Example No. 33_6
clc;clear;
// calculate Zin and Zout(CL). Assume AVOL is 100,000 and Zout(OL) is 75 Ohms.
// Given data
Avol = 100000; // Open loop voltage gain=100,000
Rf = 10*10^3; // Feedback resistance=10 kOhms
Ri = 1*10^3; // Input resistance=1 kOhms
Zool = 75; // Output impedence (open-loop)=75 Ohms
Zi = Ri;
disp (Zi,'The Input Impedence in Ohms')
disp ('i.e 1 kOhms')
Beta = Ri/(Ri+Rf);
A = Avol*Beta;
Zocl = Zool/(1+A);
disp (Zocl,'The Closed Loop Output Impedence in Ohms')
|
84a344efbea5f6ebb842dd5ea7069a0dca4b0305 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1967/CH14/EX14.1/14_1.sce | f134b61c75e4976f54d63ac8f1c5840a8d233abf | [] | 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 | 347 | sce | 14_1.sce | clc
//initialisation of variables
clear
M2= 92 //gms
M1= 78 //gms
pb= 118.2 //mm
pt= 36.7 //mm
//CALCULATIONS
n1= M2/(M1+M2)
n2= 1-n1
p1= n1*pb
p2= n2*pt
w= p1*M1/(p2*M2)
//RESULTS
printf ('partial pressure of benzene = %.f mm',p1)
printf ('\n partial pressure of toulene = %.1f mm',p2)
printf ('\n weight proportions = %.2f ',w)
|
2325cc4f77ac69e80fb6d70edd8de971a149e4a3 | 65ad6164ce52c715cc25368790f2f259ec57f6b3 | /nuvem_particulas.sce | 4378a08f89914b767b19d1621cf441dc3e98db8f | [] | no_license | carlaecomp/otimizacao_w3 | 4493d7d6b3e47cc4bc898b9c8c49582ca63151db | 319e43e29c26b1ab6fa7f76c510d001873c1fbd1 | refs/heads/master | 2020-03-22T06:36:50.541135 | 2018-07-05T12:53:21 | 2018-07-05T12:53:21 | 139,646,198 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,727 | sce | nuvem_particulas.sce | function np=np(it, m, c1, c2)
rand("normal")
tic()
x = modulo((rand(1,m)*10^4),500)
y = modulo((rand(1,m)*10^4),500)
px = modulo((rand(1,m)*10^4),500)
py = modulo((rand(1,m)*10^4),500)
gx = modulo((rand(1,m)*10^4),500)
gy = modulo((rand(1,m)*10^4),500)
vx = modulo((rand(1,m)*10^4),500)
vy = modulo((rand(1,m)*10^4),500)
w = 0.5;
for k=1:it
for i=1:m
if w3(x(i), y(i)) < w3(px(i), py(i))
px(i) = x(i)
py(i) = y(i)
if w3(x(i), y(i)) < w3(gx(i), gy(i))
gx(i) = x(i)
gy(i) = y(i)
end
end
np(i,:) = w3(gx(i), gy(i))
for j=1:m
r1 = rand()
r2 = rand()
vx(j) = w*vx(j) + c1*r1*(px(j)-x(j)) + c2*r2*(gx(j) -x(j))
vy(j) = w*vy(j) + c1*r1*(py(j)-y(j)) + c2*r2*(gy(j) -y(j))
end
x(i+1) = x(i)+vx(i)
y(i+1) = y(i)+vy(i)
if (x(i+1) > 500)
x(i+1) = 500
vx(i) = 0
end
if (y(i+1) > 500)
y(i+1) = 500
vy(i) = 0
end
end
end
figure
plot(np)
disp(toc())
endfunction
function w3=w3(x,y)
z=-x.*sin(sqrt(abs(x)))-y.*sin(sqrt(abs(y)));
x =x/250;
y =y/250;
r=100*(y-x.^2).^2+(1-x).^2;
w3 = r-z;
endfunction
function plotFunction()
[x,y]=meshgrid(-500:5:500,-500:5:500);
z=-x.*sin(sqrt(abs(x)))-y.*sin(sqrt(abs(y)));
x=x/250;
y=y/250;
r=100*(y-x.^2).^2+(1-x).^2;
w3 = r-z;
figure
surf(x*250, y*250,w3)
endfunction
|
f18a36ed93037e19a3d483873fc598850c403479 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3840/CH8/EX8.18/Ex8_18.sce | 71888bbc881e0244f5b019e4e1ded9039045b035 | [] | 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 | 329 | sce | Ex8_18.sce | clear
//
//
//
//Variable declaration
Vrms=200 //voltage(V)
RL=1000 //load resistance(ohm)
//Calculation
Im=Vrms*sqrt(2)/RL //peak current(A)
Idc=2*Im/%pi //average DC current(A)
Vdc=int(Idc*RL) //dc voltage(V)
x=(Vrms/Vdc)**2
gama=sqrt(x-1)*Vdc //ripple factor(V)
//Result
|
098f0315c7cc105eab3f172703c9e7e7204cd106 | f2635c3a10a2508720f5d231581bbcf58664cf12 | /pl/math/test/testcases/directed/acoshf.tst | 606c615f9b74a77887e84d69f88f67dfbca07326 | [
"LLVM-exception",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | xboxfanj/optimized-routines | 9ed0fef9346076e3eaf952cecd9b6c39cca8d92b | e312306d13daf9c044145ca26fb34ef7704fae81 | refs/heads/master | 2023-01-21T08:14:26.298438 | 2022-12-21T00:02:54 | 2023-01-10T16:39:37 | 232,194,104 | 0 | 0 | MIT | 2020-01-06T22:07:31 | 2020-01-06T22:07:30 | null | UTF-8 | Scilab | false | false | 913 | tst | acoshf.tst | ; acoshf.tst
;
; Copyright (c) 2009-2023, Arm Limited.
; SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
func=acoshf op1=7fc00001 result=7fc00001 errno=0
func=acoshf op1=ffc00001 result=7fc00001 errno=0
func=acoshf op1=7f800001 result=7fc00001 errno=0 status=i
func=acoshf op1=ff800001 result=7fc00001 errno=0 status=i
func=acoshf op1=7f800000 result=7f800000 errno=0
func=acoshf op1=3f800000 result=00000000 errno=0
func=acoshf op1=3f7fffff result=7fc00001 errno=EDOM status=i
func=acoshf op1=00000000 result=7fc00001 errno=EDOM status=i
func=acoshf op1=80000000 result=7fc00001 errno=EDOM status=i
func=acoshf op1=bf7fffff result=7fc00001 errno=EDOM status=i
func=acoshf op1=bf800000 result=7fc00001 errno=EDOM status=i
func=acoshf op1=bf800001 result=7fc00001 errno=EDOM status=i
func=acoshf op1=ff800000 result=7fc00001 errno=EDOM status=i
func=acoshf op1=7f767efe result=42b2c19d.83e error=0
|
0d4d3ba50c1b710f3ec4d8f615ef7d62afc8dd02 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2966/CH1/EX1.68/1_68.sce | d9c9ba97eda7379c8c2d2071676de2fda3a2bc39 | [] | 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 | 696 | sce | 1_68.sce | //water//
//page 1.89 example 1//
clc
W1=19;//MgCl2 in water in mg/L//
W2=5;//CaCO3 in water in mg/L//
W3=29.5;//Ca(HCO3)2 in water in mg/L//
W4=13;//CaSO4 in water in mg/L//
M1=100/95;//multiplication factor of MgCl2//
M2=100/100;//multiplication factor of CaCO3//
M3=100/162;//multiplication factor of Ca(HCO3)2//
M4=100/136;//multiplication factor of CaSO4//
P1=W1*M1;//MgCl2 in terms of CaCO3//
P2=W2*M2;//CaCO3 in terms of CaCO3//
P3=W3*M3;//Ca(HCO3)2 in terms of CaCO3//
P4=W4*M4;//CaSO4 in terms of CaCO3//
T=P2+P3;
printf("\nTemporary hardness is %.2f ppm",T);
P=P1+P4;
printf("\nPermanant hardness is %.2f ppm",P);
To=T+P;
printf("\nTotal hardness is %.2f ppm",To); |
1e7a1659a1250c46ac46e931c32b38a3ed07d8d2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH2/EX2.1/2_1.sce | ec4a758c84e6acd09d2e649b470d71e24f4d7a35 | [] | 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 | 181 | sce | 2_1.sce | clear
clc;
dia=1.213;
dist=1.25*100;
f=50;
rad=dia/2;
effrad=.7788*rad;
L=4d-7 * log (dist/effrad)*1d3;
X=2*%pi*f*L;
mprintf("L=%.2f *1e-4 H/km, X=%.1f ohm/km",L*1e4, X);
|
76ef9a9b199f76d2508831542dc12d7a73d06506 | be79bec46a532a2d059c03f59f67a1f501c2e371 | /test/testcases/directed/exp2.tst | 7f26a6ceea89a7677f8f93243737eb16de374123 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | sycomix/optimized-routines | 5987a6a4cab10c469cc147d1d8e667fd4d8ae94a | e875f40f0b2ad71c5381a431e6d71829770c7ab7 | refs/heads/master | 2020-03-30T22:15:08.212539 | 2018-09-18T09:36:04 | 2018-09-18T09:36:04 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,386 | tst | exp2.tst | ; Directed test cases for exp2
;
; Copyright (c) 2018, Arm Limited.
; SPDX-License-Identifier: Apache-2.0
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS,
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
; See the License for the specific language governing permissions and
; limitations under the License.
func=exp2 op1=7ff80000.00000001 result=7ff80000.00000001 errno=0
func=exp2 op1=fff80000.00000001 result=7ff80000.00000001 errno=0
func=exp2 op1=7ff00000.00000001 result=7ff80000.00000001 errno=0 status=i
func=exp2 op1=fff00000.00000001 result=7ff80000.00000001 errno=0 status=i
func=exp2 op1=7ff00000.00000000 result=7ff00000.00000000 errno=0
func=exp2 op1=fff00000.00000000 result=00000000.00000000 errno=0
func=exp2 op1=7fefffff.ffffffff result=7ff00000.00000000 errno=ERANGE status=ox
func=exp2 op1=ffefffff.ffffffff result=00000000.00000000 errno=ERANGE status=ux
func=exp2 op1=00000000.00000000 result=3ff00000.00000000 errno=0
func=exp2 op1=80000000.00000000 result=3ff00000.00000000 errno=0
func=exp2 op1=00000000.00000001 result=3ff00000.00000000 errno=0
func=exp2 op1=80000000.00000001 result=3ff00000.00000000 errno=0
func=exp2 op1=3ca00000.00000000 result=3ff00000.00000000.58c errno=0
func=exp2 op1=bc900000.00000000 result=3fefffff.ffffffff.a74 errno=0
func=exp2 op1=3fe00000.00000000 result=3ff6a09e.667f3bcc.909 errno=0
func=exp2 op1=bfe00000.00000000 result=3fe6a09e.667f3bcc.909 errno=0
func=exp2 op1=3ff00000.00000000 result=40000000.00000000 errno=0
func=exp2 op1=bff00000.00000000 result=3fe00000.00000000 errno=0
func=exp2 op1=40000000.00000000 result=40100000.00000000 errno=0
func=exp2 op1=c0000000.00000000 result=3fd00000.00000000 errno=0
func=exp2 op1=3ff12345.6789abcd result=4000cef3.c5d12321.663 errno=0
func=exp2 op1=408fffff.ffffffff result=7fefffff.fffffd3a.37a errno=0
func=exp2 op1=40900000.00000000 result=7ff00000.00000000 errno=ERANGE status=ox
func=exp2 op1=c090ca00.00000000 result=00000000.00000000.b50 status=ux
func=exp2 op1=c090cc00.00000000 result=00000000.00000000 errno=ERANGE status=ux
|
3d68227e41fb5d51ed327580500f2dcfa47d4295 | 1573c4954e822b3538692bce853eb35e55f1bb3b | /DSP Functions/allpasslp2bs/test_10.sce | a2d2e8d1b9195f84de65133b38925e19c7f17d5c | [] | 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 | 332 | sce | test_10.sce | // Test #10 : Valid input test case #2
exec('./allpasslp2bs.sci',-1);
[n,d]=allpasslp2bs(0.23,[0.2,0.67]);
disp(d);
disp(n);
//
//Scilab Output
//d=1. -0.4080468 0.4882792
//n=0.4882792 - 0.4080468 1.
//Matlab Output
//n= 0.4883 -0.4080 1.0000
//d= 1.0000 -0.4080 0.4883
|
44cfd4bd402bcd149a1fa88428007b49255a7c42 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH21/EX21.7/21_07.sce | 9c0329ee7a963bee736beddfa0b5bf93e9e54616 | [] | 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 | 563 | sce | 21_07.sce | //Chapter 21, Problem 7
clc;
v1=2400; //primary voltage
v2=400; //secondary voltage
i0=0.5; //no load current
Pl=400; //power
phi=acos(v2/(v1*i0)); //phase
im=i0*sin(phi); //magnetising component
ic=i0*cos(phi); //core loss component
printf("Magnetising loss component = %.3f A\n\n",im);
printf("Core loss component = %.3f A",ic);
|
a18c60c535bc99eb83a6687630ea863d93d075dd | 37aadc591f529c3f4f488f15976004ee30f32252 | /inherit/loader.sce | c7e523c4ad8beb1be41dc37dd51112e235653b0f | [] | no_license | aakash30jan/swig | 1299c65d44839ac591f94cf11b153f0ea21e5ce8 | 6eadfc970b94d77df8f9cbc923ec3c76ff1803c7 | refs/heads/master | 2021-04-09T15:27:04.659636 | 2017-06-02T15:43:21 | 2017-06-02T15:43:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,439 | sce | loader.sce | // This file is released under the 3-clause BSD license. See COPYING-BSD.
// Generated by builder.sce : Please, do not edit this file
// ----------------------------------------------------------------------------
//
libinherit_path = get_absolute_file_path('loader.sce');
//
// ulink previous function with same name
[bOK, ilib] = c_link('libinherit');
if bOK then
ulink(ilib);
end
//
list_functions = [ 'inherit_Init';
'SWIG_this';
'SWIG_ptr';
'Shape_x_set';
'Shape_x_get';
'Shape_y_set';
'Shape_y_get';
'Shape_set_location';
'Shape_get_perimeter';
'new_Shape';
'delete_Shape';
'Circle_radius_set';
'Circle_radius_get';
'new_Circle';
'Circle_get_perimeter';
'delete_Circle';
'Square_size_set';
'Square_size_get';
'new_Square';
'Square_get_perimeter';
'delete_Square';
];
addinter(libinherit_path + filesep() + 'libinherit' + getdynlibext(), 'libinherit', list_functions);
// remove temp. variables on stack
clear libinherit_path;
clear bOK;
clear ilib;
clear list_functions;
// ----------------------------------------------------------------------------
|
e2f69d8f167bdc3295c976bdcae3578aa8842ef9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3755/CH3/EX3.4/Ex3_4.sce | 8f5ebf42ef4ff4023acd5ad73aae8f53aed2b502 | [] | 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 | 335 | sce | Ex3_4.sce | clear
//
//
//
//Variable declaration
lamda=1.54; //wavelength(angstrom)
theta=11; //glancing angle(degree)
//Calculation
theta=theta*%pi/180; //angle(radian)
d=lamda/(2*sin(theta)); //separation between lattice planes(angstrom)
//Result
printf("\n separation between lattice planes is %0.3f angstrom",d)
|
ee7e064a4cba91c64b5142c5f25ebb5600f1a57e | fcc4645d4eee021a4cf8b2cee0922d812710573f | /frame/3D_pyramid.sce | f3d52f7cd2eea4a29f1d1d636d620e3a0ae46fc4 | [] | no_license | gviolato/nemo | 656a6db0481d9828bff307de24ee0b92045d653f | 44cf1554de9e1c4bc8450ae147bdec512599e0d9 | refs/heads/master | 2020-12-29T02:37:17.515209 | 2017-05-28T16:12:49 | 2017-05-28T16:12:49 | 43,207,682 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 745 | sce | 3D_pyramid.sce | //3D Pyramid Problem
//Nodes coordinates, each line is a node n located at x, y & z
coord = [ 0 0 0
18288 0 0
18288 18288 0
0 18288 0
9144 9144 18288
];
//Conectivity Matrix, each line is an element connecting nodes a & b
conec = [1 2
2 3
3 4
4 1
5 1
5 2
5 3
5 4
];
//Forces, applied to matching DOF
F(27)=-444822.16 ; //in this case F in y of node 5 (DOF 25)
//Restricted DOFs
glrest=[1; 2; 3;4;5;6;9; 15;21];
//Material properties & Geometry
po=0.35;
Am=[1000];
d=sqrt(4*Am/%pi) ;
Im=(%pi*d^4) / 64;
Em=68.95E3;
Gm=Em/(2*(1+po));
Jm=2*Im;
//If any properties change for each element, use matrix input
//Create Properties Matrix
[Prop]=Properties(Am,Em,Im,Gm,Jm,conec);
|
51e9c90d5d8ad10f2b5d541c183c0a02977e05d3 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4/macros/m2sci/%i2sci.sci | 60b05672f8c0172263bd2e65454ac6097baf7dd5 | [
"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 | 659 | sci | %i2sci.sci | function [stk,txt,top]=%i2sci()
//
//!
// Copyright INRIA
txt=[]
rhs=abs(evstr(op(3)))-2
sto=stk(top);top=top-1
sfrom=stk(top);top=top-1
top=top-rhs+1
s2=stk(top)
if rhs==1 then
if s2(1)<>':' then
if sto(3)=='0'|sto(4)=='0' then
txt=sto(1)+'(1,'+s2(1)+') = '+sfrom(1)+';'
else
txt=sto(1)+'('+s2(1)+') = '+sfrom(1)+';'
end
stk=list(op(2),'-1','?','?',sto(5))
else
txt=sto(1)+' = matrix'+rhsargs([sfrom(1),'size('+sto(1)+',1)','size('+sto(1)+',2)'])+';'
stk=list(op(2),'-1','?','1',sto(5))
end
else
s1=stk(top+1)
txt=sto(1)+rhsargs([s2(1),s1(1)])+' = '+sfrom(1)+';'
stk=list(op(2),'-1','?','?',sto(5))
end
|
9e9ec71bf29aaeab7fbb23a30dc29db4576d7cf9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /884/CH11/EX11.3/Example11_3.sce | 7b88ef33821380a9a67a876a3f1e074f74061213 | [] | 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 | Example11_3.sce | //calculation of atomic radius
clear;
clc;
printf("\t Example 11.3\n");
atoms=8*1/8+6*1/2;//atoms in a cell
d=19.3;//density, g/cc
Au=197;//mol mass of Au, g
NA=6.022*10^23;//avogadro no.
m=atoms*Au/NA;//mass of 1 cell, g
V=m/d;//volume, cc
a=V^(1/3);//edge length, cm
r=a/sqrt(8)/100;//radius in m
printf("\t the atomic radius of Au is : %4.0f pm\n",r*10^12);
//End
|
fa4a4626e1a4be4c91ed25edbf91643e76b05e9c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2207/CH8/EX8.12.6/ex_8_12_6.sce | 309ca86c2c00ad331bf6d4fc9447868a7c9a9134 | [] | 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 | 488 | sce | ex_8_12_6.sce | //Example 8.12.6;Torque speed charaterstics
clc;
clear;
close;
format('v',7)
//given data :
v=230;//in volts
vm=sqrt(2)*v;//in clts
Ka=1;
QR=1;//
ra=0.05;//
alpha=30;//in degree
y=(60/(2*%pi));//
z=((vm/%pi)*(1+cosd(alpha)));//
x=(ra/(0.5)^2)
for i=1:8
wm(i)= (z-(i)*x)*y;//
end
wm=[(y*z);wm(1);wm(2);wm(3);wm(4);wm(5);wm(6);wm(7);wm(8)]
disp(wm,"varoius values of speed in RPM is")
T=[0;1;2;3;4;5;6;7;8];
plot2d(T,wm)
xlabel("Torque ,N-m")
ylabel("Speed (rpm) for alpha=30 degree")
|
63ebc00380f80e6264634ca005a6a7175c14015b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2318/CH3/EX3.70/ex_3_70.sce | e894c954916db9b03b1d29613e795416c11b36b9 | [] | 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 | 286 | sce | ex_3_70.sce | //Example 3.70:resistance
clc;
clear;
close;
w=5000;//rad/s
cab=0.2;//micro-F
zab=(-%i/(w*cab*10^-6));//ohms
zbc=500;//ohm
l=0.1;//H
rcd=50;//ohm
zcd=rcd+%i*w*l;//ohm
cda=0.4;//micro-F
izda=-%i/(w*cda*10^-6);//
zda=(zab*zcd)/zbc;//
rs=real(zda);//ohms
disp(rs,"resistance is ,(ohm)=")
|
8febbd238cfceea7e5a4746a90148e10bdf4fd0f | fdc5047b7bf8122bad1e621df236b0481226c36e | /exemplos/xls-link-0.5.0-src/demos/xls_link_list_opened_files.dem.sce | 5736cf884adc434612e520fbc5fef1fbeba463ef | [] | no_license | jpbevila/virtualHartSci | aea3c6ba23d054670eb193f441ea7de982b531cc | a3f5be6041d230bd9f0fd67e5d7efa71f41cfca5 | refs/heads/main | 2023-07-26T23:05:28.044194 | 2021-09-09T11:50:59 | 2021-09-09T11:50:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,395 | sce | xls_link_list_opened_files.dem.sce | // ====================================================================
// Copyright ESI Group 2020
// Clément DAVID
// ====================================================================
if xls_IsExcelRunning() == %f then
xls_NewExcel();
else
xls_RecoverExcel();
end
function dem()
c = xls_getProperty("Application", "Workbooks", "Count");
items = emptystr(c, 1);
for i=1:c
xls_callMethod("Application", "Workbooks", list(i));
xls_callMethod("Workbook", "Activate");
items(i) = xls_getProperty("Workbook", "Name");
end
n = x_choose(items, "Select an Excel file");
if n > 0 then
xls_callMethod("Application", "Workbooks", list(n));
xls_callMethod("Workbook", "Activate");
c = xls_getProperty("Application", "Worksheets", "Count");
items = emptystr(c, 1);
for i=1:c
xls_callMethod("Application", "Worksheets", list(i));
xls_callMethod("Worksheet", "Activate");
items(i) = xls_getProperty("Worksheet", "Name");
end
n = x_choose(items, "Select an Excel worksheet");
if n > 0 then
xls_callMethod("Application", "Worksheets", list(n));
xls_callMethod("Worksheet", "Activate");
xls_SetVisible();
end
end
endfunction
dem();
clear("dem");
|
fda68dbc99f9b27500e099fb389145c29429031d | 449d555969bfd7befe906877abab098c6e63a0e8 | /611/CH14/EX14.2/Chap14_Ex2_R1.sce | a45509b6a2445958a954dded6250bb41e0d4bc55 | [] | 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,603 | sce | Chap14_Ex2_R1.sce | // Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
//Chapter-14,Example 2,Page 490
//Title: Standard Gibbs free energy of formation
//================================================================================================================
clear
clc
//INPUT
T=298.15;//temperature in K
P_s=0.16716;//saturation pressure of CH3OH in bar at T
//The reactions can be written down as:
//C(s)+2H2(g)+(1/2)O2(g)---->CH3OH(l)--->del_G1
//CH3OH(l)--->CH3OH(g)--->del_G2
//Overall: C(s)+2H2(g)+(1/2)O2(g)--->CH3OH(g)--->del_G=del_G2+del_G1
del_G1=-166.215;//standard Gibbs free energy of formation of CH3OH(l) in kJ
R=8.314;//universal gas constant in J/molK
//CALCULATION
//Now, the value of del_G2 has to be computed, from which del_G can be determined. The standard state for CH3OH(l) is 1 bar and 298.15K
//del_G2 is given by, del_G2=RTln(f_v/f_l), where f_v and f_l are the fugacities of the vapour and liquid phases respectively
//At 1 bar pressure, the vapour is an ideal gas and hence its fugacity is equal to pressure
f_v=1;//fugacity of the vapour in bar
f_l=P_s;//fugacity of the liquid is the saturation pressure at T, in bar
del_G2=R*T*log(f_v/f_l)*10^-3;//calculation of the value of del_G2 in kJ
del_G=del_G2+del_G1;//calculation of the standard Gibbs free energy of formation of CH3OH(g) in kJ
//OUTPUT
mprintf('The standard Gibbs free energy of formation of CH3OH(g)=%0.3f kJ \n',del_G);
//===============================================END OF PROGRAM===================================================
|
cadb039e10528fc1a2e4bc04a4b0fa1f0e166a61 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3204/CH14/EX14.11/Ex14_11.sce | 38ff8a24ca8f800290882cdbf78f72256692faa2 | [] | 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 | 578 | sce | Ex14_11.sce | // Initilization of variables
// Conditions given are
t=1 // s
x=14.75 // m
v=6.33 // m/s
// Calculations
// We use expression 1,2 & 3 to find distance,velocity & acceleration of the particle after 2 sec
T=2 // sec
X=(T^4/12)-(T^3/3)+(T^2)+(5*T)+9 // m // eq'n 3
V=(T^3/3)-(T^2)+(2*T)+5 // m/s
a=(T^2)-(2*T)+2 // m/s^2
// Results
clc
printf('The distance travelled by the particle is %f m \n',X)
printf('The velocity of the particle is %f m/s \n',V)
printf('The acceleration of the particle is %f m/s^2 \n',a)
// The answer may vary due to decimal point error
|
fd815365c6ff4e763b77082ab30431d1762a60ff | 449d555969bfd7befe906877abab098c6e63a0e8 | /1862/CH2/EX2.5/C2P5.sce | a69773526f9c9a5d5efefcfe03b19d4da7c9618f | [] | 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 | 799 | sce | C2P5.sce |
clear
clc
//to find average velocity of car
// GIVEN::
//distance travelling by car
d1 = 5.2//in mi
//distance travelled while walking
d2 = 1.2//in mi
//time required to reach to gas station while walking
t1 = 27//in min
//speed of car
v = 43//in mi/h
// SOLUTION:
//net displacement
delta_x = d1 + d2//in mi
//speed of car in mi/minutes
v1 = v/60//in mi/minutes
//total elapsed time
delta_t1 = (d1/v1) + t1//in min
//total elapsed time in h
delta_t = delta_t1/60//in h
//average velocity
//applying kinematic equations
Vav_x = delta_x/delta_t//in mi/h
printf ("\n\n Net displacement delta_x =\n\n %.1f mi",delta_x);
printf ("\n\n Total elapsed time delta_t =\n\n %.2f h",delta_t);
printf ("\n\n Average velocity of car required Vav_x =\n\n %.1f mi/h",Vav_x);
|
e258fb7e57b4980f89a030a08672f131e391f05b | 717ddeb7e700373742c617a95e25a2376565112c | /806/DEPENDENCIES/129.sci | 6e63ae404bca7892f930d3a074f161adcfd01702 | [] | 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 | 65 | sci | 129.sci | p=2.94//g/cm^3(density)
W=9.81//kN/m^3(Specific weight of water) |
d473396a60d1a11a8933c00f6fe71e4815811619 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2223/CH11/EX11.2/Ex11_2.sce | 86526cbb25e9d5514ababd6361304c4ced05364f | [] | 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,466 | sce | Ex11_2.sce | // scilab Code Exa 11.2 Calculation on an axial compressor stage
T1=314; // in Kelvin
p1=768; // Initial Pressure in mm Hg
N=18e3; // rotor Speed in RPM
d=50/100; // Mean Blade ring diameter in m
u=100; // peripheral speed in m/s
h=6/100; // blade height at entry in m
beta1=51;
beta2=9;
alpha_1=7; // air angle at rotor and stator exit
wdf=0.95; // work-done factor
m=25; // in kg/s
n_st=0.88; // Stage Efficiency
n_m=0.92; // Mechanical Efficiency
cp=1005; // Specific Heat at Constant Pressure in J/(kgK)
R=287;
gamma=1.4;
n=(gamma-1)/gamma;
// part(a) air angle at stator entry
cx=u/(tand(alpha_1)+tand(beta1));
disp(cx,"cx=")
alpha2=atand(tand(alpha_1)+tand(beta1)-tand(beta2))
disp("degree",alpha2,"air angle at stator entry is alpha2= ")
// part(b) blade height at entry and hub-tip diameter ratio
ro1=(p1/750*1e5)/(R*T1);
h1=m/(ro1*cx*%pi*d);
disp("cm",h1*1e2,"(b)blade height at entry is")
dh=d-h1;
disp(dh,"dh=")
dt=d+h1;
disp(dt,"dt=")
disp(dh/dt,"and hub-tip diameter ratio is")
// part(c) stage Loading coefficient
w=wdf*u*cx*(tand(beta1)-tand(beta2));
shi=w/(u^2);
disp (shi,"(d)Loading coefficient is")
// part(d) stage pressure ratio
delTa=w/cp;
delTs=n_st*delTa;
pr=((1+(delTs/T1))^(1/n));
disp(pr,"(e)pressure ratio developed by the stage is")
// part(e) Determining power required to drive the compressor
P=m*w/n_m;
disp ("kW" ,P/1000,"(e)Power required to drive the compressor is")
|
7a03cd5c6fefb65cf230c90658703e548cc3fbfb | 449d555969bfd7befe906877abab098c6e63a0e8 | /291/CH6/EX6.6a/eg6_6a.sce | 1edeb99875866612584b9fe0f753731343801d90 | [] | 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 | 601 | sce | eg6_6a.sce | favour = 0.45;
samplesize = 200;
expec= favour*samplesize;
sd = sqrt(samplesize*favour*(1-favour));
disp(expec, "The expected value is ")
disp(sd, "The standard deviation is ")
function result= bino(n, k, p)
result = factorial(n)*(p^k)*((1-p)^(n-k))/(factorial(k)*factorial(n-k))
endfunction
//newsum = 0;
//for i=1:10
// newsum = newsum + bino(200,i, favour)
//end
//prob = 1-newsum;*/
lim = 101;
tolerance = 0.5;
lim= lim - tolerance;
prob = 1- cdfnor("PQ", lim, expec, sd)
disp(prob, "Probability that more than half the members of the sample favour the candidate") |
c01336b2c237b0e698f8bbce1904649bc40ea68b | 3a9550dbf1d28c3c576a4e102771848477e4f030 | /CalculoII/calcErro.sce | 38a79ad24ef0df854bb072151066d174bd320c77 | [] | no_license | juzejunior/Faculdade | 6e00800c47e779348c36bba0eaa5b377059373d2 | 458497ef1ca237fd22f794c0af0d4fa7cf285255 | refs/heads/master | 2020-04-12T07:21:30.667824 | 2018-07-05T10:59:59 | 2018-07-05T10:59:59 | 65,511,270 | 0 | 1 | null | 2018-05-08T14:53:12 | 2016-08-12T00:46:55 | C | UTF-8 | Scilab | false | false | 209 | sce | calcErro.sce | //calculo B calculo do livro
//tranform into columns
x = [-2: 0.1: 2]'
//working
disp(x)
//y equals x
y = x
//calculate the height
z = 3*x*y'.^2+x.^3*ones(y')-3*x*ones(y')
//exibing the result
plot3d(x,y,z)
|
bef33377edfbedcd043921b0eb66f66ed828a6eb | fc97dca636256fc30f018840e244a173c06ec54b | /hard/tests/tooFewParameters.tst | 061b7a7e5681d1f6dae338a012c0cfacd6f2529d | [
"MIT"
] | permissive | tuomasb/compiler | 23fd2190bc6911380a5acf45241c1f2b2580538f | aa366ace6f2c29b5e0080faf8c50dcb7be0b02f4 | refs/heads/master | 2020-05-17T21:51:17.977674 | 2014-06-09T00:24:17 | 2014-06-09T00:24:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 108 | tst | tooFewParameters.tst | int sum(int x, int y) {
return x + y;
}
main {
int s;
int x;
x := 1;
s := sum(x);
return s;
}
|
c3335f8f7d8740f0928309035d5d6b6d2e2c5ccc | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set13/s_Introduction_To_Electrical_Engineering_Er._J._P._Navani_And_Er._S._Sapra_2384.zip/Introduction_To_Electrical_Engineering_Er._J._P._Navani_And_Er._S._Sapra_2384/CH6/EX6.2/ex6_2.sce | b60558a06d00dc46feeea2e91df299709c04268a | [] | 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 | 206 | sce | ex6_2.sce | errcatch(-1,"stop");mode(2);// Exa 6.2
;
;
format('v',6)
// Given data
Rm = 6;// in ohm
Rsh = 0.025;// in ohm
N = 1 + (Rm/Rsh);// multiplying factor
disp(N,"The multiplying factor is");
exit();
|
ec9351cb951509712ef64397b7a76e362d81bdde | 449d555969bfd7befe906877abab098c6e63a0e8 | /3415/CH6/EX6.3/Ex6_3.sce | 38b25c4719f00f8c648889c0776c16292bce7f25 | [] | 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 | 456 | sce | Ex6_3.sce | //fiber optic communications by joseph c. palais
//example 6.3
//OS=Windows XP sp3
//Scilab version 5.4.1
clc;
clear all;
//given
NFdb=3.2//noise figure in dB
SNRidb=50//input snr in dB
//to find
NF=10^(NFdb/10)//converting from decibels to ratios
SNRi=10^(SNRidb/10)//converting from decibels to ratios
SNRo=SNRi/NF//output signal to noise ratio
SNRodb=10*log10(SNRo)//converting from ratios to decibels
mprintf("Output SNR=%fdB",SNRodb)
|
db77db2908131d76e3c5d46f3346d02951824a98 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3428/CH15/EX9.15.5/Ex9_15_5.sce | 5b6c16da481e411f842d32fac9aee292e353fbbc | [] | 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 | 292 | sce | Ex9_15_5.sce | //Section-9,Example-1,Page no.-E.8
//To predict whether the reaction is spontaneous or not.
E_01=1.23 //E_0(H+,O_2,H_2O)
E_02=-0.44 //E_0(Fe2+,Fe)
E_0=E_01-E_02
disp(E_0,'E_0 for the given cell(V)')
//Since E_0 >0,it follows that the reaction is spontaneous.
|
bf6c7bedbb41de7753291569cccc2f7c8d9d8df2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3136/CH5/EX5.4/Ex5_4.sce | 27624fdc11a9b0afbd25b1491600b9f0e129885c | [] | 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 | 982 | sce | Ex5_4.sce | clear all; clc;
disp("Assume uniform axial flow at the inlet")
disp("(a) At the hub")
disp("V_a=15.5m/s")
omega=157
D_h=0.37
U_h=0.5*omega*D_h
printf(" Uh= %0.2f m/s",U_h)
disp("Vu2=(Vmu2*Dm)/Dh")
V_mu2=15
D_m=0.585
V_u2=(V_mu2*D_m)/D_h
printf(" Hence Vu2= %0.1f m/s",V_u2)
V_a=15.5
disp("tan(ß1)=(Uh/Va). Hence we can determine value of ß1")
//let x=Uh/Va
x=U_h/V_a
beta_1=(atan(x))*180/%pi
printf(" ß1= %0.1f degrees",beta_1)
disp("tan(ß2)=(Uh-Vu2)/Va")
//Let y=(Uh-Vu2)/Va
y=(U_h-V_u2)/V_a
beta_2=(atan(y))*180/%pi
printf(" ß2= %0.2f degrees \n",beta_2)
disp("(b) At the tip")
U_t=0.5*(157*0.74)
printf("\n Ut= %0.2f m/s",U_t)
V_u2=(15*0.585)/0.74
printf("\n Vu2= %0.2f m/s",V_u2)
//let p=atan(58.09/15.5)
p=(atan(58.09/15.5))*180/%pi
printf("\n ß1 = %0.0f degrees",p)
//let q=atan((58.09-11.86)/15.5)
q=atan((58.09-11.86)/15.5)*180/%pi
printf("\n ß2 = %0.3f degrees",q)
disp("On rounding off ß2=71.4")
|
e6f0333e20a7313f253de65318740eaf0e0d0950 | 449d555969bfd7befe906877abab098c6e63a0e8 | /978/CH12/EX12.5/Example12_5.sce | d7f3d3ee4bd386eecccfbb0787d7a9f49370505d | [] | 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 | 197 | sce | Example12_5.sce | //chapter-12,Example12_5,pg 508
rho=4*10^12//resistivity of LCD
Vgrad=10^6//potential gradient
j=(Vgrad/rho)//current density
printf("current per cm^2\n")
printf("j=%.8f A/cm^2\n",j) |
b4f59502510dba374d4526c0e4a757a5feb015c1 | 2c2dc93267283e4aebcffffd5bd76e19ddcf5cc7 | /output/C45-C.glass/Prob-result9.tst | 56a309b193cde966981e928f46543c8f8ee03fbd | [] | no_license | joseangeldiazg/probabilistic_keel | c9cf4ddc2cf750cbbeca88e6f84218084892ae1f | 6c5ddf8c98cc7431d523b291e521d1e8607dc662 | refs/heads/master | 2020-05-21T12:26:41.754863 | 2017-01-08T10:29:44 | 2017-01-08T10:29:44 | 55,733,275 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 916 | tst | Prob-result9.tst | True-Class 1 2 3 4 5 6 7
1 0.043478260869565216 0.9565217391304348 0.0 0.0 0.0 0.0 0.0
1 0.7777777777777778 0.1111111111111111 0.0 0.0 0.0 0.0 0.1111111111111111
1 0.043478260869565216 0.9565217391304348 0.0 0.0 0.0 0.0 0.0
1 0.7777777777777778 0.1111111111111111 0.0 0.0 0.0 0.0 0.1111111111111111
1 0.85 0.0 0.15 0.0 0.0 0.0 0.0
1 0.7777777777777778 0.1111111111111111 0.0 0.0 0.0 0.0 0.1111111111111111
1 0.0 0.0 1.0 0.0 0.0 0.0 0.0
2 0.043478260869565216 0.9565217391304348 0.0 0.0 0.0 0.0 0.0
2 0.0 1.0 0.0 0.0 0.0 0.0 0.0
2 0.043478260869565216 0.9565217391304348 0.0 0.0 0.0 0.0 0.0
2 0.043478260869565216 0.9565217391304348 0.0 0.0 0.0 0.0 0.0
2 0.8 0.2 0.0 0.0 0.0 0.0 0.0
2 0.0 1.0 0.0 0.0 0.0 0.0 0.0
2 0.0 0.25 0.75 0.0 0.0 0.0 0.0
3 0.0 0.25 0.75 0.0 0.0 0.0 0.0
5 0.0 0.0 0.0 0.0 0.9166666666666666 0.0 0.08333333333333333
7 0.0 0.0 0.0 0.0 0.0 0.0 1.0
7 0.0 0.0 0.0 0.0 0.0 0.0 1.0
|
1a6d5ef55a6337b215e8004a7153ae06f442b66a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1199/CH2/EX2.53/2_53.sci | 57f32217949b99dd1eaf4688ad9f765613c12394 | [] | 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 | sci | 2_53.sci | // 2.53
clc;
clear
R=10^6;
C=2500*10^-12;
tc=R*C;
t=2*10^-3;
d=100*10^-12;
F=0.1;
el=10^3*{d*F*[exp(-t/tc)]/C};
printf("Voltage just before t=2ms =%.2f mV",el)
el_after=10^3*{d*F*[exp(-t/tc)-1]/C};
disp(el_after,'voltage just after t=2ms (mV)')
printf("Voltage just after t=2ms =%.2f mV",el_after)
disp('when t=10ms')
t=10*10^-3;
T=2*10
e_10=10^3*{d*F*[exp((-T/tc)-1)]*{exp(-(t-T))/tc}/C}
printf("output voltage 10 ms after the application of impulse =%.0f mV",e_10) |
eade9fa01e46fb46a9b1ede8647a88dbe23c77b1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1850/CH11/EX11.1/exa_11_1.sce | b38e33037befd16860bfe172445aaa2a94c1f760 | [] | 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 | exa_11_1.sce | // Exa 11.1
clc;
clear;
close;
//given data
I_dc=300;// in mA
C=200;// in micro F
V_max= 24;// in volt
V_r_rms= 2.4*I_dc/C;// in volt
V_r_peak= sqrt(3)*V_r_rms;// in volt
V_dc= V_max-V_r_peak;// in volt
V_in_low= V_max-V_r_peak;// in volt
disp(V_in_low,"Minimum input voltage in volt")
|
e7cc6e0ceb316940b5e64e75f786389cdd1cb0b6 | 1b969fbb81566edd3ef2887c98b61d98b380afd4 | /Rez/bivariate-lcmsr-post_mi/bfas_oi_bfa_mt_d/~BivLCM-SR-bfas_oi_bfa_mt_d-PLin-VLin.tst | 886e6bff8142d7c68f01e9577fb422e98d25f3b1 | [] | 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_oi_bfa_mt_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.265391D+00
2 -0.164422D-02 0.213810D-02
3 -0.718585D-01 0.989034D-03 0.438802D+00
4 0.136690D-04 -0.486565D-03 -0.575194D-02 0.378751D-02
5 -0.119096D-02 -0.106610D-04 -0.122024D-02 0.158110D-03 0.376653D-02
6 0.712471D-03 -0.593536D-04 0.581430D-03 -0.162252D-03 0.353729D-03
7 0.342612D-03 -0.938724D-04 0.354137D-02 -0.357488D-03 0.498383D-03
8 -0.194962D-02 -0.781706D-04 0.475843D-03 0.440594D-04 0.279374D-03
9 -0.436217D+00 0.252947D-01 0.576473D-01 0.278798D-01 0.408832D-01
10 -0.371030D+00 -0.230661D-02 0.951870D-01 0.156675D-01 0.174138D+00
11 0.120653D-01 -0.405420D-02 -0.107847D-01 -0.130899D-01 -0.117777D+00
12 -0.472342D+00 0.343454D-01 0.763186D+00 0.298307D-01 -0.175127D-02
13 0.885836D-01 -0.170512D-01 0.219110D+00 -0.185497D-01 0.287350D-01
14 -0.304524D+00 -0.689290D-02 0.240824D+00 0.234190D-02 0.715463D-01
15 -0.228541D+01 -0.267781D-01 0.431990D+00 -0.136025D-01 -0.890459D-01
16 -0.200903D-01 -0.761477D-02 -0.568801D-02 0.844959D-03 0.863641D-04
17 0.543898D-02 0.668479D-04 0.359220D-04 0.219720D-04 -0.370214D-03
18 0.224938D+00 0.282062D-02 -0.179263D+00 -0.132899D-01 0.147649D-01
19 -0.621213D-01 0.107571D-01 0.480712D-01 0.836336D-02 0.202544D-01
20 0.606242D+00 0.626172D-02 0.151935D+01 0.135345D-01 -0.277678D-01
21 0.577406D-01 -0.705256D-02 -0.894347D-01 -0.427162D-02 -0.244107D-01
22 0.577561D-03 0.255157D-04 0.422063D-02 0.126999D-03 0.325360D-03
23 0.325642D-03 0.110604D-02 -0.166713D-01 0.116899D-01 -0.315734D-02
24 -0.391171D-03 -0.111767D-03 0.309996D-02 -0.397827D-03 0.312594D-03
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 0.683201D-03
7 0.116708D-02 0.587879D-02
8 0.161586D-03 0.834884D-03 0.323049D-02
9 -0.906357D-02 -0.523259D-01 0.625231D-02 0.336844D+02
10 0.254798D-03 0.138645D-01 0.190431D-01 0.182674D+01 0.169251D+02
11 0.381828D-02 0.134884D-01 -0.220727D-01 -0.114080D+02 -0.557707D+01
12 -0.732833D-01 -0.135542D+00 0.579281D-01 0.515829D+01 0.431764D+01
13 0.741345D-01 0.211540D+00 0.401252D-01 -0.697236D-01 -0.556220D+00
14 0.574339D-01 0.214207D+00 0.423841D+00 0.372019D+01 0.651524D+01
15 0.133778D-02 0.527335D-01 0.766945D-01 0.251501D+01 -0.370096D+01
16 0.608921D-03 0.431220D-03 0.837685D-03 0.519181D+00 -0.152759D-01
17 -0.464141D-04 -0.136547D-03 -0.222393D-03 -0.113397D+00 -0.364254D-01
18 -0.508210D-01 -0.279516D+00 -0.771634D-01 0.130512D+02 0.481351D-01
19 -0.107662D-01 -0.133304D-01 0.250382D-03 0.413497D+01 0.898387D+00
20 -0.518239D-01 -0.163849D+00 -0.381804D+00 0.398236D+01 0.110982D+01
21 0.105506D-01 0.120987D-01 -0.395575D-02 -0.421942D+01 -0.109737D+01
22 -0.545476D-04 0.472953D-03 0.617336D-03 -0.559641D-01 0.235135D-01
23 -0.257902D-02 -0.733139D-02 -0.173181D-02 0.262085D+00 -0.566263D-01
24 0.409601D-03 0.120242D-02 0.530285D-03 -0.366952D-01 0.237639D-02
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 0.380234D+02
12 -0.170748D+02 0.171367D+03
13 -0.298578D+01 -0.991272D+01 0.186738D+02
14 -0.815201D+01 0.522174D+01 0.108809D+02 0.118607D+03
15 0.820660D+01 0.463015D+01 -0.402938D+00 0.107579D+02 0.179397D+03
16 -0.903210D-01 -0.366087D+00 0.218085D+00 0.295251D+00 0.156478D+01
17 -0.112836D-01 -0.121852D-01 0.964928D-02 -0.416463D-01 -0.858711D+00
18 -0.983733D+01 0.336828D+01 -0.903916D+01 -0.525176D+01 -0.387074D+02
19 -0.204641D+01 0.242159D+01 -0.169776D+01 0.146968D+01 0.942785D+00
20 0.484619D+01 -0.236383D+02 -0.370958D+01 -0.796799D+02 -0.106616D+01
21 0.241706D+01 -0.371808D+01 0.170683D+01 -0.172945D+01 -0.890343D+00
22 -0.178260D-01 0.137151D+00 -0.121446D-01 0.682616D-01 0.793986D-01
23 -0.924799D-01 0.143679D+01 -0.463243D+00 -0.471899D+00 -0.858023D+00
24 0.565654D-02 -0.163986D+00 0.514042D-01 0.452452D-01 0.429019D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 0.361169D+00
17 -0.213833D-01 0.112707D-01
18 0.326180D+00 0.284780D-01 0.191373D+03
19 -0.201934D+00 -0.239058D-02 0.404968D+01 0.627015D+01
20 -0.478336D+00 0.109782D-01 -0.493430D+02 -0.126741D+01 0.552843D+03
21 -0.171839D-01 0.160010D-01 -0.198421D+01 -0.587002D+01 0.105447D+01
22 0.479330D-02 -0.118623D-02 -0.836084D+00 -0.145283D-01 0.157734D+00
23 0.308875D-01 -0.369324D-02 0.751038D-01 0.577525D-02 0.565341D+01
24 -0.520530D-02 0.184115D-03 0.157130D+00 0.559821D-02 -0.248644D+01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 0.682378D+01
22 -0.446332D-01 0.962941D-02
23 -0.337572D+00 0.120874D-01 0.902491D+00
24 0.166020D-01 -0.338989D-02 -0.816383D-01 0.268793D-01
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 -0.069 1.000
3 -0.211 0.032 1.000
4 0.000 -0.171 -0.141 1.000
5 -0.038 -0.004 -0.030 0.042 1.000
6 0.053 -0.049 0.034 -0.101 0.221
7 0.009 -0.026 0.070 -0.076 0.106
8 -0.067 -0.030 0.013 0.013 0.080
9 -0.146 0.094 0.015 0.078 0.115
10 -0.175 -0.012 0.035 0.062 0.690
11 0.004 -0.014 -0.003 -0.034 -0.311
12 -0.070 0.057 0.088 0.037 -0.002
13 0.040 -0.085 0.077 -0.070 0.108
14 -0.054 -0.014 0.033 0.003 0.107
15 -0.331 -0.043 0.049 -0.017 -0.108
16 -0.065 -0.274 -0.014 0.023 0.002
17 0.099 0.014 0.001 0.003 -0.057
18 0.032 0.004 -0.020 -0.016 0.017
19 -0.048 0.093 0.029 0.054 0.132
20 0.050 0.006 0.098 0.009 -0.019
21 0.043 -0.058 -0.052 -0.027 -0.152
22 0.011 0.006 0.065 0.021 0.054
23 0.001 0.025 -0.026 0.200 -0.054
24 -0.005 -0.015 0.029 -0.039 0.031
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 1.000
7 0.582 1.000
8 0.109 0.192 1.000
9 -0.060 -0.118 0.019 1.000
10 0.002 0.044 0.081 0.077 1.000
11 0.024 0.029 -0.063 -0.319 -0.220
12 -0.214 -0.135 0.078 0.068 0.080
13 0.656 0.638 0.163 -0.003 -0.031
14 0.202 0.257 0.685 0.059 0.145
15 0.004 0.051 0.101 0.032 -0.067
16 0.039 0.009 0.025 0.149 -0.006
17 -0.017 -0.017 -0.037 -0.184 -0.083
18 -0.141 -0.264 -0.098 0.163 0.001
19 -0.164 -0.069 0.002 0.285 0.087
20 -0.084 -0.091 -0.286 0.029 0.011
21 0.155 0.060 -0.027 -0.278 -0.102
22 -0.021 0.063 0.111 -0.098 0.058
23 -0.104 -0.101 -0.032 0.048 -0.014
24 0.096 0.096 0.057 -0.039 0.004
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 1.000
12 -0.212 1.000
13 -0.112 -0.175 1.000
14 -0.121 0.037 0.231 1.000
15 0.099 0.026 -0.007 0.074 1.000
16 -0.024 -0.047 0.084 0.045 0.194
17 -0.017 -0.009 0.021 -0.036 -0.604
18 -0.115 0.019 -0.151 -0.035 -0.209
19 -0.133 0.074 -0.157 0.054 0.028
20 0.033 -0.077 -0.037 -0.311 -0.003
21 0.150 -0.109 0.151 -0.061 -0.025
22 -0.029 0.107 -0.029 0.064 0.060
23 -0.016 0.116 -0.113 -0.046 -0.067
24 0.006 -0.076 0.073 0.025 0.020
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 1.000
17 -0.335 1.000
18 0.039 0.019 1.000
19 -0.134 -0.009 0.117 1.000
20 -0.034 0.004 -0.152 -0.022 1.000
21 -0.011 0.058 -0.055 -0.897 0.017
22 0.081 -0.114 -0.616 -0.059 0.068
23 0.054 -0.037 0.006 0.002 0.253
24 -0.053 0.011 0.069 0.014 -0.645
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 1.000
22 -0.174 1.000
23 -0.136 0.130 1.000
24 0.039 -0.211 -0.524 1.000
|
08e5d938e29a6b28a582e6822ee0283ed2a3254c | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/macros/m2sci/exp2sci.sci | c6cd0f94082e218edf266a54595d22a183a6a382 | [
"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 | 2,834 | sci | exp2sci.sci | function [stk,txt,ilst,vnms,vtps,lcount]=exp2sci(lst,ilst,vnms,vtps)
//
//!
// Copyright INRIA
nlst=size(lst)
top=0
stk=list()
txt=[]
ilst=ilst-1
cmod=0;
//
ok=%t
while ilst<nlst&ok then
lhs=1
ilst=ilst+1
op=lst(ilst)
if type(op)==10 then
if prod(size(op))==1 then op=[op ' '],end
//disp('exp2sci '+op(1)+' '+op(2)+' '+string(top))
select op(1)
case '0' then
case '2' then //stackg
if or(op(2)==vnms(:,2))|(op(3)=='-3'&op(4)<>'0') then
[stk,top,vnms,vtps,t1]=get2sci(op(2),stk,top,vnms,vtps)
txt=[txt;t1]
elseif op(4)=='0' then
if funptr(op(2))<>0&exists('sci_'+op(2))==0 then op(2)='%'+op(2),end
[stk,top,vnms,vtps,t1]=get2sci(op(2),stk,top,vnms,vtps)
//stsz=stacksize();if stsz(2)>500000 then pause,end
txt=[txt;t1]
if stk(top)==list() then
// m-file without input args
// compute lhs
lhs=0
il=ilst+1
nlst=size(lst)
while il<=nlst
if lst(il)(1)<>'1' then break,end
lhs=lhs+1
il=il+1
end
top=top-1
op(1)='20'
op(3)=op(4)
op(4)=string(lhs)
lst;lst(ilst)=op;
[stk,t1,top]=func2sci(op,stk)
txt=[txt;t1]
if ilst<nlst then
if lst(ilst+1)(1)=='1'& lst(ilst+1)(2)==op(2) then
ilst=ilst+1
t1=stk(top)(1);t1($)=t1($)+';'
txt=[txt;t1]
top=top-1
end
end
end
else
//appel des macros
op(3)=op(4)
op1=lst(ilst+1)
if op1(1)=='5'&op1(2)=='25' then
ilst=ilst+1
op(4)=op1(4)
else
op(4)='1'
end
[stk,t1,top]=func2sci(op,stk)
txt=[txt;t1]
end
t1=[]
case '3' then //string
quote=''''
dqote='""'
top=top+1
st=strsubst(strsubst(op(2),quote,quote+quote),dquote,dquote+dquote)
stk(top)=list(quote+st+quote,'0','1','1','10')
case '4' then //matrice vide
top=top+1
stk(top)=list('[]','0','0','0','1')
case '5' then //allops
t1=[]
iop=evstr(op(2))
top1=top
execstr('[stkr,t1,top]=%'+ops(iop,2)+'2sci()')
stk(top)=stkr
txt=[txt;t1]
t1=[]
case '6' then //num
[stk,top]=num2sci(op(2),stk)
case '20' then //functions
[stk,t1,top]=func2sci(op,stk)
txt=[txt;t1]
t1=[]
case '15' then
lcount=lcount+1
case '19' then // mkindx
// replace all variables describing path by a single list
n=evstr(op(2))
m=evstr(op(3))
l=list([n,m])
if m>0 then n=n-1,end
nv=(n+m)
pos=top-nv
for k=1:nv
l($+1)=stk(pos+k)
end
top=pos+1
stk(top)=l
case '23' then
top=top+1
stk(top)=list(quote+op(2)+quote,'0','1','1','10')
else
ok=%f
end
else
ok=%f
end
end
lst=resume(lst)
|
f4497395bbbdbfb789334307dc725af291e9e765 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2534/CH2/EX2.2/Ex2_2.sce | 55e7afacffaf15931885e649d9e4be7638d8946e | [] | 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 | 172 | sce | Ex2_2.sce | //Ex2_2
clc
C= 10*10^-6
V = 10
disp("C ="+string(C)+"F")//capacitance
disp("V = "+string(V)+"V")//voltage
disp("Q = C*V = "+string(C*V)+"C")//calculation for charge
|
647639a778c369bf507e0c40dad10dd7c1024a7f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2534/CH1/EX1.14/Ex1_14.sce | 269c66a6a30522195c4e0ac7620edbd650a49ccd | [] | 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 | 252 | sce | Ex1_14.sce | //Ex1.14
clc
ni = 1.5*10^10 //intrinsic concentration
ND = 5*10^16 //donor atom concentration
disp("ni ="+string(ni)+"/cm.cube")
disp("ND = "+string(ND)+" /cm.cube")
disp("p = (ni^2)/ND = "+string((ni^2)/ND)+"atom/cm.cube") //hole concentration
|
ce807c457ddfdb4cea9c675a64d0bef86260d9fa | efa427de3490f3bb884d8ac0a7d78829ec7990f9 | /sum-of-odd-numbers.sce | 9b11e619b3963bcc1ec4a5d59b3b754fd37d1a5e | [] | no_license | letyrobueno/Scilab | a47648473aa681556561d5cea20659d143e4f492 | 2f23623dccea89a3ab2db12ec1f615186f785aa4 | refs/heads/master | 2020-09-01T19:00:30.804237 | 2019-11-01T17:45:22 | 2019-11-01T17:45:22 | 219,031,973 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 317 | sce | sum-of-odd-numbers.sce | // Return the sum of the odd numbers between two given numbers
x = input("Give a number: ")
y = input("Give another number: ")
if x<y
amount = 0
for i=x:y
if modulo(i,2)~=0
amount = amount+i
end
end
printf('%g\n', amount)
else printf("x is not smaller than y!")
end
|
88c95c8313e79b7936f24c21fbabd2acf278e425 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH15/EX15.2/Ex15_2.sce | bca14e58ec8d4b7e13968ece5c6a6ea3ba6a2c06 | [] | 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,514 | sce | Ex15_2.sce | // chapter 15
// example 15.2
// Determine the angle of firing advance in different cases, voltage ratio and power flow
// page-958-959
clear;
clc;
// given
P=6; // number of poles
f=50; // in Hz
N1=600, N2=800; // in rpm
E=600; // in V open circuit standstill slip-ring voltage
Es=415; // in V (supply voltage)
gama1=10; // in degree (overlap angle in rectifier)
gama2=5; // in degree (overlap angle in invertor)
V_diode=1.5; // in V (voltage drop across SCR)
V_SCR=0.7; // in V (voltage drop across SCR)
alpha=0; // in degree (used by the author in the book)
Pin=100; // assumption as done in the book
// calculate
Ns=(f/P)*120; // calculation of synchronous speed
S1=(Ns-N1)/Ns; // calculation of slip corresponding to N1=600
Er1=N1*S1; // calculation of rotor voltage corresponding to N1=600
Edc1=(P*Er1*sqrt(2)/%pi)*sin(%pi/P); // calculation of dc link voltage corresponding to N1=600
Edc_inv1=Edc1;
Emax=Es*sqrt(2);
// since Edc_inv=(P*Emax/(2*%pi))*sin(%pi/P)*(cos(Beta)+cos(Beta-gama)), and gama=0, therefore we get
Beta1=(acosd((2*%pi/(P*Emax*sin(%pi/P)))*Edc_inv1/2)); // calculation of angle of firing advance corresponding to N1=600
S2=(Ns-N2)/Ns; // calculation of slip corresponding to N2=800
Er2=N2*S2; // calculation of rotor voltage corresponding to N2=800
Edc2=(P*Er2*sqrt(2)/%pi)*sin(%pi/P); // calculation of dc link voltage corresponding to N2=800
Edc_inv2=Edc2;
// since Edc_inv=(P*Emax/(2*%pi))*sin(%pi/P)*(cos(Beta)+cos(Beta-gama)), and gama=0, therefore we get
Beta2=(acosd((2*%pi/(P*Emax*sin(%pi/P)))*Edc_inv2/2)); // calculation of angle of firing advance corresponding to N2=800
Edc3=(P*Emax/(2*%pi))*sin(%pi/P)*(cos(alpha)+cos(alpha+gama1))-2*V_SCR;
Beta3=acosd(((2*%pi/(P*Emax*sin(%pi/P)))*(Edc3-2*V_diode))/(2*cosd(gama2/2)))+gama2/2;
K=Es/Er1;
P0_rotor=Pin*S1;
P0_shaft=Pin-P0_rotor;
printf("\n\nThe angle of firing advance corresponding to N1=%.f rpm is \t Beta1=%.1f degree",N1,Beta1);
printf("\nThe angle of firing advance corresponding to N2=%.f rpm is \t Beta2=%.1f degree",N2,Beta2);
printf("\nThe angle of firing advance in overlapping case is \t\t Beta3=%.1f degree",Beta3);
printf("\n\nThe transfromer ratio is \t K=%.2f",K);
printf("\n\nThe power out of the rotor is \t P0_rotor=%.f %% of power input to the stator",P0_rotor);
printf("\nThe shaft output power is \t P0_shaft=%.f %% of power input to the stator",P0_shaft);
// Note: The answer in the book is wrong for Beta3 due to use of wrong values of Emax and gama1 in the calculation. I have used the correct values |
f6c6de25976b1cf3927f3f537df29474ce6c22da | fd6e45f66c41ad779a3d47c3bf8ebfa140d3d657 | /P3 - Non-linear equations /Métodos/5- secante CHECK.sci | 194d45c560101a2771488bec487ad97267f5cbc6 | [] | no_license | jere1882/Numerical-Analysis-Assignments | 7f474e2020d010f9f9c3dceff5e48c03b0d38652 | 1074f92ca93d0a402259f92a0f61f105f25e5230 | refs/heads/master | 2021-09-06T20:00:36.411386 | 2018-02-10T18:04:38 | 2018-02-10T18:04:38 | 121,039,769 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 855 | sci | 5- secante CHECK.sci |
//MÉTODO DE LA SECANTE VERSIÓN MATHEWS
function [p1,err,k,y]=secante(f,p0,p1,delta,epsilon,max1)
//Datos:
// f función
// p0 y p1 son aproximaciones iniciales a un cero de f
// delta es la tolerancia para p1
// epsilon es la tolerancia para los valores de la función
// max1 es el número máximo de iteraciones
//Resultados:
// p1 es la aproximación a la raíz
// err es una estimación del error de p1
// k es el número de iteraciones realizadas
// y = f(p1) , aproximadamente será cero.
for k=1:max1
p2= p1 - f(p1)* ((p1-p0)/(f(p1)-f(p0)));
err=abs(p2-p1);
relerr=2*err/(abs(p2)+delta);
p0=p1;
p1=p2;
y=f(p1)
if ((err<delta) | (relerr<delta) | (abs(y)<epsilon)) then break end
end
endfunction
|
6263e4830e6b4b3d939562d1b74ff75348800e91 | 449d555969bfd7befe906877abab098c6e63a0e8 | /293/CH2/EX2.2/eg2_2.sce | 3714ebb195a2749f3b6d9f80bd11b45072a6da3b | [] | 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 | 366 | sce | eg2_2.sce | R = 100; // resistance in ohms
I = 0.3; // current in amps
P = I^2 * R; // power
//power specification of the resistors available in the stock
Pa = 5;
Pb = 7.5;
Pc = 10;
if Pa > P then
disp("we should select resistor a")
end
if Pb > P then
disp("we should select resistor b")
end
if Pc > P then
disp("we should select resistor c")
end |
6c1307ac7cca5e481415d58c5f77449bb7b51987 | 449d555969bfd7befe906877abab098c6e63a0e8 | /74/CH2/EX2.4/example4_sce.sce | 900348cb4952eb9aa5a179d5e9d7a9b4961b2454 | [] | 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 | 309 | sce | example4_sce.sce | //chapter 2
//example 2.4 page 79
//figure 2.40
Vios=12*10^-3; Rf=100*10^3;R1=10*10^3; Ib=500*10^-9;Iios=90*10^-9;//given
R3=Rf/R1;R4=R3+1;
Voos=Vios*R4+Rf*Ib;
disp(Voos)
Rcomp=R1*Rf/(R1+Rf);//Rcomp=R1||Rf
disp(Rcomp)
Voos2=Vios*R4+Rf*Iios;//with Rcomp,the output offset voltage become
disp(Voos2)
|
c957b0caed3a9d3b87173638871a6ab84adb283b | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/tf2zpk/tf2zpk8.sce | a1b2dcc7ac2c65d4dbbf7224dae73a57260bb776 | [] | 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 | 65 | sce | tf2zpk8.sce | b=[0 0 0 0];
a=[1 2 3 4];
z=tf2zpk(b,a);
disp(z);
//output
// []
|
bc24ff87d506647c6eda82e8afbcc2c395fdb7ea | 449d555969bfd7befe906877abab098c6e63a0e8 | /2873/CH9/EX9.12/Ex9_12.sce | c9d73b26aac486888b3ff9f1f10cffdd539b3f1e | [] | 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,320 | sce | Ex9_12.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Engineering Thermodynamics by Onkar Singh Chapter 9 Example 12")
P1=1*10^5;//initial pressure in Pa
P9=P1;
T1=300;//initial temperature in K
P2=4*10^5;//pressure of air in intercooler in Pa
P3=P2;
T3=290;//temperature of air in intercooler in K
T6=1300;//temperature of combustion chamber in K
P4=8*10^5;//pressure of air after compression in Pa
P6=P4;
T8=1300;//temperature after reheating in K
P8=4*10^5;//pressure after expansion in Pa
P7=P8;
C=42000;//heating value of fuel in KJ/kg
y=1.4;//expansion constant
ne=0.8;//effectiveness of regenerator
Cp=1.0032;//specific heat at constant pressure in KJ/kg K
disp("for process 1-2,")
disp("T2/T1=(P2/P1)^((y-1)/y)")
disp("so T2=T1*(P2/P1)^((y-1)/y) in K")
T2=T1*(P2/P1)^((y-1)/y)
disp("for process 3-4,")
disp("T4/T3=(P4/P3)^((y-1)/y)")
disp("so T4=T3*(P4/P3)^((y-1)/y) in K")
T4=T3*(P4/P3)^((y-1)/y)
disp("for process 6-7,")
disp("T7/T6=(P7/P6)^((y-1)/y)")
disp("so T7=T6*(P7/P6)^((y-1)/y) in K")
T7=T6*(P7/P6)^((y-1)/y)
disp("for process 8-9,")
disp("T9/T8=(P9/P8)^((y-1)/y)")
disp("T9=T8*(P9/P8)^((y-1)/y) in K")
T9=T8*(P9/P8)^((y-1)/y)
disp("in regenerator,effectiveness=(T5-T4)/(T9-T4)")
disp("T5=T4+(ne*(T9-T4))in K")
T5=T4+(ne*(T9-T4))
disp("compressor work per kg air,Wc=Cp*(T2-T1)+Cp*(T4-T3) in KJ/kg")
Wc=Cp*(T2-T1)+Cp*(T4-T3)
disp("turbine work per kg air,Wt=Cp*(T6-T7)+Cp*(T8-T9)in KJ/kg")
Wt=Cp*(T6-T7)+Cp*(T8-T9)
disp("heat added per kg air,q_add=Cp*(T6-T5)+Cp*(T8-T7)in KJ/kg")
q_add=Cp*(T6-T5)+Cp*(T8-T7)
disp("total fuel required per kg of air=q_add/C")
q_add/C
disp("net work,W_net=Wt-Wc in KJ/kg")
W_net=Wt-Wc
disp("cycle thermal efficiency,n=W_net/q_add")
n=W_net/q_add
disp("in percentage")
n=n*100
disp("fuel required per kg air in combustion chamber 1,Cp*(T8-T7)/C")
Cp*(T8-T7)/C
disp("fuel required per kg air in combustion chamber2,Cp*(T6-T5)/C")
Cp*(T6-T5)/C
disp("so fuel-air ratio in two combustion chambers=0.0126,0.0056")
disp("total turbine work=660.85 KJ/kg")
disp("cycle thermal efficiency=58.9%")
disp("NOTE=>In this question,fuel required per kg air in combustion chamber 1 and 2 are calculated wrong in book,so it is corrected above and answers vary accordingly. ")
|
d99b9fca22f441004ed69aeaf8998381343313a3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1967/CH11/EX11.9/11_9.sce | 31a636e343183df40b134be3ef113b9c16e84616 | [] | 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 | 11_9.sce | clc
//initialisation of variables
clear
T= 25 //C
R= 8.314*10^7 //ergs /mol K
st= 72 //dynes cm^-1
mv= 18 //cc mole^-1
r= 10^-5 //cm
p= 23.76 //cm
//CALCULATIONS
p1= p*10^(2*st*mv/(r*R*2.303*(273.2+T)))
//RESULTS
printf ('vapour pressure = %.2f mm',p1)
|
7c648fef268b8787e8fbe629100ecdd6f44b6828 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2411/CH3/EX3.d.314/Ex3d_14.sce | d86c254c3293a087ffe73b0a064a2bf185db6090 | [] | 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 | 414 | sce | Ex3d_14.sce | // Scilab Code Ex3d.14: Page-209 (2008)
clc; clear;
lambda = 5890e-008; // Wavelength of light, cm
n = 3; // Order of diffraction
d_lambda = 6e-008; // Difference in wavelengths of D1 and D2 lines, cm
N = lambda/(n*d_lambda); // Maximum number of lines of a grating
printf("\nThe maximum number of lines of the grating = %d", N);
// Result
// The maximum number of lines of the grating = 327 |
ecdfc334ca074e2ed9afa1cdf160040be2d88fab | 449d555969bfd7befe906877abab098c6e63a0e8 | /3020/CH18/EX18.11/ex18_11.sce | be9ac5cd62975330c0f6e4cf45684ff92c552969 | [] | 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 | 305 | sce | ex18_11.sce | clc;
clear all;
Eg=1.12;//bandgap in eV
mo=9.1e-31;//mass of electron
me=0.12*mo;//effective mass of electron
mh=0.28*mo;//effective mass of hole
k=1.38e-23;//boltzman constant
T=300;//temperature in K
Ef=(Eg/2)+(3*k*T/4)*log(mh/me);//fermi level at 300K
disp('eV',Ef,'fermi level at 300K is:')
|
c5afdfaba565565d1033fcc9a993da4605ea89cd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3422/CH4/EX4.6/Ex4_6.sce | 321f4f6885749537fdda27be723e06f2ca198219 | [] | 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 | 151 | sce | Ex4_6.sce | //Example 4.6, Page no 92
clc
disp("Part ii")
new_sin_delta=sind(45)/.95
delta=asind(new_sin_delta)
printf("\n The value of delta is %f degree ",delta) |
9df3b64200dfcc1e63a686373c7ecf5d059489b2 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/form-split/GOLD-TEST/frm.tst | f688e9568ddab7ac6f40375ca538e71abaa4ed8b | [] | 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,370 | tst | frm.tst | enconvenencier enconvenences V;SBJV;SG;2;PRS
escarter escarterai V;IND;SG;1;FUT;LGSPEC1
finir finiront V;IND;PL;3;FUT
lurrer lurrassiez V;IPFV;SBJV;PL;2;PST
charger chargeassent V;IPFV;SBJV;PL;3;PST
monter montois V;IPFV;IND;SG;1;PST;LGSPEC1
voller volleroit V;COND;SG;3;LGSPEC1
pecher pechez V;IND;PL;2;PRS
operer operasse V;IPFV;SBJV;SG;1;PST
celer celerez V;IND;PL;2;FUT
courroucer courrouceroient V;COND;PL;3;LGSPEC1
combiner combinassiez V;IPFV;SBJV;PL;2;PST
contribuer contribueroient V;COND;PL;3;LGSPEC1
baisler baisle V;SBJV;SG;3;PRS
haster haste V;IND;SG;3;PRS
deffier deffiions V;IPFV;IND;PL;1;PST;LGSPEC1
courroucer courrouçons V;IMP;PL;1
lever levent V;IND;PL;3;PRS
verifier verifieront V;IND;PL;3;FUT
acoustrer acoustrerois V;COND;SG;1;LGSPEC1
cacher cache V;IMP;SG;2
participer participois V;IPFV;IND;SG;2;PST;LGSPEC1
reverer revereray V;IND;SG;1;FUT;LGSPEC2
esperer espere V;SBJV;SG;1;PRS
robber robbassiez V;IPFV;SBJV;PL;2;PST
pourforcer pourforceroyt V;COND;SG;3;LGSPEC2
esvanter esvanterois V;COND;SG;2;LGSPEC1
detester detesteroient V;COND;PL;3;LGSPEC1
travailler travaillois V;IPFV;IND;SG;2;PST;LGSPEC1
disner disniez V;IPFV;IND;PL;2;PST;LGSPEC1
alonger alongeassions V;IPFV;SBJV;PL;1;PST
tourmenter tourmente V;IMP;SG;2
flechir fleschissoient V;IPFV;IND;PL;3;PST;LGSPEC1
chevauchier chevauche V;IND;SG;3;PRS
entredemander vous entredemandez V;SBJV;PL;2;PRS
aguyser aguysastes V;PFV;IND;PL;2;PST
geller gelle V;IND;SG;3;PRS
empescher empescherent V;PFV;IND;PL;3;PST
soulaiger soulaiges V;SBJV;SG;2;PRS
faire ferois V;COND;SG;2;LGSPEC1
fomenter fomente V;SBJV;SG;1;PRS
dilater dilations V;IPFV;IND;PL;1;PST;LGSPEC1
presupposer presupposassent V;IPFV;SBJV;PL;3;PST
explicquer explicqueroient V;COND;PL;3;LGSPEC1
ayder ayderoyent V;COND;PL;3;LGSPEC2
retourner retourneroient V;COND;PL;3;LGSPEC1
arrengier arrengeoyent V;IPFV;IND;PL;3;PST;LGSPEC2
affier affies V;IND;SG;2;PRS
alimenter alimentoyent V;IPFV;IND;PL;3;PST;LGSPEC2
superseder supersederions V;COND;PL;1;LGSPEC1
desployer desployer V;NFIN
aquitter aquittoys V;IPFV;IND;SG;2;PST;LGSPEC2
quester questes V;SBJV;SG;2;PRS
eslancer eslançoit V;IPFV;IND;SG;3;PST;LGSPEC1
esguiser esguisent V;SBJV;PL;3;PRS
recuperer recuperastes V;PFV;IND;PL;2;PST
reguarder reguarde V;SBJV;SG;1;PRS
aymer aymassions V;IPFV;SBJV;PL;1;PST
rejecter rejectez V;SBJV;PL;2;PRS
demesler demeslera V;IND;SG;3;FUT
noter notez V;IND;PL;2;PRS
deifier deifiois V;IPFV;IND;SG;1;PST;LGSPEC1
veiller veillasses V;IPFV;SBJV;SG;2;PST
praeparer praepara V;PFV;IND;SG;3;PST
getter gettois V;IPFV;IND;SG;1;PST;LGSPEC1
songer songe V;IND;SG;1;PRS
accompaigner accompaignez V;SBJV;PL;2;PRS
lescher leschons V;IMP;PL;1
aorner aorneroient V;COND;PL;3;LGSPEC1
renouveller renouvelleroyent V;COND;PL;3;LGSPEC2
ottroyer ottroye V;SBJV;SG;1;PRS
alonger alonges V;IND;SG;2;PRS
rotter rottassent V;IPFV;SBJV;PL;3;PST
raporter raportons V;IMP;PL;1
penser penseras V;IND;SG;2;FUT
iouer iouez V;IND;PL;2;PRS
embler embleroient V;COND;PL;3;LGSPEC1
escryer escryes V;SBJV;SG;2;PRS
poiser poises V;SBJV;SG;2;PRS
renger rengeryez V;COND;PL;2;LGSPEC2
retourner retourneroys V;COND;SG;2;LGSPEC2
reiecter reiecteras V;IND;SG;2;FUT
seiourner seiournez V;IMP;PL;2
condescendre condescendrons V;IND;PL;1;FUT
explicquer explicquons V;IND;PL;1;PRS
rotter rotteroys V;COND;SG;2;LGSPEC2
enconvenencier enconvenencier V;NFIN
escouiller escouille V;SBJV;SG;3;PRS
desmeler desmelas V;PFV;IND;SG;2;PST
esgarer esgarerai V;IND;SG;1;FUT;LGSPEC1
mocquer mocquerions V;COND;PL;1;LGSPEC1
edifier edifioys V;IPFV;IND;SG;1;PST;LGSPEC2
habiter habiteray V;IND;SG;1;FUT;LGSPEC2
contreroller contrerollons V;IMP;PL;1
inquieter inquieteroyent V;COND;PL;3;LGSPEC2
esveigler esveigloient V;IPFV;IND;PL;3;PST;LGSPEC1
demourer demoura V;PFV;IND;SG;3;PST
combiner combinons V;SBJV;PL;1;PRS
denunchier denunchions V;SBJV;PL;1;PRS
declairer declairoyt V;IPFV;IND;SG;3;PST;LGSPEC2
cesser cessoit V;IPFV;IND;SG;3;PST;LGSPEC1
seiourner seiourne V;IND;SG;1;PRS
encommencer encommençoys V;IPFV;IND;SG;2;PST;LGSPEC2
robber robbasse V;IPFV;SBJV;SG;1;PST
espargner espargnastes V;PFV;IND;PL;2;PST
presumer presumoyt V;IPFV;IND;SG;3;PST;LGSPEC2
plier plierai V;IND;SG;1;FUT;LGSPEC1
cauterizer cauterizassiez V;IPFV;SBJV;PL;2;PST
flotter flotteroient V;COND;PL;3;LGSPEC1
pourmener pourmenoyent V;IPFV;IND;PL;3;PST;LGSPEC2
supposer supposeray V;IND;SG;1;FUT;LGSPEC2
hebergier hebergeoyent V;IPFV;IND;PL;3;PST;LGSPEC2
minorer minorera V;IND;SG;3;FUT
courrouchier courrouchoys V;IPFV;IND;SG;1;PST;LGSPEC2
trouver trouveroys V;COND;SG;1;LGSPEC2
contribuer contribuois V;IPFV;IND;SG;2;PST;LGSPEC1
esguarer esguarons V;IMP;PL;1
moustrer moustreront V;IND;PL;3;FUT
porter portoys V;IPFV;IND;SG;1;PST;LGSPEC2
cacher cachons V;SBJV;PL;1;PRS
mercyer mercyoyt V;IPFV;IND;SG;3;PST;LGSPEC2
asseurer asseuriez V;IPFV;IND;PL;2;PST;LGSPEC1
debaracer debaracerai V;IND;SG;1;FUT;LGSPEC1
surnommer surnommons V;SBJV;PL;1;PRS
couster coustast V;IPFV;SBJV;SG;3;PST
soubhaitter soubhaitteroit V;COND;SG;3;LGSPEC1
penetrer penetre V;SBJV;SG;1;PRS
persuader persuadasmes V;PFV;IND;PL;1;PST
fortiffier fortiffions V;IMP;PL;1
r'asseurer r'asseurons V;IND;PL;1;PRS
praesider praesidoyent V;IPFV;IND;PL;3;PST;LGSPEC2
esbaucher esbauchera V;IND;SG;3;FUT
occurrer occurrasmes V;PFV;IND;PL;1;PST
contribuer contribuerois V;COND;SG;1;LGSPEC1
bransler branslasmes V;PFV;IND;PL;1;PST
entituler entitulasses V;IPFV;SBJV;SG;2;PST
quiter quiteroyt V;COND;SG;3;LGSPEC2
gaber gabassent V;IPFV;SBJV;PL;3;PST
consyderer consyderoyent V;IPFV;IND;PL;3;PST;LGSPEC2
estinceller estincellasmes V;PFV;IND;PL;1;PST
caper capons V;SBJV;PL;1;PRS
accoustumer accoustumoit V;IPFV;IND;SG;3;PST;LGSPEC1
escouter escouter V;NFIN
trancher tranchois V;IPFV;IND;SG;2;PST;LGSPEC1
desplacer desplaceroit V;COND;SG;3;LGSPEC1
preceder precedasses V;IPFV;SBJV;SG;2;PST
picquer picquasmes V;PFV;IND;PL;1;PST
finer fineryez V;COND;PL;2;LGSPEC2
monter monteryez V;COND;PL;2;LGSPEC2
deslacer delacerois V;COND;SG;2;LGSPEC1
essilier essilierai V;IND;SG;1;FUT;LGSPEC1
entrencontrer entrencontryez V;IPFV;IND;PL;2;PST;LGSPEC2
preferer prefera V;PFV;IND;SG;3;PST
praesenter praesentiez V;IPFV;IND;PL;2;PST;LGSPEC1
accompaigner accompaignasmes V;PFV;IND;PL;1;PST
chevauchier chevauchoit V;IPFV;IND;SG;3;PST;LGSPEC1
occuper occuperois V;COND;SG;1;LGSPEC1
moderer moderions V;IPFV;IND;PL;1;PST;LGSPEC1
regretter regretteroys V;COND;SG;2;LGSPEC2
aerer aerois V;IPFV;IND;SG;1;PST;LGSPEC1
descouchier descouchasse V;IPFV;SBJV;SG;1;PST
tuer tuassions V;IPFV;SBJV;PL;1;PST
desconseiller desconseilleryez V;COND;PL;2;LGSPEC2
offencer offencer V;NFIN
surnommer surnommerois V;COND;SG;2;LGSPEC1
songer songeroys V;COND;SG;2;LGSPEC2
aorner aornera V;IND;SG;3;FUT
baptizer baptizois V;IPFV;IND;SG;2;PST;LGSPEC1
remercyer remercyez V;SBJV;PL;2;PRS
enconcher enconche V;SBJV;SG;3;PRS
deschevaucher deschevaucherons V;IND;PL;1;FUT
auser auseroyt V;COND;SG;3;LGSPEC2
executer executasmes V;PFV;IND;PL;1;PST
aerer aererai V;IND;SG;1;FUT;LGSPEC1
exposer exposyez V;IPFV;IND;PL;2;PST;LGSPEC2
guarder guardassent V;IPFV;SBJV;PL;3;PST
accomplir accompliront V;IND;PL;3;FUT
recommander recommanderai V;IND;SG;1;FUT;LGSPEC1
estouffer estouffent V;SBJV;PL;3;PRS
desmonter desmontons V;SBJV;PL;1;PRS
enpoisonner enpoisonne V;SBJV;SG;3;PRS
representer representoyent V;IPFV;IND;PL;3;PST;LGSPEC2
traittier traittastes V;PFV;IND;PL;2;PST
asseurer asseuras V;PFV;IND;SG;2;PST
assister assistast V;IPFV;SBJV;SG;3;PST
resigner resignasse V;IPFV;SBJV;SG;1;PST
guarder guarderay V;IND;SG;1;FUT;LGSPEC2
desarmer desarmeroys V;COND;SG;1;LGSPEC2
avoyr ayez V;SBJV;PL;2;PRS
presupposer presuppose V;IMP;SG;2
gaber gabe V;IND;SG;1;PRS
iouer iouerons V;IND;PL;1;FUT
esmerveillier esmerveilla V;PFV;IND;SG;1;PST
effreer effreerois V;COND;SG;2;LGSPEC1
espargner espargne V;IND;SG;1;PRS
empenser empenseroyent V;COND;PL;3;LGSPEC2
ronfler ronflas V;PFV;IND;SG;2;PST
desadvouer desadvouez V;IND;PL;2;PRS
esvertuer esvertuasmes V;PFV;IND;PL;1;PST
huer huois V;IPFV;IND;SG;2;PST;LGSPEC1
arrester arrestoyt V;IPFV;IND;SG;3;PST;LGSPEC2
coniecturer coniecturastes V;PFV;IND;PL;2;PST
garder gardyez V;IPFV;IND;PL;2;PST;LGSPEC2
baptizer baptizeroit V;COND;SG;3;LGSPEC1
hebergier hebergierois V;COND;SG;2;LGSPEC1
prosperer prospereroient V;COND;PL;3;LGSPEC1
uriner urine V;IND;SG;1;PRS
singler singloyt V;IPFV;IND;SG;3;PST;LGSPEC2
ordonner ordonne V;SBJV;SG;3;PRS
aler ira V;IND;SG;3;FUT;LGSPEC1
aorner aornois V;IPFV;IND;SG;2;PST;LGSPEC1
dancer dançoyent V;IPFV;IND;PL;3;PST;LGSPEC2
espargner espargnois V;IPFV;IND;SG;2;PST;LGSPEC1
praesider praesidez V;IMP;PL;2
amer ames V;IND;SG;2;PRS
parler parlions V;IPFV;IND;PL;1;PST;LGSPEC1
explorer exploreryez V;COND;PL;2;LGSPEC2
iecter iectoyt V;IPFV;IND;SG;3;PST;LGSPEC2
pasturer pasturoit V;IPFV;IND;SG;3;PST;LGSPEC1
advouer advouons V;IMP;PL;1
merveiller merveillerez V;IND;PL;2;FUT
estre serez V;IND;PL;2;FUT
participer participastes V;PFV;IND;PL;2;PST
eslancer eslancez V;IMP;PL;2
recorder recorderons V;IND;PL;1;FUT
trouver trouvoyent V;IPFV;IND;PL;3;PST;LGSPEC2
espoventer espoventeroys V;COND;SG;1;LGSPEC2
armoier armoierions V;COND;PL;1;LGSPEC1
deslyer deslyons V;IND;PL;1;PRS
quitter quittoys V;IPFV;IND;SG;2;PST;LGSPEC2
arroier arroia V;PFV;IND;SG;1;PST
tumber tumbons V;SBJV;PL;1;PRS
desinfecter desinfectoyent V;IPFV;IND;PL;3;PST;LGSPEC2
amadouer amadouasse V;IPFV;SBJV;SG;1;PST
guider guidons V;SBJV;PL;1;PRS
soucyer soucyasses V;IPFV;SBJV;SG;2;PST
uriner urinerois V;COND;SG;2;LGSPEC1
tomber tomba V;PFV;IND;SG;1;PST
visiter visiteroys V;COND;SG;2;LGSPEC2
solliciter sollicitions V;IPFV;IND;PL;1;PST;LGSPEC1
declairer declairons V;IND;PL;1;PRS
rouiller rouillast V;IPFV;SBJV;SG;3;PST
haittier haittassent V;IPFV;SBJV;PL;3;PST
escumer escumoys V;IPFV;IND;SG;1;PST;LGSPEC2
alonger alongeoit V;IPFV;IND;SG;3;PST;LGSPEC1
bayser baysent V;IND;PL;3;PRS
allaicter allaictons V;IMP;PL;1
surnommer surnommerez V;IND;PL;2;FUT
contrepoiser contrepoiseroys V;COND;SG;2;LGSPEC2
deffier deffias V;PFV;IND;SG;2;PST
repraesenter repraesenterez V;IND;PL;2;FUT
saulter saultons V;SBJV;PL;1;PRS
resider residyez V;IPFV;IND;PL;2;PST;LGSPEC2
travailler travailleront V;IND;PL;3;FUT
iouer iouerez V;IND;PL;2;FUT
consyderer consydererois V;COND;SG;1;LGSPEC1
apuyer apuyeray V;IND;SG;1;FUT;LGSPEC2
presumer presumes V;IND;SG;2;PRS
lescher leschent V;IND;PL;3;PRS
gaigner gaigneryons V;COND;PL;1;LGSPEC2
superseder supersedent V;IND;PL;3;PRS
leicher leichoit V;IPFV;IND;SG;3;PST;LGSPEC1
iouer ioueryons V;COND;PL;1;LGSPEC2
reserver reservez V;SBJV;PL;2;PRS
revencher revenchassent V;IPFV;SBJV;PL;3;PST
raporter raportions V;IPFV;IND;PL;1;PST;LGSPEC1
desrouter desrouteras V;IND;SG;2;FUT
deschevaucher deschevauchoient V;IPFV;IND;PL;3;PST;LGSPEC1
desregler desregliez V;IPFV;IND;PL;2;PST;LGSPEC1
bayser bayserai V;IND;SG;1;FUT;LGSPEC1
espier espieroient V;COND;PL;3;LGSPEC1
iolyer iolyeras V;IND;SG;2;FUT
cabasser cabasseras V;IND;SG;2;FUT
esbaucher esbauchoyt V;IPFV;IND;SG;3;PST;LGSPEC2
cercher cercherois V;COND;SG;2;LGSPEC1
arrengier arrengierois V;COND;SG;2;LGSPEC1
souspirer souspiroit V;IPFV;IND;SG;3;PST;LGSPEC1
retirer retirasses V;IPFV;SBJV;SG;2;PST
ieuner ieuneroyent V;COND;PL;3;LGSPEC2
soumectre soumectroys V;COND;SG;1;LGSPEC2
desancrer desancras V;PFV;IND;SG;2;PST
assister assistons V;SBJV;PL;1;PRS
blesser blesseroys V;COND;SG;2;LGSPEC2
oublyer oublyiez V;IPFV;IND;PL;2;PST;LGSPEC1
affamer affama V;PFV;IND;SG;1;PST
trancher tranchasmes V;PFV;IND;PL;1;PST
diviner divinons V;SBJV;PL;1;PRS
ottroyer ottroyera V;IND;SG;3;FUT
transgloutir transgloutiront V;IND;PL;3;FUT
reculler recullez V;SBJV;PL;2;PRS
coucher couchons V;SBJV;PL;1;PRS
escapper escappois V;IPFV;IND;SG;2;PST;LGSPEC1
ozer ozyons V;IPFV;IND;PL;1;PST;LGSPEC2
desborder desbordasse V;IPFV;SBJV;SG;1;PST
desrouter desrouterois V;COND;SG;2;LGSPEC1
macter mactastes V;PFV;IND;PL;2;PST
preparer preparons V;SBJV;PL;1;PRS
resister resistyons V;IPFV;IND;PL;1;PST;LGSPEC2
monstrer monstrois V;IPFV;IND;SG;1;PST;LGSPEC1
rincer rinçons V;SBJV;PL;1;PRS
employer employiez V;IPFV;IND;PL;2;PST;LGSPEC1
estre sui V;IND;SG;1;PRS;LGSPEC3
geller gelleroys V;COND;SG;1;LGSPEC2
fumer fumerons V;IND;PL;1;FUT
prattiquer prattiquent V;IND;PL;3;PRS
desregler desregle V;IND;SG;1;PRS
desborder desborderons V;IND;PL;1;FUT
enhorter enhortois V;IPFV;IND;SG;2;PST;LGSPEC1
descouchier descouchierons V;IND;PL;1;FUT
raenchonner raenchonneroys V;COND;SG;2;LGSPEC2
esloigner esloigneroyt V;COND;SG;3;LGSPEC2
abandonner abandonnoyt V;IPFV;IND;SG;3;PST;LGSPEC2
expuyser expuysyons V;IPFV;IND;PL;1;PST;LGSPEC2
desrober desrobons V;SBJV;PL;1;PRS
raenchonner raenchonneroys V;COND;SG;1;LGSPEC2
baisler baislent V;IND;PL;3;PRS
cesser cessoyt V;IPFV;IND;SG;3;PST;LGSPEC2
subiecter subiecterons V;IND;PL;1;FUT
chercher chercheryons V;COND;PL;1;LGSPEC2
regretter regretterons V;IND;PL;1;FUT
prier priions V;IPFV;IND;PL;1;PST;LGSPEC1
occurrer occurrez V;SBJV;PL;2;PRS
melancholier melancholioyent V;IPFV;IND;PL;3;PST;LGSPEC2
ployer ployerois V;COND;SG;1;LGSPEC1
debaracer debaraçoys V;IPFV;IND;SG;2;PST;LGSPEC2
praeparer praepare V;IND;SG;3;PRS
representer representions V;IPFV;IND;PL;1;PST;LGSPEC1
pourmener pourmene V;SBJV;SG;1;PRS
fortiffier fortiffiasse V;IPFV;SBJV;SG;1;PST
adviser advisyons V;IPFV;IND;PL;1;PST;LGSPEC2
vengier vengiez V;SBJV;PL;2;PRS
evaporer evaporeryons V;COND;PL;1;LGSPEC2
trousser troussasmes V;PFV;IND;PL;1;PST
mensongier mensongea V;PFV;IND;SG;3;PST
songer songerez V;IND;PL;2;FUT
regretter regretterois V;COND;SG;2;LGSPEC1
iolyer iolyas V;PFV;IND;SG;2;PST
atacher atacheriez V;COND;PL;2;LGSPEC1
r'asseurer r'asseurois V;IPFV;IND;SG;2;PST;LGSPEC1
desieuner desieune V;SBJV;SG;1;PRS
baster basterois V;COND;SG;1;LGSPEC1
essilier essilent V;IND;PL;3;PRS
coniecturer coniecturasses V;IPFV;SBJV;SG;2;PST
haittier haittastes V;PFV;IND;PL;2;PST
mascher maschasse V;IPFV;SBJV;SG;1;PST
desieuner desieuneryons V;COND;PL;1;LGSPEC2
prattiquer prattique V;IND;SG;3;PRS
approuchier approuchions V;IND;PL;1;PRS
avanchier avanchast V;IPFV;SBJV;SG;3;PST
desmettre desmis V;PFV;IND;SG;1;PST
soupper soupperay V;IND;SG;1;FUT;LGSPEC2
ayder aydas V;PFV;IND;SG;2;PST
rebarber rebarberez V;IND;PL;2;FUT
enconcher enconchez V;SBJV;PL;2;PRS
transgloutir transgloutist V;IPFV;SBJV;SG;3;PST
temprer temprerois V;COND;SG;2;LGSPEC1
renger rengeront V;IND;PL;3;FUT
veigler veigloient V;IPFV;IND;PL;3;PST;LGSPEC1
escorner escornerions V;COND;PL;1;LGSPEC1
pasturer pastura V;PFV;IND;SG;3;PST
courrouchier courrouchions V;IND;PL;1;PRS
saulver saulvois V;IPFV;IND;SG;2;PST;LGSPEC1
toquer toquerez V;IND;PL;2;FUT
tremper trempe V;IND;SG;3;PRS
assieger assieges V;IND;SG;2;PRS
deshonnourer deshonnourois V;IPFV;IND;SG;1;PST;LGSPEC1
rouller roullerois V;COND;SG;1;LGSPEC1
toucher touchastes V;PFV;IND;PL;2;PST
armoier armoions V;IMP;PL;1
interpreter interpreter V;NFIN
frapper frappoyt V;IPFV;IND;SG;3;PST;LGSPEC2
entrencontrer nousentrencontrerions V;COND;PL;1;LGSPEC1
soubhaitter soubhaittent V;IND;PL;3;PRS
estudier estudiast V;IPFV;SBJV;SG;3;PST
regretter regretteryons V;COND;PL;1;LGSPEC2
desmonter desmontois V;IPFV;IND;SG;2;PST;LGSPEC1
gangler gangleryez V;COND;PL;2;LGSPEC2
desconseiller desconseillez V;IND;PL;2;PRS
avoyr eussions V;IPFV;SBJV;PL;1;PST
desprisonner desprisonna V;PFV;IND;SG;3;PST
vengier vengeassent V;IPFV;SBJV;PL;3;PST
cesser cessent V;IND;PL;3;PRS
prattiquer prattiquyez V;IPFV;IND;PL;2;PST;LGSPEC2
monstrer monstreryez V;COND;PL;2;LGSPEC2
escouiller escouillassions V;IPFV;SBJV;PL;1;PST
desnouer desnoueroit V;COND;SG;3;LGSPEC1
haster hastez V;IMP;PL;2
armoier armoiez V;IND;PL;2;PRS
saulver saulve V;IND;SG;3;PRS
mouscher mouschiez V;IPFV;IND;PL;2;PST;LGSPEC1
perser perses V;IND;SG;2;PRS
accomplir accomplismes V;PFV;IND;PL;1;PST
remercyer remercyerons V;IND;PL;1;FUT
mescler mescloys V;IPFV;IND;SG;2;PST;LGSPEC2
houer houerois V;COND;SG;1;LGSPEC1
redrechier redrechiez V;IMP;PL;2
reigler reigleront V;IND;PL;3;FUT
denunchier denunchioyent V;IPFV;IND;PL;3;PST;LGSPEC2
fomenter fomentastes V;PFV;IND;PL;2;PST
engroisser engroissoit V;IPFV;IND;SG;3;PST;LGSPEC1
resigner resignois V;IPFV;IND;SG;2;PST;LGSPEC1
employer employasses V;IPFV;SBJV;SG;2;PST
condescendre condescendiez V;IPFV;IND;PL;2;PST;LGSPEC2
explorer explorez V;SBJV;PL;2;PRS
emboucher emboucherois V;COND;SG;1;LGSPEC1
ieuner ieuneras V;IND;SG;2;FUT
fouragier fourageassiez V;IPFV;SBJV;PL;2;PST
escorcher escorcherez V;IND;PL;2;FUT
exstirper exstirpyons V;IPFV;IND;PL;1;PST;LGSPEC2
deschirer deschireroys V;COND;SG;1;LGSPEC2
cesser cessasse V;IPFV;SBJV;SG;1;PST
deschirer deschire V;SBJV;SG;1;PRS
renfler renflera V;IND;SG;3;FUT
coniecturer coniecturas V;PFV;IND;SG;2;PST
desmeler desmeleroient V;COND;PL;3;LGSPEC1
offencer offençassiez V;IPFV;SBJV;PL;2;PST
estimer estimassent V;IPFV;SBJV;PL;3;PST
fiancer fiancerois V;COND;SG;2;LGSPEC1
desgorger desgorge V;SBJV;SG;3;PRS
nettoyer nettoyeriez V;COND;PL;2;LGSPEC1
delaisser delaissassent V;IPFV;SBJV;PL;3;PST
ozer ozoyent V;IPFV;IND;PL;3;PST;LGSPEC2
herrier herrie V;IND;SG;1;PRS
faucer faucera V;IND;SG;3;FUT
esventer esventyez V;IPFV;IND;PL;2;PST;LGSPEC2
appeller appellera V;IND;SG;3;FUT
affermer affermoient V;IPFV;IND;PL;3;PST;LGSPEC1
commencer commencer V;NFIN
demesler demeslerai V;IND;SG;1;FUT;LGSPEC1
redrechier redrechierois V;COND;SG;1;LGSPEC1
conquester conquestasses V;IPFV;SBJV;SG;2;PST
blesser blessoit V;IPFV;IND;SG;3;PST;LGSPEC1
menasser menasseroient V;COND;PL;3;LGSPEC1
viser visiez V;IPFV;IND;PL;2;PST;LGSPEC1
gaigner gaigne V;SBJV;SG;1;PRS
monter montez V;SBJV;PL;2;PRS
compter comptent V;SBJV;PL;3;PRS
revencher revenche V;IMP;SG;2
traicter tractast V;IPFV;SBJV;SG;3;PST
apatir apatit V;IND;SG;3;PRS
redrechier redrecha V;PFV;IND;SG;3;PST
hebergier hebergieroyt V;COND;SG;3;LGSPEC2
desancrer desancrerons V;IND;PL;1;FUT
adiouster adiousterions V;COND;PL;1;LGSPEC1
estrangler estrangle V;IMP;SG;2
espoventer espoventent V;IND;PL;3;PRS
contreroller contrerollerent V;PFV;IND;PL;3;PST
recorder recordes V;SBJV;SG;2;PRS
exstirper exstirperoyt V;COND;SG;3;LGSPEC2
atacher atacheront V;IND;PL;3;FUT
fomenter fomentoient V;IPFV;IND;PL;3;PST;LGSPEC1
tremper tremperai V;IND;SG;1;FUT;LGSPEC1
retourner retournes V;IND;SG;2;PRS
cointoier cointoiez V;IND;PL;2;PRS
traveillier traveillieray V;IND;SG;1;FUT;LGSPEC2
endommaiger endommaigeassent V;IPFV;SBJV;PL;3;PST
esgarer esgares V;IND;SG;2;PRS
reguarder reguarder V;NFIN
deliberer deliberera V;IND;SG;3;FUT
executer executerois V;COND;SG;2;LGSPEC1
ayder ayderois V;COND;SG;1;LGSPEC1
reserver reserve V;IMP;SG;2
regarder regarde V;IND;SG;1;PRS
porter portyons V;IPFV;IND;PL;1;PST;LGSPEC2
engroisser engroissons V;SBJV;PL;1;PRS
respirer respiroyent V;IPFV;IND;PL;3;PST;LGSPEC2
armoier armoieroit V;COND;SG;3;LGSPEC1
chercher cherchassions V;IPFV;SBJV;PL;1;PST
penetrer penetrez V;IMP;PL;2
subiecter subiectassions V;IPFV;SBJV;PL;1;PST
escouiller escouillois V;IPFV;IND;SG;1;PST;LGSPEC1
desregler desreglent V;IND;PL;3;PRS
empieger empiege V;IMP;SG;2
courouchier courouchasse V;IPFV;SBJV;SG;1;PST
fomenter fomenteroyent V;COND;PL;3;LGSPEC2
desfaire desfaisoient V;IPFV;IND;PL;3;PST;LGSPEC1
preparer preparerions V;COND;PL;1;LGSPEC1
pourmener pourmeneroys V;COND;SG;1;LGSPEC2
desbaucher desbaucheroit V;COND;SG;3;LGSPEC1
reiecter reiectoyent V;IPFV;IND;PL;3;PST;LGSPEC2
despencer despencerent V;PFV;IND;PL;3;PST
presumer presumastes V;PFV;IND;PL;2;PST
pourmener pourmener V;NFIN
accoustumer accoustume V;SBJV;SG;3;PRS
viser visera V;IND;SG;3;FUT
mescler mesclyons V;IPFV;IND;PL;1;PST;LGSPEC2
consyderer consyderes V;SBJV;SG;2;PRS
deslacer delaceroyt V;COND;SG;3;LGSPEC2
aracher aracherez V;IND;PL;2;FUT
robber robberoient V;COND;PL;3;LGSPEC1
laisser laisseroient V;COND;PL;3;LGSPEC1
deliberer deliberasses V;IPFV;SBJV;SG;2;PST
enpoisonner enpoisonnois V;IPFV;IND;SG;2;PST;LGSPEC1
escapper escapperoyt V;COND;SG;3;LGSPEC2
deliberer deliberes V;IND;SG;2;PRS
ottroyer ottroyes V;IND;SG;2;PRS
presumer presume V;IND;SG;3;PRS
enchasser enchassasse V;IPFV;SBJV;SG;1;PST
riffler rifflois V;IPFV;IND;SG;2;PST;LGSPEC1
aboscher aboscha V;PFV;IND;SG;1;PST
honnourer honnourez V;SBJV;PL;2;PRS
herrier herriasses V;IPFV;SBJV;SG;2;PST
provocquer provocqua V;PFV;IND;SG;1;PST
demander demanderoit V;COND;SG;3;LGSPEC1
destacher destacheroit V;COND;SG;3;LGSPEC1
trouver trouve V;IND;SG;1;PRS
subiuguier subiuguieroys V;COND;SG;2;LGSPEC2
conseiller conseilleryons V;COND;PL;1;LGSPEC2
ozer ozerons V;IND;PL;1;FUT
toquer toquyons V;IPFV;IND;PL;1;PST;LGSPEC2
asseurer asseurez V;IMP;PL;2
proteger protegeons V;IMP;PL;1
rebarber rebarboys V;IPFV;IND;SG;1;PST;LGSPEC2
ietter iettoys V;IPFV;IND;SG;2;PST;LGSPEC2
obliger oblige V;IND;SG;1;PRS
entituler entitula V;PFV;IND;SG;1;PST
prattiquer prattiquoyent V;IPFV;IND;PL;3;PST;LGSPEC2
chanter chanta V;PFV;IND;SG;3;PST
tourner tournera V;IND;SG;3;FUT
esternuer esternuoyent V;IPFV;IND;PL;3;PST;LGSPEC2
desborder desborder V;NFIN
demander demandoit V;IPFV;IND;SG;3;PST;LGSPEC1
mouscher mouscherez V;IND;PL;2;FUT
proclamer proclamoient V;IPFV;IND;PL;3;PST;LGSPEC1
empenser empenseroyt V;COND;SG;3;LGSPEC2
compter comptes V;IND;SG;2;PRS
essayer essayes V;IND;SG;2;PRS
menasser menassasses V;IPFV;SBJV;SG;2;PST
presumer presumes V;SBJV;SG;2;PRS
reserver reserveroys V;COND;SG;2;LGSPEC2
enchargier enchargieroys V;COND;SG;2;LGSPEC2
posseder possederont V;IND;PL;3;FUT
estudier estudiyons V;IPFV;IND;PL;1;PST;LGSPEC2
assister assisteryez V;COND;PL;2;LGSPEC2
esgaler esgalent V;IND;PL;3;PRS
eschieller esciellerois V;COND;SG;2;LGSPEC1
escumer escumois V;IPFV;IND;SG;1;PST;LGSPEC1
racointer racointoys V;IPFV;IND;SG;1;PST;LGSPEC2
merveiller merveillez V;SBJV;PL;2;PRS
traicter tracte V;SBJV;SG;1;PRS
macter mactasmes V;PFV;IND;PL;1;PST
soumectre soumectre V;NFIN
eschapper eschappes V;IND;SG;2;PRS
arriver arriveryons V;COND;PL;1;LGSPEC2
rouller roullasse V;IPFV;SBJV;SG;1;PST
separer separast V;IPFV;SBJV;SG;3;PST
espoventer espoventiez V;IPFV;IND;PL;2;PST;LGSPEC1
ottroyer ottroyeroit V;COND;SG;3;LGSPEC1
accompaigner accompaignerez V;IND;PL;2;FUT
esgarer esgaroient V;IPFV;IND;PL;3;PST;LGSPEC1
escorner escornent V;IND;PL;3;PRS
desborder desborde V;SBJV;SG;3;PRS
ralier ralions V;IMP;PL;1
tabuster tabusterez V;IND;PL;2;FUT
penser penseroys V;COND;SG;1;LGSPEC2
luitter luitterez V;IND;PL;2;FUT
arriver arriveront V;IND;PL;3;FUT
resver resverois V;COND;SG;1;LGSPEC1
empescher empeschyez V;IPFV;IND;PL;2;PST;LGSPEC2
nommer nomment V;IND;PL;3;PRS
galoper galopasmes V;PFV;IND;PL;1;PST
exposer exposassiez V;IPFV;SBJV;PL;2;PST
empirer empirasse V;IPFV;SBJV;SG;1;PST
destacher destachons V;IMP;PL;1
expuyser expuysons V;IMP;PL;1
advancer advançoient V;IPFV;IND;PL;3;PST;LGSPEC1
finir finissoit V;IPFV;IND;SG;3;PST;LGSPEC1
occuper occupez V;IMP;PL;2
obliger obligent V;SBJV;PL;3;PRS
accointer accointent V;IND;PL;3;PRS
piller pillasmes V;PFV;IND;PL;1;PST
ruyner ruynerez V;IND;PL;2;FUT
achever achevez V;IMP;PL;2
esloigner esloignons V;SBJV;PL;1;PRS
pourchasser pourchasse V;IMP;SG;2
praesider praesidez V;SBJV;PL;2;PRS
accompaigner accompaignerai V;IND;SG;1;FUT;LGSPEC1
atourner atournoys V;IPFV;IND;SG;2;PST;LGSPEC2
mortifier mortifierons V;IND;PL;1;FUT
impugner impugnyez V;IPFV;IND;PL;2;PST;LGSPEC2
courroucer courrouçast V;IPFV;SBJV;SG;3;PST
deslacer delaceryez V;COND;PL;2;LGSPEC2
offencer offençasses V;IPFV;SBJV;SG;2;PST
appuier appuiois V;IPFV;IND;SG;1;PST;LGSPEC1
ietter ietterions V;COND;PL;1;LGSPEC1
hacher hacherois V;COND;SG;2;LGSPEC1
edifier edifiyez V;IPFV;IND;PL;2;PST;LGSPEC2
regratier regrations V;SBJV;PL;1;PRS
poiser poiserois V;COND;SG;1;LGSPEC1
supposer supposyons V;IPFV;IND;PL;1;PST;LGSPEC2
mouscher mouscheroys V;COND;SG;1;LGSPEC2
proclamer proclame V;IND;SG;1;PRS
gaimenter gaimenteroys V;COND;SG;2;LGSPEC2
estiquier estiquiez V;IND;PL;2;PRS
besoinger besoigna V;PFV;IND;SG;1;PST
hacher hachois V;IPFV;IND;SG;1;PST;LGSPEC1
desbaucher desbauchas V;PFV;IND;SG;2;PST
recommander recommande V;SBJV;SG;3;PRS
redrechier redrechieront V;IND;PL;3;FUT
chevauchier chevauche V;IMP;SG;2
escapper escappons V;IMP;PL;1
endommaiger endommaigeois V;IPFV;IND;SG;2;PST;LGSPEC1
cercher cercherions V;COND;PL;1;LGSPEC1
tournoyer tournoyes V;IND;SG;2;PRS
tourner tournastes V;PFV;IND;PL;2;PST
moderer modererois V;COND;SG;1;LGSPEC1
enferrer enferroys V;IPFV;IND;SG;2;PST;LGSPEC2
advouer advouerons V;IND;PL;1;FUT
soucyer soucye V;IMP;SG;2
iurer iurerez V;IND;PL;2;FUT
trembler tremblas V;PFV;IND;SG;2;PST
despuceller despucelleriez V;COND;PL;2;LGSPEC1
desplacer desplaçasses V;IPFV;SBJV;SG;2;PST
reculler reculleront V;IND;PL;3;FUT
empenser empensons V;IMP;PL;1
faire fismes V;PFV;IND;PL;1;PST
assieger assiegerons V;IND;PL;1;FUT
affermer affermons V;SBJV;PL;1;PRS
buchier buchoient V;IPFV;IND;PL;3;PST;LGSPEC1
mortifier mortifieriez V;COND;PL;2;LGSPEC1
tramper trampes V;SBJV;SG;2;PRS
eschapper eschappyons V;IPFV;IND;PL;1;PST;LGSPEC2
escarter escartois V;IPFV;IND;SG;1;PST;LGSPEC1
nombrer nombrerois V;COND;SG;1;LGSPEC1
provocquer provocquoient V;IPFV;IND;PL;3;PST;LGSPEC1
despossesser despossesseray V;IND;SG;1;FUT;LGSPEC2
desrisier desrisiera V;IND;SG;3;FUT
chocquer chocquasse V;IPFV;SBJV;SG;1;PST
mectre mirent V;PFV;IND;PL;3;PST
viser visasses V;IPFV;SBJV;SG;2;PST
enterrer enterras V;PFV;IND;SG;2;PST
proffiter proffiter V;NFIN
affier affiois V;IPFV;IND;SG;2;PST;LGSPEC1
presumer presumerions V;COND;PL;1;LGSPEC1
galoper galopast V;IPFV;SBJV;SG;3;PST
frapper frappyons V;IPFV;IND;PL;1;PST;LGSPEC2
communicquer communicques V;SBJV;SG;2;PRS
recuperer recupererois V;COND;SG;2;LGSPEC1
accoustumer accoustumez V;SBJV;PL;2;PRS
recuperer recupereroit V;COND;SG;3;LGSPEC1
ronfler ronfloit V;IPFV;IND;SG;3;PST;LGSPEC1
picquer picque V;IND;SG;1;PRS
encliner enclinoyent V;IPFV;IND;PL;3;PST;LGSPEC2
derver derveriez V;COND;PL;2;LGSPEC1
visiter visityez V;IPFV;IND;PL;2;PST;LGSPEC2
avoyr aie V;IMP;SG;2
frapper frappassiez V;IPFV;SBJV;PL;2;PST
gangler gangloyt V;IPFV;IND;SG;3;PST;LGSPEC2
esparpiller esparpilles V;SBJV;SG;2;PRS
esguiser esguisent V;IND;PL;3;PRS
recuperer recuperes V;IND;SG;2;PRS
finer fine V;IND;SG;1;PRS
songer songe V;SBJV;SG;1;PRS
dancer dançons V;IMP;PL;1
leicher leichassions V;IPFV;SBJV;PL;1;PST
pecher pecherez V;IND;PL;2;FUT
picquier picquieras V;IND;SG;2;FUT
fouragier fourageasses V;IPFV;SBJV;SG;2;PST
soumectre soumectrois V;COND;SG;1;LGSPEC1
mesler mesleroyent V;COND;PL;3;LGSPEC2
deschevaucher deschevauche V;IMP;SG;2
iniurier iniuriassent V;IPFV;SBJV;PL;3;PST
fortiffier fortiffieroys V;COND;SG;2;LGSPEC2
coucher couchassiez V;IPFV;SBJV;PL;2;PST
esperer espereroys V;COND;SG;1;LGSPEC2
emprunter empruntoit V;IPFV;IND;SG;3;PST;LGSPEC1
renommer renommeras V;IND;SG;2;FUT
lyer lyeroys V;COND;SG;1;LGSPEC2
trouver trouve V;SBJV;SG;3;PRS
monter montent V;SBJV;PL;3;PRS
appeller appellerois V;COND;SG;1;LGSPEC1
laidenger laidengeroys V;COND;SG;2;LGSPEC2
affamer affamerent V;PFV;IND;PL;3;PST
derver dervyons V;IPFV;IND;PL;1;PST;LGSPEC2
remerquer remerquasse V;IPFV;SBJV;SG;1;PST
quereler quereleroient V;COND;PL;3;LGSPEC1
cointoier cointoioys V;IPFV;IND;SG;1;PST;LGSPEC2
getter gettoit V;IPFV;IND;SG;3;PST;LGSPEC1
demonstrer demonstra V;PFV;IND;SG;3;PST
expeller expellez V;IMP;PL;2
desmettre desmist V;IPFV;SBJV;SG;3;PST
delaisser delaisseryez V;COND;PL;2;LGSPEC2
offencer offenceroit V;COND;SG;3;LGSPEC1
desmonter desmontassions V;IPFV;SBJV;PL;1;PST
resister resiste V;SBJV;SG;1;PRS
reiecter reiecterions V;COND;PL;1;LGSPEC1
escapper escappois V;IPFV;IND;SG;1;PST;LGSPEC1
porter porterez V;IND;PL;2;FUT
seiourner seiournerent V;PFV;IND;PL;3;PST
charger chargerois V;COND;SG;1;LGSPEC1
respirer respireryez V;COND;PL;2;LGSPEC2
accomplir accomplis V;PFV;IND;SG;1;PST
commencer commenceroyt V;COND;SG;3;LGSPEC2
esguarer esguares V;SBJV;SG;2;PRS
pourchasser pourchassera V;IND;SG;3;FUT
toucher toucherois V;COND;SG;2;LGSPEC1
estimer estimerois V;COND;SG;1;LGSPEC1
baptiser baptisoient V;IPFV;IND;PL;3;PST;LGSPEC1
arrengier arrengierois V;COND;SG;1;LGSPEC1
exstirper exstirperas V;IND;SG;2;FUT
melancholier melancholieroient V;COND;PL;3;LGSPEC1
affermer afferma V;PFV;IND;SG;3;PST
combiner combineryez V;COND;PL;2;LGSPEC2
pisser pisses V;SBJV;SG;2;PRS
emboucher embouchez V;SBJV;PL;2;PRS
aboscher aboschez V;IMP;PL;2
eschapper eschappoyt V;IPFV;IND;SG;3;PST;LGSPEC2
proteger protegeoient V;IPFV;IND;PL;3;PST;LGSPEC1
desadvouer desadvouassent V;IPFV;SBJV;PL;3;PST
fouragier fourageassions V;IPFV;SBJV;PL;1;PST
atourner atournasmes V;PFV;IND;PL;1;PST
houer houa V;PFV;IND;SG;1;PST
fumer fumeroit V;COND;SG;3;LGSPEC1
gouverner gouvernes V;IND;SG;2;PRS
ietter ietteroys V;COND;SG;1;LGSPEC2
entrer entrassions V;IPFV;SBJV;PL;1;PST
visiter visiterent V;PFV;IND;PL;3;PST
hostoier hostoie V;SBJV;SG;3;PRS
despossesser despossessions V;IPFV;IND;PL;1;PST;LGSPEC1
cercher cerchasmes V;PFV;IND;PL;1;PST
monter montiez V;IPFV;IND;PL;2;PST;LGSPEC1
esternuer esternuas V;PFV;IND;SG;2;PST
monstrer monstre V;SBJV;SG;3;PRS
moderer modera V;PFV;IND;SG;3;PST
desyrer desyre V;SBJV;SG;3;PRS
desister desistons V;IMP;PL;1
luitter luitteroyt V;COND;SG;3;LGSPEC2
rappeller rappellasse V;IPFV;SBJV;SG;1;PST
escouter escoutoyent V;IPFV;IND;PL;3;PST;LGSPEC2
esperonner esperonnerois V;COND;SG;2;LGSPEC1
manouvrer manouvrerois V;COND;SG;1;LGSPEC1
remonstrer remonstrerent V;PFV;IND;PL;3;PST
resigner resignerois V;COND;SG;1;LGSPEC1
flechir fleschissions V;IPFV;IND;PL;1;PST
dancer danceras V;IND;SG;2;FUT
deffier deffierez V;IND;PL;2;FUT
desborder desbordes V;SBJV;SG;2;PRS
empirer empiryez V;IPFV;IND;PL;2;PST;LGSPEC2
celebrer celebreryez V;COND;PL;2;LGSPEC2
auser auseroys V;COND;SG;1;LGSPEC2
descouchier descouchieroys V;COND;SG;2;LGSPEC2
pourpenser pourpenseriez V;COND;PL;2;LGSPEC1
traittier traitta V;PFV;IND;SG;3;PST
regorger regorgeois V;IPFV;IND;SG;2;PST;LGSPEC1
louer louent V;SBJV;PL;3;PRS
pourpenser pourpensassiez V;IPFV;SBJV;PL;2;PST
desbarater desbaratez V;IND;PL;2;PRS
bransler branslois V;IPFV;IND;SG;2;PST;LGSPEC1
retirer retirerions V;COND;PL;1;LGSPEC1
combiner combinoient V;IPFV;IND;PL;3;PST;LGSPEC1
lyer lyassiez V;IPFV;SBJV;PL;2;PST
revencher revenchyez V;IPFV;IND;PL;2;PST;LGSPEC2
nombrer nombrasse V;IPFV;SBJV;SG;1;PST
desprisonner desprisonnois V;IPFV;IND;SG;1;PST;LGSPEC1
effronter effrontez V;IND;PL;2;PRS
acquiter acquitasses V;IPFV;SBJV;SG;2;PST
couster coustons V;IMP;PL;1
faire faisions V;IPFV;IND;PL;1;PST
encontrer encontroyt V;IPFV;IND;SG;3;PST;LGSPEC2
armoier armoies V;IND;SG;2;PRS
preparer preparyez V;IPFV;IND;PL;2;PST;LGSPEC2
frapper frappa V;PFV;IND;SG;1;PST
entredonner vous entredonnassiez V;IPFV;SBJV;PL;2;PST
avaller avallois V;IPFV;IND;SG;1;PST;LGSPEC1
esvertuer esvertuoyent V;IPFV;IND;PL;3;PST;LGSPEC2
possesser possessoyt V;IPFV;IND;SG;3;PST;LGSPEC2
robber robbasses V;IPFV;SBJV;SG;2;PST
approuchier approuchieras V;IND;SG;2;FUT
tyrer tyrer V;NFIN
esmerveillier esmerveillierai V;IND;SG;1;FUT;LGSPEC1
lurrer lurrerons V;IND;PL;1;FUT
esquacher esquachoient V;IPFV;IND;PL;3;PST;LGSPEC1
tesmoigner tesmoignera V;IND;SG;3;FUT
veiller veilleroient V;COND;PL;3;LGSPEC1
demonstrer demonstrassions V;IPFV;SBJV;PL;1;PST
auser ausons V;IND;PL;1;PRS
dancer danceryons V;COND;PL;1;LGSPEC2
celer celez V;IMP;PL;2
finir finissiez V;SBJV;PL;2;PRS
herrier herries V;SBJV;SG;2;PRS
jecter jectes V;IND;SG;2;PRS
disner disnastes V;PFV;IND;PL;2;PST
estouffer estouffa V;PFV;IND;SG;1;PST
demesler demesles V;IND;SG;2;PRS
croniquier croniquieryez V;COND;PL;2;LGSPEC2
affier affiez V;IND;PL;2;PRS
adviser adviseroyent V;COND;PL;3;LGSPEC2
bayser baysoit V;IPFV;IND;SG;3;PST;LGSPEC1
estoffer estoffoys V;IPFV;IND;SG;1;PST;LGSPEC2
chercher chercheroys V;COND;SG;2;LGSPEC2
preceder precederas V;IND;SG;2;FUT
mensongier mensongieroyent V;COND;PL;3;LGSPEC2
lescher leschons V;SBJV;PL;1;PRS
diviner divines V;SBJV;SG;2;PRS
picquier picquassions V;IPFV;SBJV;PL;1;PST
participer participiez V;IPFV;IND;PL;2;PST;LGSPEC1
encommencer encommenciez V;IPFV;IND;PL;2;PST;LGSPEC1
enseignier enseignez V;SBJV;PL;2;PRS
trouver trouvastes V;PFV;IND;PL;2;PST
piller pilles V;SBJV;SG;2;PRS
aracher arachera V;IND;SG;3;FUT
esveiller esveillas V;PFV;IND;SG;2;PST
estre seroyent V;COND;PL;3;LGSPEC2
loger logeoyt V;IPFV;IND;SG;3;PST;LGSPEC2
mulcter mulctons V;IMP;PL;1
finir finissoys V;IPFV;IND;SG;2;PST;LGSPEC2
endommaiger endommaigeasmes V;PFV;IND;PL;1;PST
cabasser cabassassent V;IPFV;SBJV;PL;3;PST
considerer consideres V;IND;SG;2;PRS
cabasser cabasseroys V;COND;SG;1;LGSPEC2
enchargier enchargierai V;IND;SG;1;FUT;LGSPEC1
saulter saultoys V;IPFV;IND;SG;1;PST;LGSPEC2
passer passez V;IMP;PL;2
cabasser cabasseront V;IND;PL;3;FUT
seeller seelleroyent V;COND;PL;3;LGSPEC2
cryer cryions V;IPFV;IND;PL;1;PST;LGSPEC1
desbaucher desbaucheroient V;COND;PL;3;LGSPEC1
tourner tournerai V;IND;SG;1;FUT;LGSPEC1
pourchasser pourchassassiez V;IPFV;SBJV;PL;2;PST
honnourer honnoure V;SBJV;SG;3;PRS
couster cousteroit V;COND;SG;3;LGSPEC1
prattiquer prattiquons V;IMP;PL;1
asseurer asseuroyent V;IPFV;IND;PL;3;PST;LGSPEC2
mortifier mortifient V;IND;PL;3;PRS
celer celeroyt V;COND;SG;3;LGSPEC2
consyderer consydere V;SBJV;SG;3;PRS
estudier estudiassions V;IPFV;SBJV;PL;1;PST
desister desistes V;SBJV;SG;2;PRS
logier logieroys V;COND;SG;1;LGSPEC2
espier espions V;IND;PL;1;PRS
deffier deffiasse V;IPFV;SBJV;SG;1;PST
entituler entituleroys V;COND;SG;1;LGSPEC2
declairer declairasmes V;PFV;IND;PL;1;PST
cryer cryez V;IND;PL;2;PRS
esvertuer esvertuez V;IMP;PL;2
lascher lascheray V;IND;SG;1;FUT;LGSPEC2
appuier appuiiez V;IPFV;IND;PL;2;PST;LGSPEC1
enfelonner enfelonneroys V;COND;SG;1;LGSPEC2
gaigner gaignoyt V;IPFV;IND;SG;3;PST;LGSPEC2
negotier negotient V;IND;PL;3;PRS
veigler veiglerois V;COND;SG;1;LGSPEC1
raenchonner raenchonnerois V;COND;SG;1;LGSPEC1
ployer ployes V;SBJV;SG;2;PRS
cuyder cuydasmes V;PFV;IND;PL;1;PST
condescendre condescendons V;IMP;PL;1
negotier negotiasses V;IPFV;SBJV;SG;2;PST
amer amastes V;PFV;IND;PL;2;PST
escorner escornois V;IPFV;IND;SG;1;PST;LGSPEC1
eslancer eslançons V;IPFV;IND;PL;1;PST;LGSPEC2
esgratigner esgratignastes V;PFV;IND;PL;2;PST
rouiller rouillastes V;PFV;IND;PL;2;PST
accoustumer accoustumassions V;IPFV;SBJV;PL;1;PST
presumer presumeras V;IND;SG;2;FUT
desloger deslogeryez V;COND;PL;2;LGSPEC2
importuner importunoys V;IPFV;IND;SG;2;PST;LGSPEC2
creancer creance V;SBJV;SG;3;PRS
flatter flatteroyt V;COND;SG;3;LGSPEC2
cacher cacheroys V;COND;SG;2;LGSPEC2
haster hasteront V;IND;PL;3;FUT
recouvrer recouvra V;PFV;IND;SG;1;PST
contreroller contrerollerois V;COND;SG;2;LGSPEC1
armoier armoiastes V;PFV;IND;PL;2;PST
baptiser baptisasse V;IPFV;SBJV;SG;1;PST
accuser accusoyt V;IPFV;IND;SG;3;PST;LGSPEC2
aterminer aterminois V;IPFV;IND;SG;1;PST;LGSPEC1
amer amons V;IND;PL;1;PRS
moustrer moustrassiez V;IPFV;SBJV;PL;2;PST
baptiser baptiserent V;PFV;IND;PL;3;PST
soulaiger soulaiger V;NFIN
reigler reiglois V;IPFV;IND;SG;1;PST;LGSPEC1
eschapper eschappes V;SBJV;SG;2;PRS
merveiller merveilleroit V;COND;SG;3;LGSPEC1
nombrer nombrastes V;PFV;IND;PL;2;PST
desplacer desplacerai V;IND;SG;1;FUT;LGSPEC1
tourmenter tourmente V;SBJV;SG;1;PRS
nettoyer nettoyons V;IMP;PL;1
habiter habitez V;IMP;PL;2
chevauchier chevauchieroyt V;COND;SG;3;LGSPEC2
praeparer praeparerions V;COND;PL;1;LGSPEC1
regorger regorgerez V;IND;PL;2;FUT
penetrer penetrerai V;IND;SG;1;FUT;LGSPEC1
desrisier desrisoient V;IPFV;IND;PL;3;PST;LGSPEC1
renommer renommassions V;IPFV;SBJV;PL;1;PST
persuader persuaderoyent V;COND;PL;3;LGSPEC2
denunchier denunchias V;PFV;IND;SG;2;PST
repraesenter repraesentyons V;IPFV;IND;PL;1;PST;LGSPEC2
visiter visitasse V;IPFV;SBJV;SG;1;PST
possesser possessassiez V;IPFV;SBJV;PL;2;PST
rouiller rouilloys V;IPFV;IND;SG;2;PST;LGSPEC2
contregarder contregardiez V;IPFV;IND;PL;2;PST;LGSPEC1
regretter regretterions V;COND;PL;1;LGSPEC1
enterrer enterrerois V;COND;SG;1;LGSPEC1
eschever eschevions V;IPFV;IND;PL;1;PST;LGSPEC1
enterrer enterra V;PFV;IND;SG;1;PST
gaigner gaigne V;SBJV;SG;3;PRS
esgratigner esgratignons V;IMP;PL;1
employer employez V;IND;PL;2;PRS
enpoisonner enpoisonneroys V;COND;SG;1;LGSPEC2
minorer minoreras V;IND;SG;2;FUT
resumer resumasmes V;PFV;IND;PL;1;PST
proteger protegeroys V;COND;SG;1;LGSPEC2
fumer fumerai V;IND;SG;1;FUT;LGSPEC1
guerpir guerpissoit V;IPFV;IND;SG;3;PST;LGSPEC1
pasturer pasturoyt V;IPFV;IND;SG;3;PST;LGSPEC2
esgarer esgarerent V;PFV;IND;PL;3;PST
atourner atournerent V;PFV;IND;PL;3;PST
descourager descouragez V;IMP;PL;2
dancer dançasse V;IPFV;SBJV;SG;1;PST
iouer iouerois V;COND;SG;1;LGSPEC1
r'asseurer r'asseures V;IND;SG;2;PRS
manger mangez V;IND;PL;2;PRS
getter getterions V;COND;PL;1;LGSPEC1
accepter acceptassions V;IPFV;SBJV;PL;1;PST
accuser accusassent V;IPFV;SBJV;PL;3;PST
bransler bransles V;IND;SG;2;PRS
estudier estudient V;SBJV;PL;3;PRS
presupposer presupposons V;SBJV;PL;1;PRS
fortiffier fortiffias V;PFV;IND;SG;2;PST
baiser baiserez V;IND;PL;2;FUT
gaber gabons V;IND;PL;1;PRS
hucher huchoient V;IPFV;IND;PL;3;PST;LGSPEC1
porter porterai V;IND;SG;1;FUT;LGSPEC1
entredesirer vous entredesirastes V;PFV;IND;PL;2;PST
fumer fume V;IMP;SG;2
hacher hacherez V;IND;PL;2;FUT
inquieter inquietoit V;IPFV;IND;SG;3;PST;LGSPEC1
empirer empireront V;IND;PL;3;FUT
creancer creancer V;NFIN
proteger protegent V;SBJV;PL;3;PRS
prosperer prospereront V;IND;PL;3;FUT
traveillier traveillieroyent V;COND;PL;3;LGSPEC2
uriner urinoyt V;IPFV;IND;SG;3;PST;LGSPEC2
fromenter fromentons V;SBJV;PL;1;PRS
seeller seellyons V;IPFV;IND;PL;1;PST;LGSPEC2
acquiter acquite V;SBJV;SG;1;PRS
avanchier avanchiez V;IMP;PL;2
houssepillier houssepillierons V;IND;PL;1;FUT
deschirer deschireroyent V;COND;PL;3;LGSPEC2
possesser possesseroys V;COND;SG;2;LGSPEC2
enorter enortoit V;IPFV;IND;SG;3;PST;LGSPEC1
offencer offencent V;SBJV;PL;3;PRS
encontrer encontroyent V;IPFV;IND;PL;3;PST;LGSPEC2
rouller roulleryez V;COND;PL;2;LGSPEC2
entrefraper vous entrefrapez V;IND;PL;2;PRS
communicquer communicqueroit V;COND;SG;3;LGSPEC1
renfler renfloys V;IPFV;IND;SG;2;PST;LGSPEC2
essilier essilasse V;IPFV;SBJV;SG;1;PST
sçavoir sçay V;IND;SG;1;PRS
subiecter subiecte V;SBJV;SG;3;PRS
atacher atachez V;SBJV;PL;2;PRS
effronter effrontoyt V;IPFV;IND;SG;3;PST;LGSPEC2
approuchier approuchent V;SBJV;PL;3;PRS
achever achevas V;PFV;IND;SG;2;PST
estonner estonnez V;SBJV;PL;2;PRS
noter notassions V;IPFV;SBJV;PL;1;PST
iniurier iniurierois V;COND;SG;2;LGSPEC1
flatter flattoyent V;IPFV;IND;PL;3;PST;LGSPEC2
essilier essilierions V;COND;PL;1;LGSPEC1
desadvouer desadvouois V;IPFV;IND;SG;1;PST;LGSPEC1
veigler veiglerez V;IND;PL;2;FUT
moderer moderes V;SBJV;SG;2;PRS
praesider praesiderois V;COND;SG;2;LGSPEC1
approuvender approuvenderyons V;COND;PL;1;LGSPEC2
retyrer retyrons V;SBJV;PL;1;PRS
trousser trousserions V;COND;PL;1;LGSPEC1
rincer rincer V;NFIN
assister assisterois V;COND;SG;2;LGSPEC1
enfelonner enfelonnois V;IPFV;IND;SG;2;PST;LGSPEC1
mensongier mensongeasmes V;PFV;IND;PL;1;PST
payer payons V;IMP;PL;1
picquier picquieryons V;COND;PL;1;LGSPEC2
desnouer desnoueryons V;COND;PL;1;LGSPEC2
desployer desployeray V;IND;SG;1;FUT;LGSPEC2
vuider vuidassent V;IPFV;SBJV;PL;3;PST
coniurer coniure V;IND;SG;3;PRS
enchasser enchasserois V;COND;SG;2;LGSPEC1
deschirer deschiriez V;IPFV;IND;PL;2;PST;LGSPEC1
resister resista V;PFV;IND;SG;1;PST
cointoier cointoierons V;IND;PL;1;FUT
deifier deifia V;PFV;IND;SG;3;PST
haittier haittierent V;PFV;IND;PL;3;PST
aboscher aboschons V;IMP;PL;1
engendrer engendrerois V;COND;SG;1;LGSPEC1
detranchier detranchieroyent V;COND;PL;3;LGSPEC2
esgarer esgarassiez V;IPFV;SBJV;PL;2;PST
buchier buchions V;IND;PL;1;PRS
tocquer tocqueroys V;COND;SG;1;LGSPEC2
inquieter inquieteroys V;COND;SG;2;LGSPEC2
deshonnourer deshonnourassiez V;IPFV;SBJV;PL;2;PST
encharger encharge V;SBJV;SG;1;PRS
descouchier descouches V;IND;SG;2;PRS
fouller foullerai V;IND;SG;1;FUT;LGSPEC1
desheriter desheritions V;IPFV;IND;PL;1;PST;LGSPEC1
respirer respirois V;IPFV;IND;SG;1;PST;LGSPEC1
loger logeryons V;COND;PL;1;LGSPEC2
deslacer delaçasses V;IPFV;SBJV;SG;2;PST
gouster goustasmes V;PFV;IND;PL;1;PST
penetrer penetrerions V;COND;PL;1;LGSPEC1
desconseiller desconseilleray V;IND;SG;1;FUT;LGSPEC2
acoustumer acoustumons V;IMP;PL;1
edifier edifiois V;IPFV;IND;SG;2;PST;LGSPEC1
hostoier hostoiasse V;IPFV;SBJV;SG;1;PST
passer passeroyt V;COND;SG;3;LGSPEC2
doubter doubtoyt V;IPFV;IND;SG;3;PST;LGSPEC2
estonner estonnas V;PFV;IND;SG;2;PST
desprisonner desprisonnerent V;PFV;IND;PL;3;PST
rejecter rejectes V;IND;SG;2;PRS
mucer muçoyent V;IPFV;IND;PL;3;PST;LGSPEC2
representer representeriez V;COND;PL;2;LGSPEC1
soupper soupperez V;IND;PL;2;FUT
evaporer evaporastes V;PFV;IND;PL;2;PST
armoier armoiois V;IPFV;IND;SG;1;PST;LGSPEC1
marcher marche V;SBJV;SG;1;PRS
perser persyez V;IPFV;IND;PL;2;PST;LGSPEC2
ozer ozes V;IND;SG;2;PRS
operer operoyt V;IPFV;IND;SG;3;PST;LGSPEC2
escumer escumez V;IND;PL;2;PRS
avoyr avions V;IPFV;IND;PL;1;PST
faire feroie V;IND;SG;1;FUT;LGSPEC1
regratier regratiions V;IPFV;IND;PL;1;PST;LGSPEC1
mocquer mocqueroys V;COND;SG;1;LGSPEC2
recouvrer recouvreriez V;COND;PL;2;LGSPEC1
translater translatoient V;IPFV;IND;PL;3;PST;LGSPEC1
estudier estudieroyent V;COND;PL;3;LGSPEC2
contreroller contrerolle V;SBJV;SG;3;PRS
enseignier enseignasses V;IPFV;SBJV;SG;2;PST
pacquer pacquerois V;COND;SG;2;LGSPEC1
esventer esventeryez V;COND;PL;2;LGSPEC2
superseder supersedons V;IMP;PL;1
retyrer retyrerai V;IND;SG;1;FUT;LGSPEC1
hostoier hostoiions V;IPFV;IND;PL;1;PST;LGSPEC1
excuser excuseroient V;COND;PL;3;LGSPEC1
vengier vengeoient V;IPFV;IND;PL;3;PST;LGSPEC1
empirer empirons V;IMP;PL;1
regarder regarda V;PFV;IND;SG;1;PST
ployer ployeriez V;COND;PL;2;LGSPEC1
empescher empeschez V;SBJV;PL;2;PRS
faire faciez V;SBJV;PL;2;PRS
inviter inviteroys V;COND;SG;1;LGSPEC2
travailler travaillons V;IND;PL;1;PRS
occuper occuperai V;IND;SG;1;FUT;LGSPEC1
posseder possedyez V;IPFV;IND;PL;2;PST;LGSPEC2
esbaucher esbauchoys V;IPFV;IND;SG;1;PST;LGSPEC2
fiancer fiançasse V;IPFV;SBJV;SG;1;PST
demourer demoureras V;IND;SG;2;FUT
operer operas V;PFV;IND;SG;2;PST
traicter tracteroyt V;COND;SG;3;LGSPEC2
tumber tumberons V;IND;PL;1;FUT
grapper grapperyons V;COND;PL;1;LGSPEC2
demonstrer demonstres V;IND;SG;2;PRS
detranchier detranchent V;IND;PL;3;PRS
revencher revencheroyt V;COND;SG;3;LGSPEC2
affier affia V;PFV;IND;SG;3;PST
lescher lescheryons V;COND;PL;1;LGSPEC2
mercyer mercyassent V;IPFV;SBJV;PL;3;PST
renouveller renouvellerent V;PFV;IND;PL;3;PST
demander demanderas V;IND;SG;2;FUT
praesenter praesenteras V;IND;SG;2;FUT
guider guideras V;IND;SG;2;FUT
houssepillier houssepillassent V;IPFV;SBJV;PL;3;PST
eslancer eslançoys V;IPFV;IND;SG;1;PST;LGSPEC2
abandonner abandonnastes V;PFV;IND;PL;2;PST
esprouver esprouvez V;IND;PL;2;PRS
hacher hacheroyent V;COND;PL;3;LGSPEC2
tocquer tocquent V;IND;PL;3;PRS
ietter ietterois V;COND;SG;1;LGSPEC1
flatter flattons V;IND;PL;1;PRS
appareiller appareilleroys V;COND;SG;2;LGSPEC2
gouverner gouvernions V;IPFV;IND;PL;1;PST;LGSPEC1
demesler demesla V;PFV;IND;SG;3;PST
trancher tranchois V;IPFV;IND;SG;1;PST;LGSPEC1
participer participeroit V;COND;SG;3;LGSPEC1
armoier armoieray V;IND;SG;1;FUT;LGSPEC2
monter montas V;PFV;IND;SG;2;PST
acquiter acquites V;IND;SG;2;PRS
entrefrapper nous entrefrappons V;IND;PL;1;PRS
ietter iettons V;IMP;PL;1
respirer respire V;SBJV;SG;1;PRS
esvertuer esvertuastes V;PFV;IND;PL;2;PST
entrehurter s'entrehurtent V;SBJV;PL;3;PRS
escouter escouta V;PFV;IND;SG;1;PST
accompaigner accompaignoyt V;IPFV;IND;SG;3;PST;LGSPEC2
dilater dilatas V;PFV;IND;SG;2;PST
escouter escouterois V;COND;SG;1;LGSPEC1
fluir fluissoyy V;IPFV;IND;SG;3;PST;LGSPEC2
soulaiger soulaigez V;IMP;PL;2
deifier deifiasses V;IPFV;SBJV;SG;2;PST
subiuguier subiugue V;IND;SG;1;PRS
excuser excusyons V;IPFV;IND;PL;1;PST;LGSPEC2
hacher hachasse V;IPFV;SBJV;SG;1;PST
nombrer nombra V;PFV;IND;SG;3;PST
repraesenter repraesentez V;SBJV;PL;2;PRS
laidenger laidengerez V;IND;PL;2;FUT
cerchier cerchieryez V;COND;PL;2;LGSPEC2
revencher revenchast V;IPFV;SBJV;SG;3;PST
eschieller esciella V;PFV;IND;SG;3;PST
ietter iettoient V;IPFV;IND;PL;3;PST;LGSPEC1
quester queste V;IND;SG;1;PRS
desmeler desmelerions V;COND;PL;1;LGSPEC1
flotter flotterions V;COND;PL;1;LGSPEC1
espier espie V;SBJV;SG;3;PRS
fraper frape V;SBJV;SG;1;PRS
protester protesteroit V;COND;SG;3;LGSPEC1
estudier estudiyez V;IPFV;IND;PL;2;PST;LGSPEC2
estacher estacheriez V;COND;PL;2;LGSPEC1
occuper occupe V;SBJV;SG;1;PRS
desbarater desbaratyez V;IPFV;IND;PL;2;PST;LGSPEC2
pryer pryeroys V;COND;SG;1;LGSPEC2
lascher laschons V;IMP;PL;1
reigler reigle V;IND;SG;3;PRS
moustrer moustrons V;IND;PL;1;PRS
essayer essayeriez V;COND;PL;2;LGSPEC1
esmayer esmayois V;IPFV;IND;SG;2;PST;LGSPEC1
empirer empiroient V;IPFV;IND;PL;3;PST;LGSPEC1
retirer retiroyt V;IPFV;IND;SG;3;PST;LGSPEC2
dampner dampnoit V;IPFV;IND;SG;3;PST;LGSPEC1
desister desistasses V;IPFV;SBJV;SG;2;PST
appareiller appareillons V;IMP;PL;1
vengier vengieroys V;COND;SG;1;LGSPEC2
subiuguier subiuguierai V;IND;SG;1;FUT;LGSPEC1
detester deteste V;SBJV;SG;3;PRS
esvertuer esvertueroys V;COND;SG;2;LGSPEC2
recommander recommanderois V;COND;SG;2;LGSPEC1
meriter meritoys V;IPFV;IND;SG;1;PST;LGSPEC2
faucer fauçassent V;IPFV;SBJV;PL;3;PST
faire faisois V;IPFV;IND;SG;2;PST;LGSPEC1
gaber gaberons V;IND;PL;1;FUT
pourchasser pourchasseroys V;COND;SG;1;LGSPEC2
demonstrer demonstrasse V;IPFV;SBJV;SG;1;PST
entreruyner entreruynyez V;IPFV;IND;PL;2;PST;LGSPEC2
aracher arache V;SBJV;SG;1;PRS
ralier ralioit V;IPFV;IND;SG;3;PST;LGSPEC1
deslyer deslya V;PFV;IND;SG;3;PST
despossesser despossessez V;SBJV;PL;2;PRS
estiquier estiquieroit V;COND;SG;3;LGSPEC1
enorter enorteroys V;COND;SG;2;LGSPEC2
transporter transportoyt V;IPFV;IND;SG;3;PST;LGSPEC2
prier prioyt V;IPFV;IND;SG;3;PST;LGSPEC2
desmonter desmontoient V;IPFV;IND;PL;3;PST;LGSPEC1
affamer affameroyt V;COND;SG;3;LGSPEC2
encontrer encontrois V;IPFV;IND;SG;1;PST;LGSPEC1
aerer aeres V;IND;SG;2;PRS
occuper occupons V;SBJV;PL;1;PRS
conquester conquestoit V;IPFV;IND;SG;3;PST;LGSPEC1
conquester conqueste V;SBJV;SG;3;PRS
ieuner ieunerions V;COND;PL;1;LGSPEC1
aterminer aterminions V;IPFV;IND;PL;1;PST;LGSPEC1
galoper galopasses V;IPFV;SBJV;SG;2;PST
escarter escartent V;SBJV;PL;3;PRS
empenser empensez V;IND;PL;2;PRS
rebarber rebarberyez V;COND;PL;2;LGSPEC2
exstirper exstirpast V;IPFV;SBJV;SG;3;PST
luitter luittas V;PFV;IND;SG;2;PST
grapper grappe V;SBJV;SG;1;PRS
esternuer esternuoient V;IPFV;IND;PL;3;PST;LGSPEC1
eschieller esciellastes V;PFV;IND;PL;2;PST
presupposer presupposa V;PFV;IND;SG;3;PST
suffocquer suffocquassions V;IPFV;SBJV;PL;1;PST
invader invades V;IND;SG;2;PRS
communicquer communicquons V;IND;PL;1;PRS
esbaucher esbauchois V;IPFV;IND;SG;1;PST;LGSPEC1
pourforcer pourforcions V;IPFV;IND;PL;1;PST;LGSPEC1
debaracer debaraceray V;IND;SG;1;FUT;LGSPEC2
galoper galopa V;PFV;IND;SG;3;PST
hucher huchions V;IPFV;IND;PL;1;PST;LGSPEC1
esvertuer esvertuoit V;IPFV;IND;SG;3;PST;LGSPEC1
arriver arrivoys V;IPFV;IND;SG;2;PST;LGSPEC2
trouver trouves V;IND;SG;2;PRS
oster ostons V;IMP;PL;1
enpoisonner enpoisonneront V;IND;PL;3;FUT
soucyer soucyes V;SBJV;SG;2;PRS
esprouver esprouver V;NFIN
ayder ayderez V;IND;PL;2;FUT
contreroller contrerolla V;PFV;IND;SG;3;PST
practicquer practicquoit V;IPFV;IND;SG;3;PST;LGSPEC1
entrer entroient V;IPFV;IND;PL;3;PST;LGSPEC1
piller pilla V;PFV;IND;SG;3;PST
singler singlois V;IPFV;IND;SG;1;PST;LGSPEC1
estudier estudie V;IND;SG;3;PRS
mesler mesles V;IND;SG;2;PRS
despuceller despucellez V;IND;PL;2;PRS
avoir eus V;PFV;IND;SG;1;PST
guider guidasmes V;PFV;IND;PL;1;PST
despossesser despossesses V;SBJV;SG;2;PRS
grapper grappoys V;IPFV;IND;SG;2;PST;LGSPEC2
mulcter mulctois V;IPFV;IND;SG;1;PST;LGSPEC1
tourner tourneroyent V;COND;PL;3;LGSPEC2
galoper galopastes V;PFV;IND;PL;2;PST
infourmer infourmes V;SBJV;SG;2;PRS
recommander recommandas V;PFV;IND;SG;2;PST
loger logeassiez V;IPFV;SBJV;PL;2;PST
desmeler desmeles V;SBJV;SG;2;PRS
piller pilloys V;IPFV;IND;SG;1;PST;LGSPEC2
redoubter redoubtasses V;IPFV;SBJV;SG;2;PST
charger chargez V;IMP;PL;2
escorner escorna V;PFV;IND;SG;3;PST
resider residions V;IPFV;IND;PL;1;PST;LGSPEC1
amadouer amadouassent V;IPFV;SBJV;PL;3;PST
remonstrer remonstrez V;SBJV;PL;2;PRS
grapper grappassiez V;IPFV;SBJV;PL;2;PST
esperonner esperonneroyent V;COND;PL;3;LGSPEC2
riffler riffloys V;IPFV;IND;SG;1;PST;LGSPEC2
apuyer apuyoyent V;IPFV;IND;PL;3;PST;LGSPEC2
quiter quiteroys V;COND;SG;1;LGSPEC2
exposer exposoyent V;IPFV;IND;PL;3;PST;LGSPEC2
vuider vuidyez V;IPFV;IND;PL;2;PST;LGSPEC2
amer amez V;SBJV;PL;2;PRS
surnommer surnommez V;SBJV;PL;2;PRS
gaber gabasmes V;PFV;IND;PL;1;PST
enseignier enseignassiez V;IPFV;SBJV;PL;2;PST
ruyner ruynoient V;IPFV;IND;PL;3;PST;LGSPEC1
leicher leiches V;SBJV;SG;2;PRS
courroucer courrouçons V;IPFV;IND;PL;1;PST;LGSPEC2
desbaucher desbauchiez V;IPFV;IND;PL;2;PST;LGSPEC1
desmettre desmets V;IND;SG;2;PRS
entrempescher entrempeschoyent V;IPFV;IND;PL;3;PST;LGSPEC2
mescler mescleroyt V;COND;SG;3;LGSPEC2
courouchier courouchions V;SBJV;PL;1;PRS
atourner atournions V;IPFV;IND;PL;1;PST;LGSPEC1
croniquier croniquiez V;SBJV;PL;2;PRS
espoventer espoventeront V;IND;PL;3;FUT
bobeliner bobelinas V;PFV;IND;SG;2;PST
faucer fauçons V;IPFV;IND;PL;1;PST;LGSPEC2
songer songeassions V;IPFV;SBJV;PL;1;PST
pausmer pausme V;IND;SG;3;PRS
esquacher esquacheroys V;COND;SG;2;LGSPEC2
aler alassiez V;IPFV;SBJV;PL;2;PST
acquiter acquitoient V;IPFV;IND;PL;3;PST;LGSPEC1
abandonner abandonnions V;IPFV;IND;PL;1;PST;LGSPEC1
infourmer infourmyez V;IPFV;IND;PL;2;PST;LGSPEC2
plier pliois V;IPFV;IND;SG;1;PST;LGSPEC1
desnouer desnouasses V;IPFV;SBJV;SG;2;PST
penser penseroient V;COND;PL;3;LGSPEC1
veigler veigloyent V;IPFV;IND;PL;3;PST;LGSPEC2
deslyer deslye V;IND;SG;1;PRS
espouser espouse V;SBJV;SG;1;PRS
caper cape V;IND;SG;1;PRS
contrepoiser contrepoiseroyent V;COND;PL;3;LGSPEC2
merveiller merveillassiez V;IPFV;SBJV;PL;2;PST
preparer prepareryez V;COND;PL;2;LGSPEC2
brusler bruslent V;IND;PL;3;PRS
esloigner esloignoys V;IPFV;IND;SG;1;PST;LGSPEC2
encontrer encontrez V;IMP;PL;2
r'asseurer r'asseurez V;IND;PL;2;PRS
allaicter allaictoys V;IPFV;IND;SG;1;PST;LGSPEC2
enterrer enterrons V;IND;PL;1;PRS
inquieter inquietois V;IPFV;IND;SG;2;PST;LGSPEC1
cauterizer cauterizastes V;PFV;IND;PL;2;PST
honnourer honnourassiez V;IPFV;SBJV;PL;2;PST
adviser advisassent V;IPFV;SBJV;PL;3;PST
creancer creança V;PFV;IND;SG;1;PST
baster baste V;SBJV;SG;1;PRS
dampner dampnoys V;IPFV;IND;SG;2;PST;LGSPEC2
interpreter interpretez V;SBJV;PL;2;PRS
escryer escryasmes V;PFV;IND;PL;1;PST
enchasser enchasseriez V;COND;PL;2;LGSPEC1
esvanter esvantons V;IND;PL;1;PRS
detranchier detranche V;IMP;SG;2
affermer affermes V;IND;SG;2;PRS
iurer iure V;SBJV;SG;3;PRS
resigner resigneras V;IND;SG;2;FUT
trembler trembloys V;IPFV;IND;SG;2;PST;LGSPEC2
quereler querelerois V;COND;SG;1;LGSPEC1
confermer confermerois V;COND;SG;1;LGSPEC1
marier mariez V;SBJV;PL;2;PRS
tesmoigner tesmoignez V;IMP;PL;2
melancholier melancholier V;NFIN
encliner enclines V;SBJV;SG;2;PRS
heiler heileroyent V;COND;PL;3;LGSPEC2
employer employeryons V;COND;PL;1;LGSPEC2
deschainer deschaine V;SBJV;SG;1;PRS
proteger proteger V;NFIN
regretter regrettassions V;IPFV;SBJV;PL;1;PST
gouster goustoys V;IPFV;IND;SG;2;PST;LGSPEC2
pacquer pacquiez V;IPFV;IND;PL;2;PST;LGSPEC1
flechir fleschissons V;IND;PL;1;PRS
courrouchier courrouchions V;IMP;PL;1
traicter tractiez V;IPFV;IND;PL;2;PST;LGSPEC1
espoventer espoventois V;IPFV;IND;SG;2;PST;LGSPEC1
gouverner gouverna V;PFV;IND;SG;3;PST
baiser baise V;IND;SG;1;PRS
dancer dances V;IND;SG;2;PRS
encommencer encommencerons V;IND;PL;1;FUT
empirer empirerions V;COND;PL;1;LGSPEC1
esmerveillier esmerveille V;IMP;SG;2
embler emblera V;IND;SG;3;FUT
desarmer desarmeryons V;COND;PL;1;LGSPEC2
traitter traittez V;IND;PL;2;PRS
guerpir guerpis V;IND;SG;2;PRS
eschieller escielleroient V;COND;PL;3;LGSPEC1
soupper soupperoys V;COND;SG;2;LGSPEC2
approuvender approuvendoys V;IPFV;IND;SG;1;PST;LGSPEC2
offencer offençastes V;PFV;IND;PL;2;PST
inviter invitasmes V;PFV;IND;PL;1;PST
destacher destaches V;SBJV;SG;2;PRS
explicquer explicquerent V;PFV;IND;PL;3;PST
destabler destablyez V;IPFV;IND;PL;2;PST;LGSPEC2
resigner resignoys V;IPFV;IND;SG;2;PST;LGSPEC2
escorner escornoys V;IPFV;IND;SG;2;PST;LGSPEC2
despencer despençassiez V;IPFV;SBJV;PL;2;PST
ployer ployeryons V;COND;PL;1;LGSPEC2
navrer navroit V;IPFV;IND;SG;3;PST;LGSPEC1
serainer seraineront V;IND;PL;3;FUT
louer louez V;SBJV;PL;2;PRS
bancqueter bancquetois V;IPFV;IND;SG;1;PST;LGSPEC1
moderer modere V;SBJV;SG;1;PRS
haster hastasmes V;PFV;IND;PL;1;PST
advouer advouassent V;IPFV;SBJV;PL;3;PST
amer ameroit V;COND;SG;3;LGSPEC1
resider residas V;PFV;IND;SG;2;PST
accoustumer accoustumeryons V;COND;PL;1;LGSPEC2
haittier haittieroit V;COND;SG;3;LGSPEC1
abhorrer abhorroit V;IPFV;IND;SG;3;PST;LGSPEC1
cacher cache V;SBJV;SG;3;PRS
avanchier avanchiez V;SBJV;PL;2;PRS
esbaucher esbaucheroyent V;COND;PL;3;LGSPEC2
posseder possederois V;COND;SG;2;LGSPEC1
voller vollast V;IPFV;SBJV;SG;3;PST
resister resisteroys V;COND;SG;1;LGSPEC2
destabler destablassions V;IPFV;SBJV;PL;1;PST
iolyer iolyeroyt V;COND;SG;3;LGSPEC2
arrester arrestoys V;IPFV;IND;SG;1;PST;LGSPEC2
eschieller esciellassiez V;IPFV;SBJV;PL;2;PST
tromper trompons V;SBJV;PL;1;PRS
saluer saluas V;PFV;IND;SG;2;PST
lyer lyent V;SBJV;PL;3;PRS
arriver arrives V;SBJV;SG;2;PRS
endommaiger endommaigeroient V;COND;PL;3;LGSPEC1
reculler recullasses V;IPFV;SBJV;SG;2;PST
acquiter acquitons V;IMP;PL;1
delaisser delaisseray V;IND;SG;1;FUT;LGSPEC2
traitter traitteront V;IND;PL;3;FUT
foetter foettyez V;IPFV;IND;PL;2;PST;LGSPEC2
houer houe V;IND;SG;1;PRS
avanchier avanchions V;SBJV;PL;1;PRS
assister assistez V;IND;PL;2;PRS
aller allez V;IMP;PL;2
empieger empieger V;NFIN
baptiser baptiseray V;IND;SG;1;FUT;LGSPEC2
eschever eschevasses V;IPFV;SBJV;SG;2;PST
fouller foullent V;SBJV;PL;3;PRS
flotter flotteriez V;COND;PL;2;LGSPEC1
guider guidyons V;IPFV;IND;PL;1;PST;LGSPEC2
ieusner ieusnera V;IND;SG;3;FUT
seeller seelleroys V;COND;SG;2;LGSPEC2
nouer noue V;SBJV;SG;3;PRS
estre estoys V;IPFV;IND;SG;1;PST;LGSPEC2
remonstrer remonstreray V;IND;SG;1;FUT;LGSPEC2
monstrer monstreroyent V;COND;PL;3;LGSPEC2
nombrer nombrez V;SBJV;PL;2;PRS
saulver saulvois V;IPFV;IND;SG;1;PST;LGSPEC1
tocquer tocquerons V;IND;PL;1;FUT
traveillier traveilla V;PFV;IND;SG;1;PST
ottroyer ottroyoit V;IPFV;IND;SG;3;PST;LGSPEC1
lescher lesches V;IND;SG;2;PRS
guider guidiez V;IPFV;IND;PL;2;PST;LGSPEC1
abandonner abandonnoient V;IPFV;IND;PL;3;PST;LGSPEC1
avaller avallons V;SBJV;PL;1;PRS
esguiser esguiserions V;COND;PL;1;LGSPEC1
flotter flotte V;SBJV;SG;1;PRS
affier affier V;NFIN
protester proteste V;SBJV;SG;3;PRS
desbarater desbaraterons V;IND;PL;1;FUT
quester questerent V;PFV;IND;PL;3;PST
fomenter fomentes V;IND;SG;2;PRS
nouer nouas V;PFV;IND;SG;2;PST
abandonner abandonnent V;IND;PL;3;PRS
nouer noueray V;IND;SG;1;FUT;LGSPEC2
desbarater desbaratoit V;IPFV;IND;SG;3;PST;LGSPEC1
croniquier croniquioit V;IPFV;IND;SG;3;PST;LGSPEC1
combiner combinyez V;IPFV;IND;PL;2;PST;LGSPEC2
retyrer retyreroit V;COND;SG;3;LGSPEC1
soulaiger soulaigeastes V;PFV;IND;PL;2;PST
traitter traittez V;IMP;PL;2
desyrer desyrerois V;COND;SG;2;LGSPEC1
marcher marcheras V;IND;SG;2;FUT
raenchonner raenchonnois V;IPFV;IND;SG;1;PST;LGSPEC1
affier affions V;SBJV;PL;1;PRS
flechir fleschisse V;IPFV;SBJV;SG;1;PST
esventer esventons V;IMP;PL;1
disner disnasses V;IPFV;SBJV;SG;2;PST
embausmer embausmez V;SBJV;PL;2;PRS
fortiffier fortiffient V;SBJV;PL;3;PRS
appuier appuiassiez V;IPFV;SBJV;PL;2;PST
operer opera V;PFV;IND;SG;1;PST
enchargier enchargyons V;IPFV;IND;PL;1;PST;LGSPEC2
desheriter desheritoit V;IPFV;IND;SG;3;PST;LGSPEC1
occurrer occurrions V;IPFV;IND;PL;1;PST;LGSPEC1
desver desvent V;SBJV;PL;3;PRS
confermer confermeront V;IND;PL;3;FUT
separer separe V;SBJV;SG;3;PRS
picquier picquas V;PFV;IND;SG;2;PST
chanter chanterez V;IND;PL;2;FUT
subiuger subiugez V;IMP;PL;2
amer amez V;IMP;PL;2
solliciter sollicityons V;IPFV;IND;PL;1;PST;LGSPEC2
esguiser esguisez V;IMP;PL;2
eslancer eslanceroyent V;COND;PL;3;LGSPEC2
viser vise V;IND;SG;3;PRS
exstirper exstirpe V;IND;SG;3;PRS
deliberer delibereryez V;COND;PL;2;LGSPEC2
dampner dampnas V;PFV;IND;SG;2;PST
gangler gangleroient V;COND;PL;3;LGSPEC1
possesser possessois V;IPFV;IND;SG;2;PST;LGSPEC1
gaigner gaignes V;SBJV;SG;2;PRS
renommer renommois V;IPFV;IND;SG;1;PST;LGSPEC1
luitter luitteray V;IND;SG;1;FUT;LGSPEC2
laisser laissons V;SBJV;PL;1;PRS
fiancer fiançoit V;IPFV;IND;SG;3;PST;LGSPEC1
abboyer abboyoient V;IPFV;IND;PL;3;PST;LGSPEC1
avoir auront V;IND;PL;3;FUT
armoier armoierois V;COND;SG;2;LGSPEC1
houssepillier houssepillierai V;IND;SG;1;FUT;LGSPEC1
esveiller esveilleras V;IND;SG;2;FUT
renfler renfleroit V;COND;SG;3;LGSPEC1
approuvender approuvenderois V;COND;SG;1;LGSPEC1
estinceller estincellerai V;IND;SG;1;FUT;LGSPEC1
tourmenter tourmentassiez V;IPFV;SBJV;PL;2;PST
escouter escouteront V;IND;PL;3;FUT
escorner escorneroyent V;COND;PL;3;LGSPEC2
aguyser aguyses V;IND;SG;2;PRS
fumer fumeroys V;COND;SG;2;LGSPEC2
noter noterions V;COND;PL;1;LGSPEC1
abandonner abandonnassions V;IPFV;SBJV;PL;1;PST
traittier traittieroyent V;COND;PL;3;LGSPEC2
praeparer praeparions V;IPFV;IND;PL;1;PST;LGSPEC1
estiquier estiquassent V;IPFV;SBJV;PL;3;PST
rappeller rappelle V;IND;SG;3;PRS
monter monteras V;IND;SG;2;FUT
guerpir guerpismes V;PFV;IND;PL;1;PST
enconvenencier enconvenenciez V;IND;PL;2;PRS
guerpir guerpissoyent V;IPFV;IND;PL;3;PST;LGSPEC2
estre fussent V;IPFV;SBJV;PL;3;PST
bobeliner bobelinerons V;IND;PL;1;FUT
occuper occuperez V;IND;PL;2;FUT
entrer entreroit V;COND;SG;3;LGSPEC1
demander demanderoyt V;COND;SG;3;LGSPEC2
transgloutir transgloutisse V;IPFV;SBJV;SG;1;PST
mesler mesleront V;IND;PL;3;FUT
pourforcer pourforcyez V;IPFV;IND;PL;2;PST;LGSPEC2
retirer retirez V;IND;PL;2;PRS
flechir fleschissois V;IPFV;IND;SG;2;PST;LGSPEC1
espier espier V;NFIN
entrehurter s'entrehurterent V;PFV;IND;PL;3;PST
racompter racompteroys V;COND;SG;1;LGSPEC2
manouvrer manouvres V;IND;SG;2;PRS
offencer offences V;SBJV;SG;2;PRS
estacher estacheryez V;COND;PL;2;LGSPEC2
accepter accepta V;PFV;IND;SG;1;PST
fascher fascherent V;PFV;IND;PL;3;PST
faire fais V;IND;SG;2;PRS
toucher touchoys V;IPFV;IND;SG;2;PST;LGSPEC2
commencer commence V;IMP;SG;2
demourer demoure V;SBJV;SG;1;PRS
croniquier croniquient V;SBJV;PL;3;PRS
demesler demeslois V;IPFV;IND;SG;1;PST;LGSPEC1
subiuguier subiuguyez V;IPFV;IND;PL;2;PST;LGSPEC2
assister assistes V;SBJV;SG;2;PRS
estiquier estiquyons V;IPFV;IND;PL;1;PST;LGSPEC2
temprer tempre V;IND;SG;1;PRS
peser pesassions V;IPFV;SBJV;PL;1;PST
trembler tremblasmes V;PFV;IND;PL;1;PST
empenser empensasses V;IPFV;SBJV;SG;2;PST
abboyer abboyions V;IPFV;IND;PL;1;PST;LGSPEC1
esloigner esloigna V;PFV;IND;SG;1;PST
buchier buchiez V;IMP;PL;2
pausmer pausmeroyent V;COND;PL;3;LGSPEC2
herrier herrioys V;IPFV;IND;SG;2;PST;LGSPEC2
meriter meriterai V;IND;SG;1;FUT;LGSPEC1
mucer muceront V;IND;PL;3;FUT
parler parlerons V;IND;PL;1;FUT
enhorter enhortast V;IPFV;SBJV;SG;3;PST
rincer rincerez V;IND;PL;2;FUT
humilier humilie V;IMP;SG;2
estacher estachasse V;IPFV;SBJV;SG;1;PST
despuceller despucellasmes V;PFV;IND;PL;1;PST
abandonner abandonnons V;SBJV;PL;1;PRS
reiecter reiecteryez V;COND;PL;2;LGSPEC2
estonner estonnez V;IMP;PL;2
accorder accordyons V;IPFV;IND;PL;1;PST;LGSPEC2
engroisser engroisseryez V;COND;PL;2;LGSPEC2
embausmer embausmoys V;IPFV;IND;SG;1;PST;LGSPEC2
posseder possede V;IMP;SG;2
retourner retournoyent V;IPFV;IND;PL;3;PST;LGSPEC2
regratier regratiassiez V;IPFV;SBJV;PL;2;PST
apatir apatissions V;IPFV;IND;PL;1;PST
renommer renommas V;PFV;IND;SG;2;PST
r'asseurer r'asseurasmes V;PFV;IND;PL;1;PST
pacquer pacquez V;IND;PL;2;PRS
resumer resumerai V;IND;SG;1;FUT;LGSPEC1
deslyer deslyois V;IPFV;IND;SG;1;PST;LGSPEC1
ieuner ieune V;IND;SG;3;PRS
dampner dampnent V;IND;PL;3;PRS
gaigner gaignoys V;IPFV;IND;SG;2;PST;LGSPEC2
tomber tomberai V;IND;SG;1;FUT;LGSPEC1
aloser aloseriez V;COND;PL;2;LGSPEC1
accorder accordons V;IND;PL;1;PRS
desploier desploioit V;IPFV;IND;SG;3;PST;LGSPEC1
fouller foulle V;IMP;SG;2
escrier escrias V;PFV;IND;SG;2;PST
entrer entreray V;IND;SG;1;FUT;LGSPEC2
emerger emergerois V;COND;SG;1;LGSPEC1
desbarater desbarateriez V;COND;PL;2;LGSPEC1
apatir apatis V;IND;SG;1;PRS
eslever eslevent V;SBJV;PL;3;PRS
subiuguier subiuguas V;PFV;IND;SG;2;PST
executer executeras V;IND;SG;2;FUT
ieuner ieunons V;SBJV;PL;1;PRS
adiouster adioustoient V;IPFV;IND;PL;3;PST;LGSPEC1
courroucer courrouçons V;SBJV;PL;1;PRS
heurter heurta V;PFV;IND;SG;1;PST
communicquer communicque V;SBJV;SG;1;PRS
desnouer desnouera V;IND;SG;3;FUT
desmonter desmontes V;SBJV;SG;2;PRS
accointer accointois V;IPFV;IND;SG;2;PST;LGSPEC1
desheriter desheriteryons V;COND;PL;1;LGSPEC2
appuier appuiasses V;IPFV;SBJV;SG;2;PST
chocquer chocque V;IND;SG;3;PRS
soupper souppasses V;IPFV;SBJV;SG;2;PST
estre seroyt V;COND;SG;3;LGSPEC2
persuader persuadiez V;IPFV;IND;PL;2;PST;LGSPEC1
arriver arriverons V;IND;PL;1;FUT
ployer ployent V;SBJV;PL;3;PRS
courrouchier courrouchoyt V;IPFV;IND;SG;3;PST;LGSPEC2
blesser blessent V;IND;PL;3;PRS
aquitter aquittastes V;PFV;IND;PL;2;PST
gaster gastent V;SBJV;PL;3;PRS
despuceller despucelloys V;IPFV;IND;SG;1;PST;LGSPEC2
fromenter fromentoit V;IPFV;IND;SG;3;PST;LGSPEC1
tromper trompasses V;IPFV;SBJV;SG;2;PST
herrier herrioyt V;IPFV;IND;SG;3;PST;LGSPEC2
demourer demouroys V;IPFV;IND;SG;1;PST;LGSPEC2
operer operer V;NFIN
recouvrer recouvrassiez V;IPFV;SBJV;PL;2;PST
empenser empenserez V;IND;PL;2;FUT
veiller veiller V;NFIN
expeller expella V;PFV;IND;SG;3;PST
souspirer souspirer V;NFIN
pecher pecheryez V;COND;PL;2;LGSPEC2
traicter tractes V;IND;SG;2;PRS
tyrer tyres V;SBJV;SG;2;PRS
faire fissions V;IPFV;SBJV;PL;1;PST
desrobber desrobber V;NFIN
croniquier croniquioyent V;IPFV;IND;PL;3;PST;LGSPEC2
perser persyons V;IPFV;IND;PL;1;PST;LGSPEC2
celebrer celebrez V;IMP;PL;2
saulver saulve V;IMP;SG;2
deslyer deslyassions V;IPFV;SBJV;PL;1;PST
chanter chanterons V;IND;PL;1;FUT
sceller scelloyent V;IPFV;IND;PL;3;PST;LGSPEC2
ruyner ruynasmes V;PFV;IND;PL;1;PST
iolyer iolya V;PFV;IND;SG;1;PST
accepter acceptyons V;IPFV;IND;PL;1;PST;LGSPEC2
atempter atempteroyt V;COND;SG;3;LGSPEC2
essilier essilions V;IND;PL;1;PRS
minorer minoreroys V;COND;SG;1;LGSPEC2
resider residoys V;IPFV;IND;SG;1;PST;LGSPEC2
assister assisterez V;IND;PL;2;FUT
tabuster tabusteroit V;COND;SG;3;LGSPEC1
desprisonner desprisonneras V;IND;SG;2;FUT
quereler quereloyt V;IPFV;IND;SG;3;PST;LGSPEC2
desprisonner desprisonne V;SBJV;SG;3;PRS
chercher cherchast V;IPFV;SBJV;SG;3;PST
desloger deslogeons V;IND;PL;1;PRS
presenter presenterent V;PFV;IND;PL;3;PST
reverer revereroyent V;COND;PL;3;LGSPEC2
empirer empire V;SBJV;SG;1;PRS
trembler trembleroit V;COND;SG;3;LGSPEC1
preter pretois V;IPFV;IND;SG;2;PST;LGSPEC1
tocquer tocqueray V;IND;SG;1;FUT;LGSPEC2
entrefraper s'entrefrapent V;IND;PL;3;PRS
noter noteroit V;COND;SG;3;LGSPEC1
desconseiller desconseilleroient V;COND;PL;3;LGSPEC1
doubter doubtasse V;IPFV;SBJV;SG;1;PST
enterrer enterrent V;IND;PL;3;PRS
iniurier iniurierons V;IND;PL;1;FUT
eviter evitent V;IND;PL;3;PRS
desrisier desrisoyt V;IPFV;IND;SG;3;PST;LGSPEC2
aler irions V;COND;PL;1;LGSPEC1
blasphemer blasphemeryons V;COND;PL;1;LGSPEC2
cointoier cointoieroyent V;COND;PL;3;LGSPEC2
grapper grappez V;IMP;PL;2
supposer supposes V;SBJV;SG;2;PRS
baptizer baptizeroient V;COND;PL;3;LGSPEC1
mectre mectroie V;IND;SG;1;FUT;LGSPEC1
affermer affermiez V;IPFV;IND;PL;2;PST;LGSPEC1
posseder possedast V;IPFV;SBJV;SG;3;PST
contrepoiser contrepoisez V;IND;PL;2;PRS
moderer modereryons V;COND;PL;1;LGSPEC2
tourmenter tourmentes V;IND;SG;2;PRS
resider resideryez V;COND;PL;2;LGSPEC2
enchasser enchasseroient V;COND;PL;3;LGSPEC1
redoubter redoubtions V;IPFV;IND;PL;1;PST;LGSPEC1
appareiller appareillerions V;COND;PL;1;LGSPEC1
aller irions V;COND;PL;1;LGSPEC1
entrehurter vous entrehurtastes V;PFV;IND;PL;2;PST
vuider vuiderai V;IND;SG;1;FUT;LGSPEC1
esgratigner esgratignerois V;COND;SG;1;LGSPEC1
empescher empescherions V;COND;PL;1;LGSPEC1
aymer aymeras V;IND;SG;2;FUT
evaporer evapore V;SBJV;SG;1;PRS
soumectre soumectent V;IND;PL;3;PRS
alonger alongerois V;COND;SG;2;LGSPEC1
engroisser engroissasse V;IPFV;SBJV;SG;1;PST
esternuer esternueront V;IND;PL;3;FUT
destourner destournes V;SBJV;SG;2;PRS
ronfler ronflerions V;COND;PL;1;LGSPEC1
trembler trembloient V;IPFV;IND;PL;3;PST;LGSPEC1
ayder ayde V;IND;SG;1;PRS
cointoier cointoieroient V;COND;PL;3;LGSPEC1
hostoier hostoiast V;IPFV;SBJV;SG;3;PST
expeller expellerois V;COND;SG;1;LGSPEC1
estoffer estoffoys V;IPFV;IND;SG;2;PST;LGSPEC2
alonger alongeoys V;IPFV;IND;SG;2;PST;LGSPEC2
encharger enchargeasse V;IPFV;SBJV;SG;1;PST
regratier regratie V;IMP;SG;2
superseder supersedes V;SBJV;SG;2;PRS
iecter iectoyent V;IPFV;IND;PL;3;PST;LGSPEC2
picquier picqua V;PFV;IND;SG;3;PST
laisser laissoit V;IPFV;IND;SG;3;PST;LGSPEC1
rejecter rejectasse V;IPFV;SBJV;SG;1;PST
reigler reigle V;IND;SG;1;PRS
empoizonner empoizonnoyent V;IPFV;IND;PL;3;PST;LGSPEC2
demonstrer demonstreryez V;COND;PL;2;LGSPEC2
desyrer desyreroys V;COND;SG;1;LGSPEC2
ruyner ruyne V;SBJV;SG;3;PRS
temprer temproit V;IPFV;IND;SG;3;PST;LGSPEC1
accorder accordiez V;IPFV;IND;PL;2;PST;LGSPEC1
flatter flattez V;IND;PL;2;PRS
melancholier melancholiez V;IND;PL;2;PRS
estiquier estiquast V;IPFV;SBJV;SG;3;PST
toucher touchoyent V;IPFV;IND;PL;3;PST;LGSPEC2
encharger enchargent V;SBJV;PL;3;PRS
atacher atachas V;PFV;IND;SG;2;PST
eschauffer eschaufferont V;IND;PL;3;FUT
mectre mectez V;IMP;PL;2
guider guidoyent V;IPFV;IND;PL;3;PST;LGSPEC2
pryer pryeriez V;COND;PL;2;LGSPEC1
lever levasses V;IPFV;SBJV;SG;2;PST
pryer pryeryez V;COND;PL;2;LGSPEC2
appareiller appareilloit V;IPFV;IND;SG;3;PST;LGSPEC1
arrengier arrenge V;SBJV;SG;1;PRS
endommaiger endommaigeryons V;COND;PL;1;LGSPEC2
enterrer enterreroys V;COND;SG;1;LGSPEC2
galoper galoperoys V;COND;SG;1;LGSPEC2
baisler baislastes V;PFV;IND;PL;2;PST
trouver trouvassions V;IPFV;SBJV;PL;1;PST
esguarer esguarions V;IPFV;IND;PL;1;PST;LGSPEC1
empirer empire V;IND;SG;1;PRS
espier espiassions V;IPFV;SBJV;PL;1;PST
desrisier desrisieroit V;COND;SG;3;LGSPEC1
macter macteray V;IND;SG;1;FUT;LGSPEC2
iurer iurasmes V;PFV;IND;PL;1;PST
amer ameray V;IND;SG;1;FUT;LGSPEC2
appeller appelles V;IND;SG;2;PRS
penser pensasses V;IPFV;SBJV;SG;2;PST
demander demandes V;IND;SG;2;PRS
espouser espouseray V;IND;SG;1;FUT;LGSPEC2
eslever eslevoyent V;IPFV;IND;PL;3;PST;LGSPEC2
baster basteroient V;COND;PL;3;LGSPEC1
iolyer iolyasse V;IPFV;SBJV;SG;1;PST
estoffer estoffons V;SBJV;PL;1;PRS
merveiller merveillois V;IPFV;IND;SG;1;PST;LGSPEC1
solliciter solliciteroient V;COND;PL;3;LGSPEC1
achapter achapterois V;COND;SG;1;LGSPEC1
mouscher mouscheriez V;COND;PL;2;LGSPEC1
finer fineroys V;COND;SG;1;LGSPEC2
reietter reietteryons V;COND;PL;1;LGSPEC2
pacquer pacquois V;IPFV;IND;SG;1;PST;LGSPEC1
lurrer lurrerions V;COND;PL;1;LGSPEC1
presumer presuma V;PFV;IND;SG;1;PST
serainer seraineroys V;COND;SG;1;LGSPEC2
esvertuer esvertueroyt V;COND;SG;3;LGSPEC2
atacher atacheroyent V;COND;PL;3;LGSPEC2
encommencer encommenceroys V;COND;SG;1;LGSPEC2
accuser accusassiez V;IPFV;SBJV;PL;2;PST
desyrer desyriez V;IPFV;IND;PL;2;PST;LGSPEC1
fromenter fromente V;SBJV;SG;3;PRS
dilater dilatassiez V;IPFV;SBJV;PL;2;PST
representer representassiez V;IPFV;SBJV;PL;2;PST
meriter meritasmes V;PFV;IND;PL;1;PST
proteger protege V;IND;SG;1;PRS
trancher tranchassions V;IPFV;SBJV;PL;1;PST
enconcher enconcherions V;COND;PL;1;LGSPEC1
enyvrer enyvrez V;SBJV;PL;2;PRS
preparer preparerez V;IND;PL;2;FUT
reiecter reiectiez V;IPFV;IND;PL;2;PST;LGSPEC1
hostoier hostoions V;IMP;PL;1
minorer minorois V;IPFV;IND;SG;2;PST;LGSPEC1
trembler tremble V;SBJV;SG;1;PRS
infourmer infourmoient V;IPFV;IND;PL;3;PST;LGSPEC1
accoustumer accoustumyez V;IPFV;IND;PL;2;PST;LGSPEC2
confermer confermons V;SBJV;PL;1;PRS
lescher leschent V;SBJV;PL;3;PRS
mascher masche V;IMP;SG;2
desplacer desplaceryons V;COND;PL;1;LGSPEC2
empescher empescheryez V;COND;PL;2;LGSPEC2
acoustumer acoustumeriez V;COND;PL;2;LGSPEC1
reguarder reguardastes V;PFV;IND;PL;2;PST
hacher hachas V;PFV;IND;SG;2;PST
evaporer evaporeryez V;COND;PL;2;LGSPEC2
entituler entitulastes V;PFV;IND;PL;2;PST
demander demandoyt V;IPFV;IND;SG;3;PST;LGSPEC2
parler parla V;PFV;IND;SG;1;PST
fumer fume V;SBJV;SG;1;PRS
regratier regratierai V;IND;SG;1;FUT;LGSPEC1
apatir apatirez V;IND;PL;2;FUT
explorer explorons V;SBJV;PL;1;PRS
esveiller esveillerois V;COND;SG;2;LGSPEC1
desrobber desrobbiez V;IPFV;IND;PL;2;PST;LGSPEC1
passer passe V;SBJV;SG;1;PRS
pourmener pourmeneroient V;COND;PL;3;LGSPEC1
mulcter mulctassiez V;IPFV;SBJV;PL;2;PST
nombrer nombrerai V;IND;SG;1;FUT;LGSPEC1
supposer supposoient V;IPFV;IND;PL;3;PST;LGSPEC1
flechir fleschiroys V;COND;SG;2;LGSPEC2
soucyer soucyoys V;IPFV;IND;SG;1;PST;LGSPEC2
monter montez V;IMP;PL;2
esgaler esgalyez V;IPFV;IND;PL;2;PST;LGSPEC2
hebergier hebergeasmes V;PFV;IND;PL;1;PST
escrier escrieryez V;COND;PL;2;LGSPEC2
mettre mettroys V;COND;SG;2;LGSPEC2
mesler mesle V;IMP;SG;2
quiter quitez V;IND;PL;2;PRS
gouverner gouverneras V;IND;SG;2;FUT
contregarder contregarderoyent V;COND;PL;3;LGSPEC2
separer separa V;PFV;IND;SG;3;PST
creancer creançoient V;IPFV;IND;PL;3;PST;LGSPEC1
ieusner ieusnoys V;IPFV;IND;SG;2;PST;LGSPEC2
passer passas V;PFV;IND;SG;2;PST
hacher hachez V;IMP;PL;2
confermer confermeray V;IND;SG;1;FUT;LGSPEC2
voller volleront V;IND;PL;3;FUT
devourer devoureriez V;COND;PL;2;LGSPEC1
navrer navrer V;NFIN
desployer desployassent V;IPFV;SBJV;PL;3;PST
enconvenencier enconvenencieroyt V;COND;SG;3;LGSPEC2
desirer desiroys V;IPFV;IND;SG;1;PST;LGSPEC2
fraper frapoyent V;IPFV;IND;PL;3;PST;LGSPEC2
croniquier croniquioient V;IPFV;IND;PL;3;PST;LGSPEC1
abiurer abiurerai V;IND;SG;1;FUT;LGSPEC1
saluer salueryons V;COND;PL;1;LGSPEC2
entreruyner s'entreruynerent V;PFV;IND;PL;3;PST
penser pensez V;IND;PL;2;PRS
amer ame V;IND;SG;3;PRS
empescher empeschyons V;IPFV;IND;PL;1;PST;LGSPEC2
mescler mesclent V;SBJV;PL;3;PRS
aller allas V;PFV;IND;SG;2;PST
marcher marcheray V;IND;SG;1;FUT;LGSPEC2
entrefraper vousentrefraperiez V;COND;PL;2;LGSPEC1
escrier escriera V;IND;SG;3;FUT
empenser empenserai V;IND;SG;1;FUT;LGSPEC1
acquiter acquitoys V;IPFV;IND;SG;1;PST;LGSPEC2
estre sois V;SBJV;SG;2;PRS;LGSPEC1
effreer effreiez V;IPFV;IND;PL;2;PST;LGSPEC1
espouser espouseroys V;COND;SG;1;LGSPEC2
estirer estireroys V;COND;SG;1;LGSPEC2
avoir aiez V;IMP;PL;2;LGSPEC2
marier marieroys V;COND;SG;2;LGSPEC2
noter notent V;SBJV;PL;3;PRS
coniecturer coniecturions V;IPFV;IND;PL;1;PST;LGSPEC1
apatir apatissoient V;IPFV;IND;PL;3;PST;LGSPEC1
rouiller rouillassions V;IPFV;SBJV;PL;1;PST
logier logions V;IPFV;IND;PL;1;PST;LGSPEC1
emboucher embouchiez V;IPFV;IND;PL;2;PST;LGSPEC1
ralier raliois V;IPFV;IND;SG;1;PST;LGSPEC1
faire faites V;IMP;PL;2
cryer cryeroyt V;COND;SG;3;LGSPEC2
prester prestent V;IND;PL;3;PRS
oultrager oultragerent V;PFV;IND;PL;3;PST
achever achevons V;IMP;PL;1
combiner combinoyt V;IPFV;IND;SG;3;PST;LGSPEC2
souspirer souspireryez V;COND;PL;2;LGSPEC2
penser pensent V;SBJV;PL;3;PRS
estoffer estofferyons V;COND;PL;1;LGSPEC2
deschevaucher deschevauchons V;IMP;PL;1
destacher destacha V;PFV;IND;SG;1;PST
entredesirer s'entredesirassent V;IPFV;SBJV;PL;3;PST
escorcher escorches V;SBJV;SG;2;PRS
louer loues V;SBJV;SG;2;PRS
eschieller escielles V;IND;SG;2;PRS
fortifier fortifie V;SBJV;SG;1;PRS
faire faisoyent V;IPFV;IND;PL;3;PST;LGSPEC2
saluer saluerent V;PFV;IND;PL;3;PST
advouer advouerois V;COND;SG;1;LGSPEC1
espier espiez V;IMP;PL;2
presupposer presupposasse V;IPFV;SBJV;SG;1;PST
trembler tremblassiez V;IPFV;SBJV;PL;2;PST
espargner espargnes V;IND;SG;2;PRS
desrobber desrobbent V;IND;PL;3;PRS
baiser baisoys V;IPFV;IND;SG;1;PST;LGSPEC2
seiourner seiournent V;IND;PL;3;PRS
courroucer courrouceroys V;COND;SG;1;LGSPEC2
encommencer encommencerai V;IND;SG;1;FUT;LGSPEC1
desbaucher desbaucheroys V;COND;SG;2;LGSPEC2
endommaiger endommaigera V;IND;SG;3;FUT
delaisser delaissoys V;IPFV;IND;SG;2;PST;LGSPEC2
praesider praesidiez V;IPFV;IND;PL;2;PST;LGSPEC1
rouiller rouillez V;IND;PL;2;PRS
negotier negotiassent V;IPFV;SBJV;PL;3;PST
subiuger subiugerois V;COND;SG;2;LGSPEC1
aorner aorneryons V;COND;PL;1;LGSPEC2
demesler demesleroyt V;COND;SG;3;LGSPEC2
allaicter allaictois V;IPFV;IND;SG;2;PST;LGSPEC1
avoir aura V;IND;SG;3;FUT
impugner impugnes V;SBJV;SG;2;PRS
evaporer evaporeroient V;COND;PL;3;LGSPEC1
aerer aeryez V;IPFV;IND;PL;2;PST;LGSPEC2
esbaucher esbauchions V;IPFV;IND;PL;1;PST;LGSPEC1
renfler renfleray V;IND;SG;1;FUT;LGSPEC2
singler singleras V;IND;SG;2;FUT
tabuster tabusta V;PFV;IND;SG;3;PST
seiourner seiournez V;IND;PL;2;PRS
foetter foetteroient V;COND;PL;3;LGSPEC1
serainer serainoys V;IPFV;IND;SG;1;PST;LGSPEC2
aorner aorneryez V;COND;PL;2;LGSPEC2
expeller expelleras V;IND;SG;2;FUT
resider resides V;SBJV;SG;2;PRS
espouser espouseroient V;COND;PL;3;LGSPEC1
praesenter praesentions V;IPFV;IND;PL;1;PST;LGSPEC1
encommencer encommence V;IMP;SG;2
persuader persuaderez V;IND;PL;2;FUT
detester detestassent V;IPFV;SBJV;PL;3;PST
bancqueter bancquetassions V;IPFV;SBJV;PL;1;PST
manger mangeoit V;IPFV;IND;SG;3;PST;LGSPEC1
surnommer surnomme V;SBJV;SG;1;PRS
sceller scelle V;IND;SG;3;PRS
espier espieroyent V;COND;PL;3;LGSPEC2
achapter achapte V;SBJV;SG;1;PRS
desrober desroberoient V;COND;PL;3;LGSPEC1
doubter doubtiez V;IPFV;IND;PL;2;PST;LGSPEC1
hostoier hostoioys V;IPFV;IND;SG;2;PST;LGSPEC2
esvertuer esvertueront V;IND;PL;3;FUT
effectuer effectue V;IND;SG;3;PRS
subiuguier subiugue V;IND;SG;3;PRS
oublyer oublyas V;PFV;IND;SG;2;PST
sembler sembla V;PFV;IND;SG;1;PST
passer passeray V;IND;SG;1;FUT;LGSPEC2
transporter transportassions V;IPFV;SBJV;PL;1;PST
appareiller appareillas V;PFV;IND;SG;2;PST
achapter achapteray V;IND;SG;1;FUT;LGSPEC2
traitter traitterons V;IND;PL;1;FUT
presupposer presupposasses V;IPFV;SBJV;SG;2;PST
esmerveillier esmerveilloys V;IPFV;IND;SG;2;PST;LGSPEC2
macter macte V;IND;SG;3;PRS
escouter escoutoient V;IPFV;IND;PL;3;PST;LGSPEC1
habiter habiterent V;PFV;IND;PL;3;PST
abayer abayois V;IPFV;IND;SG;2;PST;LGSPEC1
escorner escornerai V;IND;SG;1;FUT;LGSPEC1
recuperer recuperassiez V;IPFV;SBJV;PL;2;PST
acquiter acquitasmes V;PFV;IND;PL;1;PST
emprunter empruntoys V;IPFV;IND;SG;2;PST;LGSPEC2
celebrer celebre V;IND;SG;3;PRS
tomber tomboys V;IPFV;IND;SG;2;PST;LGSPEC2
derver derverez V;IND;PL;2;FUT
condescendre condescendroie V;COND;SG;1;LGSPEC1
communicquer communicquiez V;IPFV;IND;PL;2;PST;LGSPEC1
traveillier traveilloys V;IPFV;IND;SG;1;PST;LGSPEC2
noter notiez V;IPFV;IND;PL;2;PST;LGSPEC1
escrier escrieriez V;COND;PL;2;LGSPEC1
entrefraper entrefrapoyent V;IPFV;IND;PL;3;PST;LGSPEC2
manger manges V;IND;SG;2;PRS
espier espioyt V;IPFV;IND;SG;3;PST;LGSPEC2
enpoisonner enpoisonnerois V;COND;SG;2;LGSPEC1
reietter reiettent V;SBJV;PL;3;PRS
encliner enclinoient V;IPFV;IND;PL;3;PST;LGSPEC1
representer representoys V;IPFV;IND;SG;2;PST;LGSPEC2
ordonner ordonnassiez V;IPFV;SBJV;PL;2;PST
gaigner gaignassent V;IPFV;SBJV;PL;3;PST
mocquer mocqueroyent V;COND;PL;3;LGSPEC2
evaporer evaporerois V;COND;SG;2;LGSPEC1
guarder guardoyt V;IPFV;IND;SG;3;PST;LGSPEC2
reietter reietteroyt V;COND;SG;3;LGSPEC2
desregler desregla V;PFV;IND;SG;1;PST
flechir fleschit V;PFV;IND;SG;3;PST
baptiser baptisoyt V;IPFV;IND;SG;3;PST;LGSPEC2
pacquer pacquasse V;IPFV;SBJV;SG;1;PST
debaracer debaraçois V;IPFV;IND;SG;2;PST;LGSPEC1
remercyer remercyeroys V;COND;SG;1;LGSPEC2
tirer tiryez V;IPFV;IND;PL;2;PST;LGSPEC2
mesler meslois V;IPFV;IND;SG;2;PST;LGSPEC1
deliberer delibereroyent V;COND;PL;3;LGSPEC2
acoustumer acoustumes V;IND;SG;2;PRS
mouscher mouscha V;PFV;IND;SG;3;PST
reverer reverer V;NFIN
luitter luittois V;IPFV;IND;SG;1;PST;LGSPEC1
translater translatez V;IND;PL;2;PRS
fraper frapoyt V;IPFV;IND;SG;3;PST;LGSPEC2
hebergier hebergieray V;IND;SG;1;FUT;LGSPEC2
fomenter fomentes V;SBJV;SG;2;PRS
destabler destablera V;IND;SG;3;FUT
ozer ozassions V;IPFV;SBJV;PL;1;PST
aterminer atermineroys V;COND;SG;1;LGSPEC2
iniurier iniurient V;SBJV;PL;3;PRS
quitter quitteriez V;COND;PL;2;LGSPEC1
escrier escrie V;IND;SG;1;PRS
pourchasser pourchasseroys V;COND;SG;2;LGSPEC2
nommer nommerois V;COND;SG;1;LGSPEC1
toquer toquoys V;IPFV;IND;SG;2;PST;LGSPEC2
oublyer oublyez V;IND;PL;2;PRS
devourer devoureroys V;COND;SG;2;LGSPEC2
alonger alongeront V;IND;PL;3;FUT
saulver saulvoyent V;IPFV;IND;PL;3;PST;LGSPEC2
iecter iecterois V;COND;SG;1;LGSPEC1
fortifier fortifiassions V;IPFV;SBJV;PL;1;PST
desrobber desrobberyons V;COND;PL;1;LGSPEC2
practicquer practicquions V;IPFV;IND;PL;1;PST;LGSPEC1
blasphemer blasphemions V;IPFV;IND;PL;1;PST;LGSPEC1
alterer altera V;PFV;IND;SG;3;PST
besoinger besoignons V;IMP;PL;1
entrer entreryez V;COND;PL;2;LGSPEC2
cauterizer cauterizasses V;IPFV;SBJV;SG;2;PST
diviner divineras V;IND;SG;2;FUT
deschevaucher deschevaucheryons V;COND;PL;1;LGSPEC2
traveillier traveillierois V;COND;SG;2;LGSPEC1
protester protestiez V;IPFV;IND;PL;2;PST;LGSPEC1
desplacer desplaceriez V;COND;PL;2;LGSPEC1
conquester conquestons V;IND;PL;1;PRS
confesser confessez V;SBJV;PL;2;PRS
abiurer abiurez V;SBJV;PL;2;PRS
esperer espereroyt V;COND;SG;3;LGSPEC2
passer passera V;IND;SG;3;FUT
travailler travaillerois V;COND;SG;2;LGSPEC1
estouffer estouffer V;NFIN
enhorter enhorter V;NFIN
uriner urineray V;IND;SG;1;FUT;LGSPEC2
mulcter mulcteroys V;COND;SG;2;LGSPEC2
intoxiquer intoxiquyons V;IPFV;IND;PL;1;PST;LGSPEC2
mascher maschyons V;IPFV;IND;PL;1;PST;LGSPEC2
invader invaderoit V;COND;SG;3;LGSPEC1
quiter quitoit V;IPFV;IND;SG;3;PST;LGSPEC1
rappeller rappellois V;IPFV;IND;SG;1;PST;LGSPEC1
practicquer practicqueryez V;COND;PL;2;LGSPEC2
atacher ataches V;IND;SG;2;PRS
acoustrer acoustre V;IND;SG;3;PRS
desirer desirer V;NFIN
desrouter desroutoys V;IPFV;IND;SG;1;PST;LGSPEC2
gangler gangloient V;IPFV;IND;PL;3;PST;LGSPEC1
pausmer pausmois V;IPFV;IND;SG;2;PST;LGSPEC1
habiter habiteront V;IND;PL;3;FUT
quitter quitte V;IMP;SG;2
deslacer delace V;IND;SG;3;PRS
emboucher embouchez V;IMP;PL;2
contrepoiser contrepoisent V;SBJV;PL;3;PRS
sceller scellez V;SBJV;PL;2;PRS
proclamer proclamons V;IND;PL;1;PRS
desheriter desheritois V;IPFV;IND;SG;2;PST;LGSPEC1
louer louassions V;IPFV;SBJV;PL;1;PST
presenter presentasmes V;PFV;IND;PL;1;PST
respirer respireroyt V;COND;SG;3;LGSPEC2
logier logyez V;IPFV;IND;PL;2;PST;LGSPEC2
revencher revencherois V;COND;SG;2;LGSPEC1
entrer entroyt V;IPFV;IND;SG;3;PST;LGSPEC2
denunchier denunchierions V;COND;PL;1;LGSPEC1
fortiffier fortiffiasmes V;PFV;IND;PL;1;PST
eschieller esciellerois V;COND;SG;1;LGSPEC1
desborder desborde V;IND;SG;1;PRS
mesler mesleras V;IND;SG;2;FUT
picquer picquyez V;IPFV;IND;PL;2;PST;LGSPEC2
cabasser cabasseroyent V;COND;PL;3;LGSPEC2
gaber gabastes V;PFV;IND;PL;2;PST
tuer tuent V;SBJV;PL;3;PRS
desancrer desancrera V;IND;SG;3;FUT
moderer modere V;IND;SG;3;PRS
atourner atourne V;IMP;SG;2
trousser troussent V;SBJV;PL;3;PRS
mulcter mulcterai V;IND;SG;1;FUT;LGSPEC1
verifier verifierai V;IND;SG;1;FUT;LGSPEC1
esternuer esternuerons V;IND;PL;1;FUT
effreer effreons V;IND;PL;1;PRS
delivrer delivrasses V;IPFV;SBJV;SG;2;PST
dampner dampneroyt V;COND;SG;3;LGSPEC2
ymaginer ymaginoys V;IPFV;IND;SG;2;PST;LGSPEC2
estimer estimera V;IND;SG;3;FUT
gaspiller gaspilliez V;IPFV;IND;PL;2;PST;LGSPEC1
despuceller despucellassent V;IPFV;SBJV;PL;3;PST
avaller avalleriez V;COND;PL;2;LGSPEC1
desheriter desheriterons V;IND;PL;1;FUT
veiller veilleroyent V;COND;PL;3;LGSPEC2
fiancer fiance V;SBJV;SG;1;PRS
enpoisonner enpoisonneras V;IND;SG;2;FUT
blasphemer blasphemerez V;IND;PL;2;FUT
mercyer mercye V;SBJV;SG;3;PRS
resigner resignas V;PFV;IND;SG;2;PST
laidenger laidenge V;IMP;SG;2
provocquer provocquoit V;IPFV;IND;SG;3;PST;LGSPEC1
baptizer baptizeras V;IND;SG;2;FUT
renger renge V;IMP;SG;2
estourdir estourdissoys V;IPFV;IND;SG;2;PST;LGSPEC2
achever acheveroyent V;COND;PL;3;LGSPEC2
participer participeray V;IND;SG;1;FUT;LGSPEC2
galoper galope V;SBJV;SG;3;PRS
doubter doubte V;SBJV;SG;3;PRS
desconseiller desconseillyez V;IPFV;IND;PL;2;PST;LGSPEC2
resider residassiez V;IPFV;SBJV;PL;2;PST
preparer preparez V;IMP;PL;2
retourner retourneriez V;COND;PL;2;LGSPEC1
renouveller renouvellassent V;IPFV;SBJV;PL;3;PST
gouster goustoit V;IPFV;IND;SG;3;PST;LGSPEC1
entrefraper s'entrefrapassent V;IPFV;SBJV;PL;3;PST
advancer advance V;SBJV;SG;3;PRS
seeller seelleront V;IND;PL;3;FUT
nettoyer nettoyois V;IPFV;IND;SG;1;PST;LGSPEC1
luitter luittez V;SBJV;PL;2;PRS
embler embleroys V;COND;SG;1;LGSPEC2
tourmenter tourmentyez V;IPFV;IND;PL;2;PST;LGSPEC2
quester questeroient V;COND;PL;3;LGSPEC1
tumber tumboyent V;IPFV;IND;PL;3;PST;LGSPEC2
escouter escoutent V;SBJV;PL;3;PRS
chanter chantas V;PFV;IND;SG;2;PST
toquer toquez V;IMP;PL;2
toucher touchez V;IMP;PL;2
desplacer desplaceray V;IND;SG;1;FUT;LGSPEC2
essayer essayasse V;IPFV;SBJV;SG;1;PST
demesler demeslerez V;IND;PL;2;FUT
donner donnent V;IND;PL;3;PRS
affamer affamerois V;COND;SG;2;LGSPEC1
gaigner gaignyons V;IPFV;IND;PL;1;PST;LGSPEC2
achapter achapterent V;PFV;IND;PL;3;PST
traittier traittierent V;PFV;IND;PL;3;PST
despencer despençasse V;IPFV;SBJV;SG;1;PST
entrencontrer entrencontreryons V;COND;PL;1;LGSPEC2
advancer advancerez V;IND;PL;2;FUT
estimer estime V;IND;SG;1;PRS
advancer advanceroit V;COND;SG;3;LGSPEC1
enchargier enchargea V;PFV;IND;SG;1;PST
desrisier desrisa V;PFV;IND;SG;3;PST
fouller foullassions V;IPFV;SBJV;PL;1;PST
desguiser desguiseroit V;COND;SG;3;LGSPEC1
tocquer tocquast V;IPFV;SBJV;SG;3;PST
offencer offençois V;IPFV;IND;SG;2;PST;LGSPEC1
advouer advouoit V;IPFV;IND;SG;3;PST;LGSPEC1
contreroller contrerollasse V;IPFV;SBJV;SG;1;PST
destourner destournerai V;IND;SG;1;FUT;LGSPEC1
gaimenter gaimenteroit V;COND;SG;3;LGSPEC1
gouverner gouvernast V;IPFV;SBJV;SG;3;PST
bayser bayserions V;COND;PL;1;LGSPEC1
raporter raportyons V;IPFV;IND;PL;1;PST;LGSPEC2
coniecturer coniecture V;SBJV;SG;3;PRS
assister assisteront V;IND;PL;3;FUT
pasturer pasturons V;IMP;PL;1
emboucher emboucherez V;IND;PL;2;FUT
condescendre condescendoient V;IPFV;IND;PL;3;PST;LGSPEC1
possesser possessasses V;IPFV;SBJV;SG;2;PST
aller allasmes V;PFV;IND;PL;1;PST
veiller veilleryons V;COND;PL;1;LGSPEC2
fortiffier fortiffierois V;COND;SG;1;LGSPEC1
aloser aloseroys V;COND;SG;2;LGSPEC2
cacher cachasmes V;PFV;IND;PL;1;PST
quitter quittasses V;IPFV;SBJV;SG;2;PST
quiter quityons V;IPFV;IND;PL;1;PST;LGSPEC2
esvanter esvanteryons V;COND;PL;1;LGSPEC2
empenser empensassiez V;IPFV;SBJV;PL;2;PST
creancer creanceras V;IND;SG;2;FUT
viser viseroyent V;COND;PL;3;LGSPEC2
chercher cherche V;SBJV;SG;3;PRS
desieuner desieunyez V;IPFV;IND;PL;2;PST;LGSPEC2
accepter acceptent V;SBJV;PL;3;PRS
proffiter proffite V;IND;SG;1;PRS
enconvenencier enconvenencieroit V;COND;SG;3;LGSPEC1
rouller roulleroyent V;COND;PL;3;LGSPEC2
rappeller rappelloient V;IPFV;IND;PL;3;PST;LGSPEC1
effreer effreent V;IND;PL;3;PRS
esparpiller esparpillois V;IPFV;IND;SG;2;PST;LGSPEC1
preceder precedassions V;IPFV;SBJV;PL;1;PST
occuper occupent V;SBJV;PL;3;PRS
posseder possederent V;PFV;IND;PL;3;PST
prester presteray V;IND;SG;1;FUT;LGSPEC2
redrechier redrechieras V;IND;SG;2;FUT
marier mariyons V;IPFV;IND;PL;1;PST;LGSPEC2
auser auseroit V;COND;SG;3;LGSPEC1
heurter heurteroys V;COND;SG;1;LGSPEC2
renouveller renouvellerions V;COND;PL;1;LGSPEC1
getter gettions V;IPFV;IND;PL;1;PST;LGSPEC1
tremper tremperois V;COND;SG;2;LGSPEC1
esclairer esclaireroient V;COND;PL;3;LGSPEC1
gaimenter gaimente V;IMP;SG;2
executer executent V;IND;PL;3;PRS
seiourner seiournes V;SBJV;SG;2;PRS
leicher leichyez V;IPFV;IND;PL;2;PST;LGSPEC2
derver derverai V;IND;SG;1;FUT;LGSPEC1
apuyer apuyoys V;IPFV;IND;SG;2;PST;LGSPEC2
demander demandions V;IPFV;IND;PL;1;PST;LGSPEC1
deliberer deliberastes V;PFV;IND;PL;2;PST
nouer noueryez V;COND;PL;2;LGSPEC2
foetter foetteryez V;COND;PL;2;LGSPEC2
ployer ployeroient V;COND;PL;3;LGSPEC1
robber robbez V;IND;PL;2;PRS
provocquer provocquons V;IMP;PL;1
donner donnastes V;PFV;IND;PL;2;PST
detester detesterons V;IND;PL;1;FUT
despencer despence V;IMP;SG;2
encharger enchargeons V;SBJV;PL;1;PRS
veigler veiglasses V;IPFV;SBJV;SG;2;PST
regorger regorgeasse V;IPFV;SBJV;SG;1;PST
approuvender approuvende V;SBJV;SG;1;PRS
desbaucher desbauchoys V;IPFV;IND;SG;2;PST;LGSPEC2
pourmener pourmena V;PFV;IND;SG;1;PST
preparer preparassions V;IPFV;SBJV;PL;1;PST
fascher faschasmes V;PFV;IND;PL;1;PST
remonstrer remonstrassiez V;IPFV;SBJV;PL;2;PST
prier priasse V;IPFV;SBJV;SG;1;PST
faucer fauças V;PFV;IND;SG;2;PST
aterminer atermineroys V;COND;SG;2;LGSPEC2
veiller veillez V;SBJV;PL;2;PRS
deschirer deschireras V;IND;SG;2;FUT
quitter quittes V;SBJV;SG;2;PRS
approuchier approuchions V;IPFV;IND;PL;1;PST;LGSPEC1
accorder accordyez V;IPFV;IND;PL;2;PST;LGSPEC2
traicter tractent V;SBJV;PL;3;PRS
delaisser delaissyons V;IPFV;IND;PL;1;PST;LGSPEC2
entrempescher nousentrempescherions V;COND;PL;1;LGSPEC1
explicquer explicquassions V;IPFV;SBJV;PL;1;PST
logier logeastes V;PFV;IND;PL;2;PST
raporter raporterois V;COND;SG;2;LGSPEC1
descharger descharge V;IND;SG;1;PRS
esmayer esmayoys V;IPFV;IND;SG;2;PST;LGSPEC2
alonger alongerai V;IND;SG;1;FUT;LGSPEC1
rincer rince V;IND;SG;1;PRS
remonstrer remonstrastes V;PFV;IND;PL;2;PST
raporter raporter V;NFIN
amer ament V;SBJV;PL;3;PRS
hacher hacha V;PFV;IND;SG;3;PST
tocquer tocquastes V;PFV;IND;PL;2;PST
donner donnassiez V;IPFV;SBJV;PL;2;PST
deschainer deschainerons V;IND;PL;1;FUT
accomplir accompliroit V;COND;SG;3;LGSPEC1
resider residastes V;PFV;IND;PL;2;PST
atempter atemptois V;IPFV;IND;SG;2;PST;LGSPEC1
accointer accointons V;IMP;PL;1
adviser adviserions V;COND;PL;1;LGSPEC1
surnommer surnommasses V;IPFV;SBJV;SG;2;PST
cauterizer cauterize V;IMP;SG;2
encharger enchargyons V;IPFV;IND;PL;1;PST;LGSPEC2
avoyr eussiez V;IPFV;SBJV;PL;2;PST
esgaler esgaler V;NFIN
apuyer apuye V;IND;SG;1;PRS
accepter acceptons V;IND;PL;1;PRS
accuser accuserois V;COND;SG;2;LGSPEC1
fluir fluiroyent V;COND;PL;3;LGSPEC2
renommer renommiez V;IPFV;IND;PL;2;PST;LGSPEC1
persuader persuaderoys V;COND;SG;1;LGSPEC2
entrehurter nous entrehurterons V;IND;PL;1;FUT
creancer creançasse V;IPFV;SBJV;SG;1;PST
brusler brusles V;SBJV;SG;2;PRS
geller gelle V;IMP;SG;2
jecter jectasse V;IPFV;SBJV;SG;1;PST
trouver trouverons V;IND;PL;1;FUT
approuvender approuvendent V;IND;PL;3;PRS
presenter presente V;IND;SG;1;PRS
effreer effreasses V;IPFV;SBJV;SG;2;PST
obliger obligyez V;IPFV;IND;PL;2;PST;LGSPEC2
pacquer pacquassent V;IPFV;SBJV;PL;3;PST
bayser baysassent V;IPFV;SBJV;PL;3;PST
expeller expellons V;IND;PL;1;PRS
aracher aracheryons V;COND;PL;1;LGSPEC2
avaller avallez V;IMP;PL;2
tesmoigner tesmoignoit V;IPFV;IND;SG;3;PST;LGSPEC1
fortifier fortifiyez V;IPFV;IND;PL;2;PST;LGSPEC2
manger mangeriez V;COND;PL;2;LGSPEC1
approuchier approuchiez V;SBJV;PL;2;PRS
empirer empires V;IND;SG;2;PRS
minorer minorasse V;IPFV;SBJV;SG;1;PST
sembler semblez V;IMP;PL;2
serainer serainasmes V;PFV;IND;PL;1;PST
remercyer remercyassent V;IPFV;SBJV;PL;3;PST
endommaiger endommaigerois V;COND;SG;1;LGSPEC1
alonger alongerois V;COND;SG;1;LGSPEC1
serainer seraine V;SBJV;SG;3;PRS
amadouer amadouois V;IPFV;IND;SG;1;PST;LGSPEC1
preceder precede V;SBJV;SG;3;PRS
faucer fauçastes V;PFV;IND;PL;2;PST
ieusner ieusnyez V;IPFV;IND;PL;2;PST;LGSPEC2
commencer commençoys V;IPFV;IND;SG;2;PST;LGSPEC2
atacher atacherez V;IND;PL;2;FUT
recommander recommandent V;SBJV;PL;3;PRS
abayer abayois V;IPFV;IND;SG;1;PST;LGSPEC1
heiler heilerons V;IND;PL;1;FUT
estouffer estouffe V;IND;SG;3;PRS
despuceller despucelleray V;IND;SG;1;FUT;LGSPEC2
enconvenencier enconvenencieryons V;COND;PL;1;LGSPEC2
desrouter desroutons V;IND;PL;1;PRS
effronter effronter V;NFIN
regratier regratiois V;IPFV;IND;SG;1;PST;LGSPEC1
ozer ozeray V;IND;SG;1;FUT;LGSPEC2
descharger deschargerez V;IND;PL;2;FUT
quester questons V;IND;PL;1;PRS
doubter doubtyons V;IPFV;IND;PL;1;PST;LGSPEC2
deslacer delace V;IND;SG;1;PRS
separer separoys V;IPFV;IND;SG;2;PST;LGSPEC2
asseurer asseuroyt V;IPFV;IND;SG;3;PST;LGSPEC2
subiecter subiectoys V;IPFV;IND;SG;2;PST;LGSPEC2
effronter effronteras V;IND;SG;2;FUT
estimer estimions V;IPFV;IND;PL;1;PST;LGSPEC1
estacher estachons V;SBJV;PL;1;PRS
estonner estonnerons V;IND;PL;1;FUT
pryer pryerois V;COND;SG;1;LGSPEC1
baster bastoyent V;IPFV;IND;PL;3;PST;LGSPEC2
mescler mesclions V;IPFV;IND;PL;1;PST;LGSPEC1
reigler reiglassions V;IPFV;SBJV;PL;1;PST
desnouer desnoua V;PFV;IND;SG;1;PST
regretter regrettez V;IND;PL;2;PRS
resumer resumoyent V;IPFV;IND;PL;3;PST;LGSPEC2
esmerveillier esmerveilliez V;IMP;PL;2
resister resisteryons V;COND;PL;1;LGSPEC2
alimenter alimenta V;PFV;IND;SG;3;PST
derver derva V;PFV;IND;SG;1;PST
presumer presumast V;IPFV;SBJV;SG;3;PST
honnourer honnouras V;PFV;IND;SG;2;PST
aerer aeres V;SBJV;SG;2;PRS
alterer alteroyent V;IPFV;IND;PL;3;PST;LGSPEC2
praesenter praesentoyent V;IPFV;IND;PL;3;PST;LGSPEC2
lascher laschois V;IPFV;IND;SG;2;PST;LGSPEC1
esmayer esmayasse V;IPFV;SBJV;SG;1;PST
escorcher escorchassent V;IPFV;SBJV;PL;3;PST
pourchasser pourchassassions V;IPFV;SBJV;PL;1;PST
mensongier mensonge V;SBJV;SG;1;PRS
grapper grapperent V;PFV;IND;PL;3;PST
brusler brusleras V;IND;SG;2;FUT
esgaler esgalerons V;IND;PL;1;FUT
emerger emergera V;IND;SG;3;FUT
desarmer desarmes V;IND;SG;2;PRS
edifier edifiera V;IND;SG;3;FUT
donner donnerent V;PFV;IND;PL;3;PST
accuser accuseras V;IND;SG;2;FUT
aboscher aboschez V;SBJV;PL;2;PRS
rebarber rebarbez V;IND;PL;2;PRS
heiler heilons V;SBJV;PL;1;PRS
eschapper eschapperois V;COND;SG;2;LGSPEC1
enseignier enseignerions V;COND;PL;1;LGSPEC1
esloigner esloigneront V;IND;PL;3;FUT
escouter escoute V;IND;SG;3;PRS
vengier vengions V;IND;PL;1;PRS
soingner soingneroyt V;COND;SG;3;LGSPEC2
demonstrer demonstriez V;IPFV;IND;PL;2;PST;LGSPEC1
foetter foetteras V;IND;SG;2;FUT
mercyer mercyoient V;IPFV;IND;PL;3;PST;LGSPEC1
iecter iectons V;IND;PL;1;PRS
moderer moderons V;IMP;PL;1
sceller scelle V;SBJV;SG;1;PRS
contrepoiser contrepoiserez V;IND;PL;2;FUT
exposer exposer V;NFIN
persuader persuadassent V;IPFV;SBJV;PL;3;PST
transgloutir transgloutisse V;SBJV;SG;1;PRS
bancqueter bancqueterois V;COND;SG;2;LGSPEC1
desrisier desrisions V;IND;PL;1;PRS
eschauffer eschauffons V;SBJV;PL;1;PRS
merveiller merveillasmes V;PFV;IND;PL;1;PST
advancer advance V;IND;SG;1;PRS
abiurer abiureroys V;COND;SG;2;LGSPEC2
desborder desbordoient V;IPFV;IND;PL;3;PST;LGSPEC1
desconseiller desconseillasses V;IPFV;SBJV;SG;2;PST
eschauffer eschauffions V;IPFV;IND;PL;1;PST;LGSPEC1
ployer ployoyt V;IPFV;IND;SG;3;PST;LGSPEC2
renommer renommez V;SBJV;PL;2;PRS
seiourner seiourne V;IMP;SG;2
enhorter enhortoys V;IPFV;IND;SG;2;PST;LGSPEC2
practicquer practicquer V;NFIN
entreruyner vous entreruynez V;SBJV;PL;2;PRS
aguyser aguysoyent V;IPFV;IND;PL;3;PST;LGSPEC2
achapter achaptions V;IPFV;IND;PL;1;PST;LGSPEC1
vuider vuideroyt V;COND;SG;3;LGSPEC2
racompter racomptes V;IND;SG;2;PRS
voller vollyons V;IPFV;IND;PL;1;PST;LGSPEC2
communicquer communicqua V;PFV;IND;SG;3;PST
supposer supposois V;IPFV;IND;SG;2;PST;LGSPEC1
regretter regretteriez V;COND;PL;2;LGSPEC1
tourner tourneryons V;COND;PL;1;LGSPEC2
deschirer deschirois V;IPFV;IND;SG;1;PST;LGSPEC1
enferrer enferreroient V;COND;PL;3;LGSPEC1
saluer salues V;IND;SG;2;PRS
mescler mesclez V;SBJV;PL;2;PRS
remercyer remercyerent V;PFV;IND;PL;3;PST
esguarer esguareroit V;COND;SG;3;LGSPEC1
desadvouer desadvouastes V;PFV;IND;PL;2;PST
saluer saluoyent V;IPFV;IND;PL;3;PST;LGSPEC2
melancholier melancholieroys V;COND;SG;1;LGSPEC2
esmayer esmayoit V;IPFV;IND;SG;3;PST;LGSPEC1
desieuner desieunasse V;IPFV;SBJV;SG;1;PST
solliciter sollicitoys V;IPFV;IND;SG;2;PST;LGSPEC2
habiter habiteroyt V;COND;SG;3;LGSPEC2
protester protesta V;PFV;IND;SG;1;PST
deslacer delaçoyent V;IPFV;IND;PL;3;PST;LGSPEC2
deifier deifiyez V;IPFV;IND;PL;2;PST;LGSPEC2
desgorger desgorgeasmes V;PFV;IND;PL;1;PST
estirer estirent V;IND;PL;3;PRS
esclairer esclairerons V;IND;PL;1;FUT
explicquer explicquastes V;PFV;IND;PL;2;PST
mensongier mensongieroyt V;COND;SG;3;LGSPEC2
eriger erigeas V;PFV;IND;SG;2;PST
edifier edifient V;IND;PL;3;PRS
aguyser aguysois V;IPFV;IND;SG;2;PST;LGSPEC1
sembler semblent V;IND;PL;3;PRS
raenchonner raenchonnerions V;COND;PL;1;LGSPEC1
debaracer debaracera V;IND;SG;3;FUT
recouvrer recouvrent V;IND;PL;3;PRS
desver desvons V;SBJV;PL;1;PRS
meriter meritons V;IND;PL;1;PRS
oublyer oublyons V;IMP;PL;1
preparer preparyons V;IPFV;IND;PL;1;PST;LGSPEC2
lyer lyoyent V;IPFV;IND;PL;3;PST;LGSPEC2
encharger enchargerois V;COND;SG;2;LGSPEC1
esvanter esvantent V;SBJV;PL;3;PRS
presumer presumoys V;IPFV;IND;SG;2;PST;LGSPEC2
retirer retiroys V;IPFV;IND;SG;1;PST;LGSPEC2
enferrer enferreront V;IND;PL;3;FUT
sembler semblyons V;IPFV;IND;PL;1;PST;LGSPEC2
logier logea V;PFV;IND;SG;3;PST
ozer ozasse V;IPFV;SBJV;SG;1;PST
baster bastent V;IND;PL;3;PRS
conseiller conseillasmes V;PFV;IND;PL;1;PST
allaicter allaictez V;IMP;PL;2
encontrer encontreray V;IND;SG;1;FUT;LGSPEC2
acoustrer acoustrons V;IMP;PL;1
lever leviez V;IPFV;IND;PL;2;PST;LGSPEC1
donner donneras V;IND;SG;2;FUT
apatir apatissiez V;IPFV;SBJV;PL;2;PST
importuner importuneras V;IND;SG;2;FUT
abiurer abiurons V;SBJV;PL;1;PRS
traittier traittieras V;IND;SG;2;FUT
desieuner desieunast V;IPFV;SBJV;SG;3;PST
garder gardoient V;IPFV;IND;PL;3;PST;LGSPEC1
iouer iouerent V;PFV;IND;PL;3;PST
bransler bransloient V;IPFV;IND;PL;3;PST;LGSPEC1
regorger regorgeassent V;IPFV;SBJV;PL;3;PST
mocquer mocquera V;IND;SG;3;FUT
enconcher enconchois V;IPFV;IND;SG;1;PST;LGSPEC1
desmettre desmistes V;PFV;IND;PL;2;PST
prattiquer prattiquions V;IPFV;IND;PL;1;PST;LGSPEC1
escorcher escorcheroyent V;COND;PL;3;LGSPEC2
escorner escorneriez V;COND;PL;2;LGSPEC1
abiurer abiureroient V;COND;PL;3;LGSPEC1
conquester conquesteray V;IND;SG;1;FUT;LGSPEC2
abandonner abandonnes V;IND;SG;2;PRS
renommer renommeriez V;COND;PL;2;LGSPEC1
eslever eslevois V;IPFV;IND;SG;1;PST;LGSPEC1
fiancer fianceroys V;COND;SG;2;LGSPEC2
huer huoit V;IPFV;IND;SG;3;PST;LGSPEC1
emboucher embouches V;SBJV;SG;2;PRS
traittier traitte V;IND;SG;3;PRS
escrier escrierez V;IND;PL;2;FUT
affamer affamons V;IMP;PL;1
perser perseray V;IND;SG;1;FUT;LGSPEC2
r'asseurer r'asseurerons V;IND;PL;1;FUT
desmonter desmontez V;IND;PL;2;PRS
cryer cryerez V;IND;PL;2;FUT
recorder recordois V;IPFV;IND;SG;2;PST;LGSPEC1
protester protesterois V;COND;SG;1;LGSPEC1
endommaiger endommaigeras V;IND;SG;2;FUT
espoventer espoventes V;SBJV;SG;2;PRS
oublyer oublyez V;IMP;PL;2
nommer nommer V;NFIN
esguiser esguiserons V;IND;PL;1;FUT
estre estoient V;IPFV;IND;PL;3;PST;LGSPEC2
eviter evites V;SBJV;SG;2;PRS
hostoier hostoiassions V;IPFV;SBJV;PL;1;PST
geller gelloit V;IPFV;IND;SG;3;PST;LGSPEC1
ieuner ieuneriez V;COND;PL;2;LGSPEC1
contrepoiser contrepoisoyent V;IPFV;IND;PL;3;PST;LGSPEC2
haster hastons V;SBJV;PL;1;PRS
veigler veiglassions V;IPFV;SBJV;PL;1;PST
eslancer eslança V;PFV;IND;SG;1;PST
hacher hacha V;PFV;IND;SG;1;PST
gouverner gouvernez V;SBJV;PL;2;PRS
revencher revencheroient V;COND;PL;3;LGSPEC1
empieger empiege V;IND;SG;3;PRS
desrouter desrouterois V;COND;SG;1;LGSPEC1
navrer navryez V;IPFV;IND;PL;2;PST;LGSPEC2
minorer minorast V;IPFV;SBJV;SG;3;PST
ottroyer ottroyer V;NFIN
resumer resumerois V;COND;SG;1;LGSPEC1
iecter iecteroys V;COND;SG;2;LGSPEC2
brusler bruslerois V;COND;SG;1;LGSPEC1
fomenter fomentasses V;IPFV;SBJV;SG;2;PST
esgaler esgalent V;SBJV;PL;3;PRS
separer separastes V;PFV;IND;PL;2;PST
faire font V;IND;PL;3;PRS
encharger enchargerions V;COND;PL;1;LGSPEC1
superseder supersederoyt V;COND;SG;3;LGSPEC2
effronter effronterons V;IND;PL;1;FUT
respirer respirassent V;IPFV;SBJV;PL;3;PST
deschirer deschireryons V;COND;PL;1;LGSPEC2
accompaigner accompaigna V;PFV;IND;SG;1;PST
contreroller contrerollons V;IND;PL;1;PRS
estirer estirastes V;PFV;IND;PL;2;PST
monter montera V;IND;SG;3;FUT
confesser confessera V;IND;SG;3;FUT
impugner impugnerons V;IND;PL;1;FUT
desrobber desrobboit V;IPFV;IND;SG;3;PST;LGSPEC1
estouffer estouffe V;SBJV;SG;1;PRS
celebrer celebroyent V;IPFV;IND;PL;3;PST;LGSPEC2
menasser menasseras V;IND;SG;2;FUT
descourager descourageront V;IND;PL;3;FUT
picquer picquerois V;COND;SG;2;LGSPEC1
posseder possedez V;IMP;PL;2
hacher hachassent V;IPFV;SBJV;PL;3;PST
resigner resignyons V;IPFV;IND;PL;1;PST;LGSPEC2
lescher leschera V;IND;SG;3;FUT
essayer essayeroit V;COND;SG;3;LGSPEC1
escouter escoutent V;IND;PL;3;PRS
tomber tomboit V;IPFV;IND;SG;3;PST;LGSPEC1
recouvrer recouvrer V;NFIN
mettre mette V;SBJV;SG;1;PRS
translater translateryez V;COND;PL;2;LGSPEC2
ymaginer ymagines V;SBJV;SG;2;PRS
accepter acceptois V;IPFV;IND;SG;2;PST;LGSPEC1
esprouver esprouves V;IND;SG;2;PRS
baster basterois V;COND;SG;2;LGSPEC1
plaider plaidoit V;IPFV;IND;SG;3;PST;LGSPEC1
meriter meritassent V;IPFV;SBJV;PL;3;PST
escrier escriast V;IPFV;SBJV;SG;3;PST
atacher atacha V;PFV;IND;SG;3;PST
ralier ralieras V;IND;SG;2;FUT
arrester arreste V;IND;SG;3;PRS
embausmer embausmerois V;COND;SG;2;LGSPEC1
demander demandyons V;IPFV;IND;PL;1;PST;LGSPEC2
cesser cessions V;IPFV;IND;PL;1;PST;LGSPEC1
despossesser despossessons V;IND;PL;1;PRS
ralier ralioyent V;IPFV;IND;PL;3;PST;LGSPEC2
cointoier cointoiera V;IND;SG;3;FUT
soumectre soumirent V;PFV;IND;PL;3;PST
iouer ioueroyent V;COND;PL;3;LGSPEC2
enhorter enhorteroient V;COND;PL;3;LGSPEC1
persuader persuadasse V;IPFV;SBJV;SG;1;PST
tesmoigner tesmoigneroyt V;COND;SG;3;LGSPEC2
nouer nouerions V;COND;PL;1;LGSPEC1
entrencontrer s'entrencontroient V;IPFV;IND;PL;3;PST;LGSPEC1
espoventer espoventerois V;COND;SG;1;LGSPEC1
arroier arroierent V;PFV;IND;PL;3;PST
chocquer chocqueroys V;COND;SG;1;LGSPEC2
preceder precedions V;IPFV;IND;PL;1;PST;LGSPEC1
manger mangea V;PFV;IND;SG;3;PST
abiurer abiurez V;IMP;PL;2
explorer explorent V;SBJV;PL;3;PRS
buchier buche V;SBJV;SG;3;PRS
embausmer embausmerois V;COND;SG;1;LGSPEC1
besoinger besoigne V;SBJV;SG;1;PRS
accoustumer accoustumeriez V;COND;PL;2;LGSPEC1
eschever eschevez V;IND;PL;2;PRS
baptiser baptisoys V;IPFV;IND;SG;1;PST;LGSPEC2
abiurer abiuras V;PFV;IND;SG;2;PST
entituler entitulassiez V;IPFV;SBJV;PL;2;PST
resister resistasses V;IPFV;SBJV;SG;2;PST
accomplir accomplirions V;COND;PL;1
mouscher mousches V;SBJV;SG;2;PRS
contreroller contrerollyez V;IPFV;IND;PL;2;PST;LGSPEC2
mascher mascheroyent V;COND;PL;3;LGSPEC2
abboyer abboyassiez V;IPFV;SBJV;PL;2;PST
chocquer chocquerions V;COND;PL;1;LGSPEC1
escryer escryerez V;IND;PL;2;FUT
faire ferez V;IND;PL;2;FUT
expuyser expuysasse V;IPFV;SBJV;SG;1;PST
houssepillier houssepilla V;PFV;IND;SG;1;PST
ietter iette V;SBJV;SG;1;PRS
pecher pechast V;IPFV;SBJV;SG;3;PST
reserver reserveryons V;COND;PL;1;LGSPEC2
commencer commences V;IND;SG;2;PRS
deffier deffiassions V;IPFV;SBJV;PL;1;PST
mortifier mortifiera V;IND;SG;3;FUT
fumer fumyons V;IPFV;IND;PL;1;PST;LGSPEC2
bayser baysassiez V;IPFV;SBJV;PL;2;PST
despossesser despossesseriez V;COND;PL;2;LGSPEC1
esquacher esquachoyent V;IPFV;IND;PL;3;PST;LGSPEC2
assieger assiegeriez V;COND;PL;2;LGSPEC1
iouer ioueras V;IND;SG;2;FUT
assister assisteroys V;COND;SG;2;LGSPEC2
garder gardent V;IND;PL;3;PRS
raenchonner raenchonneryez V;COND;PL;2;LGSPEC2
endommaiger endommaigiez V;IPFV;IND;PL;2;PST;LGSPEC1
appareiller appareiller V;NFIN
desancrer desancreryons V;COND;PL;1;LGSPEC2
honnourer honnouroys V;IPFV;IND;SG;1;PST;LGSPEC2
arrester arresterez V;IND;PL;2;FUT
cesser cesserez V;IND;PL;2;FUT
arrester arresteryons V;COND;PL;1;LGSPEC2
desmettre desmettois V;IPFV;IND;SG;1;PST;LGSPEC1
creancer creancerons V;IND;PL;1;FUT
compter compteryez V;COND;PL;2;LGSPEC2
ordonner ordonnerions V;COND;PL;1;LGSPEC1
demourer demourons V;SBJV;PL;1;PRS
estacher estache V;SBJV;SG;1;PRS
poiser poiserez V;IND;PL;2;FUT
ployer ployyez V;IPFV;IND;PL;2;PST;LGSPEC2
commencer commençois V;IPFV;IND;SG;2;PST;LGSPEC1
redoubter redoubtassions V;IPFV;SBJV;PL;1;PST
arroier arroioys V;IPFV;IND;SG;1;PST;LGSPEC2
eslever eslevasse V;IPFV;SBJV;SG;1;PST
enferrer enferrions V;IPFV;IND;PL;1;PST;LGSPEC1
brusler brusloit V;IPFV;IND;SG;3;PST;LGSPEC1
chercher cherchyons V;IPFV;IND;PL;1;PST;LGSPEC2
importuner importunastes V;PFV;IND;PL;2;PST
presumer presument V;IND;PL;3;PRS
fascher faschions V;IPFV;IND;PL;1;PST;LGSPEC1
presenter presenteroyt V;COND;SG;3;LGSPEC2
soumectre soumets V;IMP;SG;2
ayder aydoys V;IPFV;IND;SG;1;PST;LGSPEC2
plier plions V;IMP;PL;1
estiquier estique V;IND;SG;3;PRS
engroisser engroisses V;SBJV;SG;2;PRS
praesenter praesenteroyent V;COND;PL;3;LGSPEC2
besoinger besoignerons V;IND;PL;1;FUT
regarder regardera V;IND;SG;3;FUT
derver derva V;PFV;IND;SG;3;PST
humilier humilions V;SBJV;PL;1;PRS
emerger emergeront V;IND;PL;3;FUT
tumber tumberont V;IND;PL;3;FUT
encommencer encommence V;SBJV;SG;3;PRS
contregarder contregarderois V;COND;SG;1;LGSPEC1
gouverner gouverneroys V;COND;SG;1;LGSPEC2
gaber gabes V;IND;SG;2;PRS
mocquer mocquer V;NFIN
perser persons V;IND;PL;1;PRS
effreer effree V;IND;SG;1;PRS
desinfecter desinfecta V;PFV;IND;SG;3;PST
uriner urinez V;SBJV;PL;2;PRS
desborder desborda V;PFV;IND;SG;3;PST
finer finois V;IPFV;IND;SG;2;PST;LGSPEC1
houer houyez V;IPFV;IND;PL;2;PST;LGSPEC2
enfelonner enfelonnons V;IMP;PL;1
regarder regarderas V;IND;SG;2;FUT
singler singliez V;IPFV;IND;PL;2;PST;LGSPEC1
pourpenser pourpensyons V;IPFV;IND;PL;1;PST;LGSPEC2
poiser poisast V;IPFV;SBJV;SG;3;PST
inviter inviterions V;COND;PL;1;LGSPEC1
esperer esperasses V;IPFV;SBJV;SG;2;PST
picquer picquast V;IPFV;SBJV;SG;3;PST
merveiller merveilleroys V;COND;SG;2;LGSPEC2
quitter quittastes V;PFV;IND;PL;2;PST
rejecter rejectera V;IND;SG;3;FUT
racointer racointe V;SBJV;SG;1;PRS
peser pesons V;IMP;PL;1
bobeliner bobeline V;SBJV;SG;1;PRS
reiecter reiecteray V;IND;SG;1;FUT;LGSPEC2
gaimenter gaimenterent V;PFV;IND;PL;3;PST
traitter traittera V;IND;SG;3;FUT
appareiller appareillerent V;PFV;IND;PL;3;PST
fumer fumons V;SBJV;PL;1;PRS
fumer fumerois V;COND;SG;1;LGSPEC1
entrefrapper nous entrefrappasmes V;PFV;IND;PL;1;PST
gaber gabez V;IND;PL;2;PRS
contrepoiser contrepoisasse V;IPFV;SBJV;SG;1;PST
faucer fauçois V;IPFV;IND;SG;2;PST;LGSPEC1
esguarer esguarerai V;IND;SG;1;FUT;LGSPEC1
apatir apatiroit V;COND;SG;3;LGSPEC1
posseder possedent V;SBJV;PL;3;PRS
melancholier melancholiassions V;IPFV;SBJV;PL;1;PST
accoustumer accoustume V;IND;SG;3;PRS
escapper escappent V;SBJV;PL;3;PRS
navrer navroyent V;IPFV;IND;PL;3;PST;LGSPEC2
esclairer esclairent V;SBJV;PL;3;PRS
baster basta V;PFV;IND;SG;1;PST
guerpir guerpissent V;SBJV;PL;3;PRS
besoinger besoignois V;IPFV;IND;SG;1;PST;LGSPEC1
chevauchier chevauchiez V;IMP;PL;2
prosperer prospererions V;COND;PL;1;LGSPEC1
tramper tramperoit V;COND;SG;3;LGSPEC1
redoubter redoubtera V;IND;SG;3;FUT
praesider praesident V;IND;PL;3;PRS
tromper trompons V;IND;PL;1;PRS
payer payoys V;IPFV;IND;SG;1;PST;LGSPEC2
besoinger besoignassent V;IPFV;SBJV;PL;3;PST
estimer estimes V;SBJV;SG;2;PRS
emboucher emboucheront V;IND;PL;3;FUT
subiuger subiugyons V;IPFV;IND;PL;1;PST;LGSPEC2
entituler entituleryez V;COND;PL;2;LGSPEC2
souspirer souspiroient V;IPFV;IND;PL;3;PST;LGSPEC1
achapter achaptasmes V;PFV;IND;PL;1;PST
enorter enorteroient V;COND;PL;3;LGSPEC1
detester detestions V;IPFV;IND;PL;1;PST;LGSPEC1
descourager descouragiez V;IPFV;IND;PL;2;PST;LGSPEC1
effronter effronte V;IND;SG;1;PRS
rouller roullez V;IMP;PL;2
delaisser delaisserai V;IND;SG;1;FUT;LGSPEC1
mehaignier mehaigniez V;IMP;PL;2
oster osterois V;COND;SG;2;LGSPEC1
detranchier detranches V;IND;SG;2;PRS
reserver reserverez V;IND;PL;2;FUT
rappeller rappellions V;IPFV;IND;PL;1;PST;LGSPEC1
baster basteroys V;COND;SG;2;LGSPEC2
brusler bruslent V;SBJV;PL;3;PRS
delivrer delivriez V;IPFV;IND;PL;2;PST;LGSPEC1
esventer esventoyent V;IPFV;IND;PL;3;PST;LGSPEC2
logier loge V;SBJV;SG;3;PRS
estourdir estourdisses V;IPFV;SBJV;SG;2;PST
declairer declaire V;SBJV;SG;3;PRS
lescher leschasmes V;PFV;IND;PL;1;PST
celer celeront V;IND;PL;3;FUT
bobeliner bobeline V;IND;SG;1;PRS
emboucher emboucherai V;IND;SG;1;FUT;LGSPEC1
emprunter emprunter V;NFIN
esveiller esveilleroyt V;COND;SG;3;LGSPEC2
acoustumer acoustume V;SBJV;SG;3;PRS
allaicter allaicteras V;IND;SG;2;FUT
avanchier avanchierois V;COND;SG;2;LGSPEC1
viser viseroys V;COND;SG;1;LGSPEC2
espargner espargne V;SBJV;SG;3;PRS
escouiller escouillasmes V;PFV;IND;PL;1;PST
escorner escornerez V;IND;PL;2;FUT
assieger assiegerai V;IND;SG;1;FUT;LGSPEC1
tocquer tocqueras V;IND;SG;2;FUT
sçavoir sçavoyt V;IPFV;IND;SG;3;PST;LGSPEC2
estre sera V;IND;SG;3;FUT
fascher fasche V;IND;SG;3;PRS
debaracer debarace V;IMP;SG;2
renommer renommerai V;IND;SG;1;FUT;LGSPEC1
raenchonner raenchonnerons V;IND;PL;1;FUT
reigler reigleriez V;COND;PL;2;LGSPEC1
pecher peche V;IND;SG;1;PRS
nombrer nombre V;SBJV;SG;3;PRS
protester protestassions V;IPFV;SBJV;PL;1;PST
desrobber desrobba V;PFV;IND;SG;3;PST
ronfler ronflons V;IMP;PL;1
melancholier melancholiions V;IPFV;IND;PL;1;PST;LGSPEC1
entredesirer nous entredesirerons V;IND;PL;1;FUT
entredemander vous entredemanderez V;IND;PL;2;FUT
expeller expelle V;IND;SG;1;PRS
esmerveillier esmerveille V;SBJV;SG;1;PRS
voller volleriez V;COND;PL;2;LGSPEC1
resigner resignera V;IND;SG;3;FUT
esquacher esquachyez V;IPFV;IND;PL;2;PST;LGSPEC2
desyrer desyrasmes V;PFV;IND;PL;1;PST
effreer effreons V;SBJV;PL;1;PRS
posseder possederas V;IND;SG;2;FUT
rejecter rejectent V;IND;PL;3;PRS
demander demande V;IND;SG;3;PRS
enfelonner enfelonnassions V;IPFV;SBJV;PL;1;PST
conquester conquestons V;SBJV;PL;1;PRS
mescler mesclerai V;IND;SG;1;FUT;LGSPEC1
occurrer occurroyent V;IPFV;IND;PL;3;PST;LGSPEC2
interpreter interpretyez V;IPFV;IND;PL;2;PST;LGSPEC2
manger mangeroys V;COND;SG;1;LGSPEC2
caper caperas V;IND;SG;2;FUT
regorger regorgerions V;COND;PL;1;LGSPEC1
faucer fauceront V;IND;PL;3;FUT
toquer toqueroit V;COND;SG;3;LGSPEC1
encontrer encontrassent V;IPFV;SBJV;PL;3;PST
empescher empesches V;SBJV;SG;2;PRS
rouiller rouilleroient V;COND;PL;3;LGSPEC1
desconseiller desconseillez V;SBJV;PL;2;PRS
esguarer esguareras V;IND;SG;2;FUT
tirer tirent V;IND;PL;3;PRS
sçavoir sceussions V;IPFV;SBJV;PL;1;PST
grapper grappons V;IND;PL;1;PRS
minorer minore V;SBJV;SG;3;PRS
renouveller renouvellast V;IPFV;SBJV;SG;3;PST
lyer lyoys V;IPFV;IND;SG;1;PST;LGSPEC2
renouveller renouvellassions V;IPFV;SBJV;PL;1;PST
desfaire desfaisoit V;IPFV;IND;SG;3;PST;LGSPEC1
participer participasses V;IPFV;SBJV;SG;2;PST
flatter flatteroyent V;COND;PL;3;LGSPEC2
delaisser delaissa V;PFV;IND;SG;1;PST
desmettre desmettroyt V;COND;SG;3;LGSPEC2
trancher trancheroys V;COND;SG;1;LGSPEC2
derver dervois V;IPFV;IND;SG;1;PST;LGSPEC1
guerpir guerpirons V;IND;PL;1;FUT
tourmenter tourmentoit V;IPFV;IND;SG;3;PST;LGSPEC1
penetrer penetrasmes V;PFV;IND;PL;1;PST
courouchier courouchieroys V;COND;SG;1;LGSPEC2
fouller foulle V;SBJV;SG;1;PRS
tramper tramperions V;COND;PL;1;LGSPEC1
temprer tempreryons V;COND;PL;1;LGSPEC2
accomplir accompliroient V;COND;PL;3;LGSPEC1
logier loge V;IND;SG;1;PRS
habiter habiterons V;IND;PL;1;FUT
rejecter rejecteray V;IND;SG;1;FUT;LGSPEC2
pausmer pausmer V;NFIN
regarder regarderez V;IND;PL;2;FUT
herrier herrie V;IND;SG;3;PRS
atacher atachois V;IPFV;IND;SG;2;PST;LGSPEC1
encommencer encommencerois V;COND;SG;2;LGSPEC1
tesmoigner tesmoignyons V;IPFV;IND;PL;1;PST;LGSPEC2
preceder precederions V;COND;PL;1;LGSPEC1
manger mangerois V;COND;SG;1;LGSPEC1
mescler mesclois V;IPFV;IND;SG;2;PST;LGSPEC1
pisser pissas V;PFV;IND;SG;2;PST
luitter luitteryez V;COND;PL;2;LGSPEC2
tomber tomberoyent V;COND;PL;3;LGSPEC2
regarder regarder V;NFIN
bransler branslez V;IMP;PL;2
raporter raportyez V;IPFV;IND;PL;2;PST;LGSPEC2
meriter merityez V;IPFV;IND;PL;2;PST;LGSPEC2
regretter regrettent V;SBJV;PL;3;PRS
contribuer contribue V;IND;SG;3;PRS
esveiller esveilliez V;IPFV;IND;PL;2;PST;LGSPEC1
enyvrer enyvroyt V;IPFV;IND;SG;3;PST;LGSPEC2
allaicter allaictions V;IPFV;IND;PL;1;PST;LGSPEC1
desconseiller desconseillasse V;IPFV;SBJV;SG;1;PST
rincer rinçons V;IPFV;IND;PL;1;PST;LGSPEC2
hostoier hostoiyons V;IPFV;IND;PL;1;PST;LGSPEC2
eschauffer eschaufferent V;PFV;IND;PL;3;PST
fumer fumastes V;PFV;IND;PL;2;PST
poiser poisyons V;IPFV;IND;PL;1;PST;LGSPEC2
cesser cesse V;SBJV;SG;3;PRS
rappeller rappelleroys V;COND;SG;1;LGSPEC2
eriger erigeront V;IND;PL;3;FUT
abayer abayeryez V;COND;PL;2;LGSPEC2
faucer faucerent V;PFV;IND;PL;3;PST
couster cousta V;PFV;IND;SG;1;PST
marcher marche V;IMP;SG;2
inviter invitas V;PFV;IND;SG;2;PST
estouffer estoufferons V;IND;PL;1;FUT
armoier armoierai V;IND;SG;1;FUT;LGSPEC1
serainer serainerons V;IND;PL;1;FUT
guerpir guerpir V;NFIN
baisler baislent V;SBJV;PL;3;PRS
pourforcer pourforceras V;IND;SG;2;FUT
sçavoir sçavoient V;IPFV;IND;PL;3;PST;LGSPEC2
empirer empirez V;SBJV;PL;2;PRS
persuader persuaderai V;IND;SG;1;FUT;LGSPEC1
estre seroi V;IND;SG;1;FUT
piller pillera V;IND;SG;3;FUT
heurter heurterois V;COND;SG;2;LGSPEC1
faire feroyt V;COND;SG;3;LGSPEC2
excuser excusast V;IPFV;SBJV;SG;3;PST
empieger empiegeryons V;COND;PL;1;LGSPEC2
desployer desployerois V;COND;SG;1;LGSPEC1
verifier verifiions V;IPFV;IND;PL;1;PST;LGSPEC1
transporter transporta V;PFV;IND;SG;1;PST
devourer devouroit V;IPFV;IND;SG;3;PST;LGSPEC1
affermer affermerions V;COND;PL;1;LGSPEC1
picquier picquieroient V;COND;PL;3;LGSPEC1
encliner enclinassent V;IPFV;SBJV;PL;3;PST
abhorrer abhorra V;PFV;IND;SG;3;PST
contrepoiser contrepoiseriez V;COND;PL;2;LGSPEC1
ieusner ieusnoient V;IPFV;IND;PL;3;PST;LGSPEC1
esgratigner esgratignons V;IND;PL;1;PRS
entreruyner s'entreruynent V;SBJV;PL;3;PRS
passer passassent V;IPFV;SBJV;PL;3;PST
cuyder cuydent V;SBJV;PL;3;PRS
fluir fluissiez V;IPFV;SBJV;PL;2;PST
aloser alose V;IND;SG;1;PRS
superseder supersederois V;COND;SG;1;LGSPEC1
charger chargeas V;PFV;IND;SG;2;PST
guerpir guerpiroys V;COND;SG;2;LGSPEC2
eschieller esciellassent V;IPFV;SBJV;PL;3;PST
subiuguier subiugues V;IND;SG;2;PRS
pryer pryera V;IND;SG;3;FUT
redoubter redoubtoyent V;IPFV;IND;PL;3;PST;LGSPEC2
courouchier courouches V;IND;SG;2;PRS
meriter meriterois V;COND;SG;1;LGSPEC1
demourer demouroys V;IPFV;IND;SG;2;PST;LGSPEC2
demonstrer demonstrois V;IPFV;IND;SG;1;PST;LGSPEC1
emboucher emboucheroyent V;COND;PL;3;LGSPEC2
desinfecter desinfectez V;IND;PL;2;PRS
abayer abayeray V;IND;SG;1;FUT;LGSPEC2
entredesirer s'entredesirerent V;PFV;IND;PL;3;PST
buchier buchier V;NFIN
conquester conquestent V;SBJV;PL;3;PRS
empenser empensoys V;IPFV;IND;SG;1;PST;LGSPEC2
alimenter alimentyez V;IPFV;IND;PL;2;PST;LGSPEC2
empieger empiegerois V;COND;SG;2;LGSPEC1
donner donnons V;IMP;PL;1
cerchier cerchas V;PFV;IND;SG;2;PST
acquiter acquitera V;IND;SG;3;FUT
destacher destacheroyt V;COND;SG;3;LGSPEC2
desrober desroberois V;COND;SG;2;LGSPEC1
regorger regorges V;IND;SG;2;PRS
tesmoigner tesmoigneroyent V;COND;PL;3;LGSPEC2
cesser cesseray V;IND;SG;1;FUT;LGSPEC2
regarder regarderois V;COND;SG;1;LGSPEC1
accorder accordera V;IND;SG;3;FUT
subiecter subiecteray V;IND;SG;1;FUT;LGSPEC2
arroier arroioyt V;IPFV;IND;SG;3;PST;LGSPEC2
approuchier approuchyons V;IPFV;IND;PL;1;PST;LGSPEC2
adviser advisoys V;IPFV;IND;SG;1;PST;LGSPEC2
guerpir guerpissois V;IPFV;IND;SG;1;PST;LGSPEC1
ruyner ruyne V;IND;SG;3;PRS
subiuger subiugeois V;IPFV;IND;SG;1;PST;LGSPEC1
amadouer amadoues V;SBJV;SG;2;PRS
contrepoiser contrepoise V;SBJV;SG;1;PRS
nouer nouastes V;PFV;IND;PL;2;PST
marier marieray V;IND;SG;1;FUT;LGSPEC2
advouer advouoyt V;IPFV;IND;SG;3;PST;LGSPEC2
reguarder reguarderoys V;COND;SG;1;LGSPEC2
exstirper exstirpera V;IND;SG;3;FUT
preferer prefererai V;IND;SG;1;FUT;LGSPEC1
ozer ozassent V;IPFV;SBJV;PL;3;PST
abiurer abiura V;PFV;IND;SG;3;PST
quiter quitassent V;IPFV;SBJV;PL;3;PST
embler embloyent V;IPFV;IND;PL;3;PST;LGSPEC2
inviter invitons V;SBJV;PL;1;PRS
revencher revencheroys V;COND;SG;2;LGSPEC2
avaller avallassent V;IPFV;SBJV;PL;3;PST
armoier armoiassent V;IPFV;SBJV;PL;3;PST
aloser alosois V;IPFV;IND;SG;1;PST;LGSPEC1
empoizonner empoizonnerions V;COND;PL;1;LGSPEC1
flatter flatte V;IND;SG;1;PRS
mouscher mouscheroys V;COND;SG;2;LGSPEC2
reiecter reiectyons V;IPFV;IND;PL;1;PST;LGSPEC2
desieuner desieuneront V;IND;PL;3;FUT
fumer fuma V;PFV;IND;SG;3;PST
courrouchier courrouchois V;IPFV;IND;SG;2;PST;LGSPEC1
jecter jecteryons V;COND;PL;1;LGSPEC2
preparer prepareroyent V;COND;PL;3;LGSPEC2
tyrer tyrerois V;COND;SG;1;LGSPEC1
aboscher aboschiez V;IPFV;IND;PL;2;PST;LGSPEC1
adiouster adioustastes V;PFV;IND;PL;2;PST
aboscher aboscherons V;IND;PL;1;FUT
pourpenser pourpenses V;SBJV;SG;2;PRS
recouvrer recouvrasmes V;PFV;IND;PL;1;PST
monter monteroient V;COND;PL;3;LGSPEC1
aller iroient V;COND;PL;3;LGSPEC1
essayer essayeront V;IND;PL;3;FUT
enorter enorterez V;IND;PL;2;FUT
resister resisteroyt V;COND;SG;3;LGSPEC2
apatir apatissoys V;IPFV;IND;SG;2;PST;LGSPEC2
escarter escartera V;IND;SG;3;FUT
fouragier fouragierons V;IND;PL;1;FUT
advouer advoueroys V;COND;SG;1;LGSPEC2
entrefaire entreferont V;IND;PL;3;FUT
ployer ployerois V;COND;SG;2;LGSPEC1
iouer ioueroit V;COND;SG;3;LGSPEC1
exstirper exstirpois V;IPFV;IND;SG;1;PST;LGSPEC1
tournoyer tournoyeroyt V;COND;SG;3;LGSPEC2
accepter accepteroyent V;COND;PL;3;LGSPEC2
enchargier enchargeasses V;IPFV;SBJV;SG;2;PST
accompaigner accompaigneroit V;COND;SG;3;LGSPEC1
tocquer tocquerent V;PFV;IND;PL;3;PST
moderer modererois V;COND;SG;2;LGSPEC1
empoizonner empoizonnoys V;IPFV;IND;SG;1;PST;LGSPEC2
heiler heila V;PFV;IND;SG;1;PST
intoxiquer intoxiquerions V;COND;PL;1;LGSPEC1
desgorger desgorgeront V;IND;PL;3;FUT
estre es V;IND;SG;2;PRS
pourchasser pourchasses V;SBJV;SG;2;PRS
mensongier mensongeois V;IPFV;IND;SG;2;PST;LGSPEC1
presupposer presupposes V;IND;SG;2;PRS
entrencontrer entrencontrez vous V;IMP;PL;2
devourer devourons V;IMP;PL;1
singler singlera V;IND;SG;3;FUT
esmayer esmayeroyent V;COND;PL;3;LGSPEC2
asseurer asseura V;PFV;IND;SG;3;PST
blesser blessyez V;IPFV;IND;PL;2;PST;LGSPEC2
enterrer enterrastes V;PFV;IND;PL;2;PST
viser viserez V;IND;PL;2;FUT
flechir fleschissent V;IND;PL;3;PRS
participer participerois V;COND;SG;2;LGSPEC1
payer payera V;IND;SG;3;FUT
derver dervasses V;IPFV;SBJV;SG;2;PST
desgorger desgorgez V;IND;PL;2;PRS
eschever eschevez V;IMP;PL;2
cerchier cerchieras V;IND;SG;2;FUT
quitter quitteras V;IND;SG;2;FUT
mesler meslerez V;IND;PL;2;FUT
enconcher enconcheroyent V;COND;PL;3;LGSPEC2
edifier edifioyt V;IPFV;IND;SG;3;PST;LGSPEC2
entreruyner entreruynons nous V;IMP;PL;1
arrengier arrengiez V;IND;PL;2;PRS
oultrager oultragez V;IMP;PL;2
fiancer fiançassent V;IPFV;SBJV;PL;3;PST
interpreter interpretasmes V;PFV;IND;PL;1;PST
couster cousteryons V;COND;PL;1;LGSPEC2
besoinger besoignasses V;IPFV;SBJV;SG;2;PST
despossesser despossesseroyt V;COND;SG;3;LGSPEC2
praeparer praeparoys V;IPFV;IND;SG;2;PST;LGSPEC2
entredesirer entredesiroyent V;IPFV;IND;PL;3;PST;LGSPEC2
desadvouer desadvouions V;IPFV;IND;PL;1;PST;LGSPEC1
ymaginer ymaginasses V;IPFV;SBJV;SG;2;PST
tirer tiroient V;IPFV;IND;PL;3;PST;LGSPEC1
desarmer desarmyez V;IPFV;IND;PL;2;PST;LGSPEC2
creancer creançastes V;PFV;IND;PL;2;PST
demourer demourerions V;COND;PL;1;LGSPEC1
estinceller estincelle V;SBJV;SG;1;PRS
desadvouer desadvoueray V;IND;SG;1;FUT;LGSPEC2
rebarber rebarbassiez V;IPFV;SBJV;PL;2;PST
noter notent V;IND;PL;3;PRS
approuvender approuvendyez V;IPFV;IND;PL;2;PST;LGSPEC2
frapper frapperoyent V;COND;PL;3;LGSPEC2
empirer empiroit V;IPFV;IND;SG;3;PST;LGSPEC1
recouvrer recouvryez V;IPFV;IND;PL;2;PST;LGSPEC2
affermer affermons V;IMP;PL;1
esbaucher esbaucher V;NFIN
reiecter reiectez V;IND;PL;2;PRS
reietter reiettoys V;IPFV;IND;SG;2;PST;LGSPEC2
fraper frapions V;IPFV;IND;PL;1;PST;LGSPEC1
nettoyer nettoyiez V;IPFV;IND;PL;2;PST;LGSPEC1
preparer preparoys V;IPFV;IND;SG;2;PST;LGSPEC2
houer houeryons V;COND;PL;1;LGSPEC2
mesler meslassent V;IPFV;SBJV;PL;3;PST
deschainer deschaineroyt V;COND;SG;3;LGSPEC2
espargner espargnoit V;IPFV;IND;SG;3;PST;LGSPEC1
aerer aere V;IND;SG;1;PRS
proteger protegeoyt V;IPFV;IND;SG;3;PST;LGSPEC2
preferer preferez V;SBJV;PL;2;PRS
raenchonner raenchonneras V;IND;SG;2;FUT
prester prestassions V;IPFV;SBJV;PL;1;PST
exposer exposoyt V;IPFV;IND;SG;3;PST;LGSPEC2
empirer empiriez V;IPFV;IND;PL;2;PST;LGSPEC1
huer huasses V;IPFV;SBJV;SG;2;PST
pourforcer pourforça V;PFV;IND;SG;3;PST
hostoier hostoieroys V;COND;SG;1;LGSPEC2
marcher marcheroyent V;COND;PL;3;LGSPEC2
regorger regorgeastes V;PFV;IND;PL;2;PST
huer huoyent V;IPFV;IND;PL;3;PST;LGSPEC2
esperonner esperonnyons V;IPFV;IND;PL;1;PST;LGSPEC2
aquitter aquittoyt V;IPFV;IND;SG;3;PST;LGSPEC2
proclamer proclameryons V;COND;PL;1;LGSPEC2
heiler heilassiez V;IPFV;SBJV;PL;2;PST
travailler travaillerent V;PFV;IND;PL;3;PST
traittier traittions V;IND;PL;1;PRS
estouffer estouffions V;IPFV;IND;PL;1;PST;LGSPEC1
affermer affermassent V;IPFV;SBJV;PL;3;PST
baster basterai V;IND;SG;1;FUT;LGSPEC1
despouiller despouillois V;IPFV;IND;SG;1;PST;LGSPEC1
esgaler esgalerions V;COND;PL;1;LGSPEC1
acoustumer acoustumons V;IND;PL;1;PRS
expuyser expuysiez V;IPFV;IND;PL;2;PST;LGSPEC1
proteger protege V;IMP;SG;2
dampner dampnois V;IPFV;IND;SG;1;PST;LGSPEC1
proclamer proclamons V;IMP;PL;1
deslyer deslyeryons V;COND;PL;1;LGSPEC2
supposer supposeroit V;COND;SG;3;LGSPEC1
mesler meslastes V;PFV;IND;PL;2;PST
compter comptez V;SBJV;PL;2;PRS
ymaginer ymagine V;IND;SG;3;PRS
persuader persuadois V;IPFV;IND;SG;2;PST;LGSPEC1
rouller roulloyt V;IPFV;IND;SG;3;PST;LGSPEC2
empoizonner empoizonne V;IND;SG;3;PRS
esclairer esclaire V;IND;SG;1;PRS
desplacer desplaçassions V;IPFV;SBJV;PL;1;PST
amadouer amadouez V;IMP;PL;2
desfaire desfaces V;SBJV;SG;2;PRS
contribuer contribuons V;IMP;PL;1
passer passassions V;IPFV;SBJV;PL;1;PST
gaspiller gaspillerez V;IND;PL;2;FUT
serainer seraineroyent V;COND;PL;3;LGSPEC2
galoper galope V;IMP;SG;2
aloser alosoient V;IPFV;IND;PL;3;PST;LGSPEC1
estirer estirassiez V;IPFV;SBJV;PL;2;PST
desborder desbordastes V;PFV;IND;PL;2;PST
ordonner ordonneryez V;COND;PL;2;LGSPEC2
prosperer prosperons V;IMP;PL;1
solliciter solliciterois V;COND;SG;2;LGSPEC1
contribuer contribue V;SBJV;SG;3;PRS
escrier escrierai V;IND;SG;1;FUT;LGSPEC1
traittier traitte V;IND;SG;1;PRS
tocquer tocqueroyent V;COND;PL;3;LGSPEC2
aracher arachyez V;IPFV;IND;PL;2;PST;LGSPEC2
ayder aydastes V;PFV;IND;PL;2;PST
garder gardois V;IPFV;IND;SG;1;PST;LGSPEC1
destourner destournoyent V;IPFV;IND;PL;3;PST;LGSPEC2
bobeliner bobelinerois V;COND;SG;2;LGSPEC1
cuyder cuyda V;PFV;IND;SG;1;PST
mulcter mulctoit V;IPFV;IND;SG;3;PST;LGSPEC1
employer employe V;SBJV;SG;1;PRS
trouver trouverai V;IND;SG;1;FUT;LGSPEC1
laidenger laidengeroys V;COND;SG;1;LGSPEC2
lyer lyas V;PFV;IND;SG;2;PST
tomber tombois V;IPFV;IND;SG;2;PST;LGSPEC1
amadouer amadouera V;IND;SG;3;FUT
gaster gastas V;PFV;IND;SG;2;PST
chocquer chocque V;IND;SG;1;PRS
tremper trempassions V;IPFV;SBJV;PL;1;PST
escarter escartas V;PFV;IND;SG;2;PST
descharger deschargeray V;IND;SG;1;FUT;LGSPEC2
piller pillent V;SBJV;PL;3;PRS
assieger assiegeryez V;COND;PL;2;LGSPEC2
sembler sembleroit V;COND;SG;3;LGSPEC1
desloger desloge V;IND;SG;3;PRS
raporter raportes V;IND;SG;2;PRS
effectuer effectuons V;IMP;PL;1
baster baster V;NFIN
deschevaucher deschevaucher V;NFIN
creancer creançois V;IPFV;IND;SG;2;PST;LGSPEC1
sembler semblyez V;IPFV;IND;PL;2;PST;LGSPEC2
sçavoir sçaurons V;IND;PL;1;FUT
heiler heilyons V;IPFV;IND;PL;1;PST;LGSPEC2
prester presterent V;PFV;IND;PL;3;PST
desbarater desbarateryons V;COND;PL;1;LGSPEC2
deschevaucher deschevauchent V;SBJV;PL;3;PRS
descourager descourageray V;IND;SG;1;FUT;LGSPEC2
lurrer lurrez V;IMP;PL;2
eslever esleve V;IND;SG;3;PRS
surnommer surnommeroyent V;COND;PL;3;LGSPEC2
praesenter praesenterent V;PFV;IND;PL;3;PST
fraper fraperoys V;COND;SG;2;LGSPEC2
houssepillier houssepillions V;SBJV;PL;1;PRS
resister resisterois V;COND;SG;2;LGSPEC1
embausmer embausmoient V;IPFV;IND;PL;3;PST;LGSPEC1
raporter raportassent V;IPFV;SBJV;PL;3;PST
desbaucher desbauchoys V;IPFV;IND;SG;1;PST;LGSPEC2
aorner aornons V;IND;PL;1;PRS
esvanter esvantiez V;IPFV;IND;PL;2;PST;LGSPEC1
despossesser despossesseryons V;COND;PL;1;LGSPEC2
macter mactyons V;IPFV;IND;PL;1;PST;LGSPEC2
impugner impugna V;PFV;IND;SG;1;PST
picquier picquiez V;IPFV;IND;PL;2;PST;LGSPEC1
robber robbons V;IND;PL;1;PRS
eriger erigeasmes V;PFV;IND;PL;1;PST
importuner importune V;SBJV;SG;1;PRS
haittier haittasse V;IPFV;SBJV;SG;1;PST
donner donneriez V;COND;PL;2;LGSPEC1
acquiter acquiteryez V;COND;PL;2;LGSPEC2
esclairer esclairois V;IPFV;IND;SG;2;PST;LGSPEC1
deliberer delibereryons V;COND;PL;1;LGSPEC2
blesser blesserent V;PFV;IND;PL;3;PST
affier affioyent V;IPFV;IND;PL;3;PST;LGSPEC2
oublyer oublyeroit V;COND;SG;3;LGSPEC1
separer separiez V;IPFV;IND;PL;2;PST;LGSPEC1
destacher destacheras V;IND;SG;2;FUT
reguarder reguardoyent V;IPFV;IND;PL;3;PST;LGSPEC2
apatir apatirons V;IND;PL;1;FUT
ietter ietter V;NFIN
trembler trembloys V;IPFV;IND;SG;1;PST;LGSPEC2
enpoisonner enpoisonnassent V;IPFV;SBJV;PL;3;PST
ralier ralierez V;IND;PL;2;FUT
tuer tuerois V;COND;SG;1;LGSPEC1
heiler heile V;SBJV;SG;3;PRS
accointer accointoient V;IPFV;IND;PL;3;PST;LGSPEC1
heiler heilois V;IPFV;IND;SG;1;PST;LGSPEC1
rincer rinciez V;IPFV;IND;PL;2;PST;LGSPEC1
cabasser cabassa V;PFV;IND;SG;1;PST
alterer altererai V;IND;SG;1;FUT;LGSPEC1
supposer supposez V;IMP;PL;2
estirer estirons V;IMP;PL;1
commencer commençassiez V;IPFV;SBJV;PL;2;PST
empenser empensyons V;IPFV;IND;PL;1;PST;LGSPEC2
mortifier mortifierent V;PFV;IND;PL;3;PST
desadvouer desadvouoys V;IPFV;IND;SG;1;PST;LGSPEC2
meriter meritiez V;IPFV;IND;PL;2;PST;LGSPEC1
tramper trampois V;IPFV;IND;SG;1;PST;LGSPEC1
negotier negotie V;SBJV;SG;3;PRS
transporter transporta V;PFV;IND;SG;3;PST
macter mactons V;IMP;PL;1
plier plieroys V;COND;SG;2;LGSPEC2
prester presteryez V;COND;PL;2;LGSPEC2
denunchier denunchies V;SBJV;SG;2;PRS
desmettre desmisse V;IPFV;SBJV;SG;1;PST
lever levasse V;IPFV;SBJV;SG;1;PST
fascher fasche V;SBJV;SG;1;PRS
auser auseras V;IND;SG;2;FUT
ordonner ordonnassions V;IPFV;SBJV;PL;1;PST
esclairer esclaireriez V;COND;PL;2;LGSPEC1
adapter adaptois V;IPFV;IND;SG;2;PST;LGSPEC1
suffocquer suffocquerois V;COND;SG;2;LGSPEC1
hostoier hostoioient V;IPFV;IND;PL;3;PST;LGSPEC1
louer louent V;IND;PL;3;PRS
adviser advisez V;SBJV;PL;2;PRS
desloger deslogeriez V;COND;PL;2;LGSPEC1
pourpenser pourpensions V;IPFV;IND;PL;1;PST;LGSPEC1
praeparer praeparoit V;IPFV;IND;SG;3;PST;LGSPEC1
esloigner esloigna V;PFV;IND;SG;3;PST
gaspiller gaspillassent V;IPFV;SBJV;PL;3;PST
lescher leschions V;IPFV;IND;PL;1;PST;LGSPEC1
eslancer eslance V;IND;SG;3;PRS
rincer rince V;IND;SG;3;PRS
esguarer esguarassent V;IPFV;SBJV;PL;3;PST
tumber tumboient V;IPFV;IND;PL;3;PST;LGSPEC1
espouser espousois V;IPFV;IND;SG;2;PST;LGSPEC1
oster osteroys V;COND;SG;1;LGSPEC2
creancer creance V;IMP;SG;2
advancer advançastes V;PFV;IND;PL;2;PST
enhorter enhortoient V;IPFV;IND;PL;3;PST;LGSPEC1
resister resistez V;IND;PL;2;PRS
eslever esleve V;IND;SG;1;PRS
tumber tumbyons V;IPFV;IND;PL;1;PST;LGSPEC2
posseder possederez V;IND;PL;2;FUT
enhorter enhorterions V;COND;PL;1;LGSPEC1
trancher trancheroyt V;COND;SG;3;LGSPEC2
fortiffier fortiffierois V;COND;SG;2;LGSPEC1
pecher pecheryons V;COND;PL;1;LGSPEC2
uriner urinons V;IND;PL;1;PRS
tremper tremperas V;IND;SG;2;FUT
transgloutir transgloutirois V;COND;SG;1;LGSPEC1
recuperer recupereray V;IND;SG;1;FUT;LGSPEC2
desploier desploiyons V;IPFV;IND;PL;1;PST;LGSPEC2
encliner enclineras V;IND;SG;2;FUT
oultrager oultrageasses V;IPFV;SBJV;SG;2;PST
veigler veigles V;IND;SG;2;PRS
guerpir guerpiriez V;COND;PL;2
exposer exposeryons V;COND;PL;1;LGSPEC2
veigler veiglasmes V;PFV;IND;PL;1;PST
proffiter proffitons V;SBJV;PL;1;PRS
finir finissoient V;IPFV;IND;PL;3;PST;LGSPEC1
mectre mectoyent V;IPFV;IND;PL;3;PST;LGSPEC2
desprisonner desprisonneryez V;COND;PL;2;LGSPEC2
rincer rinçastes V;PFV;IND;PL;2;PST
employer employassiez V;IPFV;SBJV;PL;2;PST
enseignier enseignyons V;IPFV;IND;PL;1;PST;LGSPEC2
accointer accointerent V;PFV;IND;PL;3;PST
appeller appelloit V;IPFV;IND;SG;3;PST;LGSPEC1
desieuner desieuneroys V;COND;SG;2;LGSPEC2
adiouster adioustois V;IPFV;IND;SG;2;PST;LGSPEC1
penetrer penetreroyt V;COND;SG;3;LGSPEC2
arrester arresteroys V;COND;SG;2;LGSPEC2
prier pria V;PFV;IND;SG;1;PST
esguiser esguisast V;IPFV;SBJV;SG;3;PST
bransler branslez V;SBJV;PL;2;PRS
bobeliner bobelinoyt V;IPFV;IND;SG;3;PST;LGSPEC2
mouscher mouschastes V;PFV;IND;PL;2;PST
creancer creance V;IND;SG;3;PRS
reserver reserverai V;IND;SG;1;FUT;LGSPEC1
endommaiger endommaiges V;IND;SG;2;PRS
rappeller rappellyons V;IPFV;IND;PL;1;PST;LGSPEC2
empirer empirasses V;IPFV;SBJV;SG;2;PST
ployer ployeroys V;COND;SG;1;LGSPEC2
celebrer celebreryons V;COND;PL;1;LGSPEC2
temprer temprasses V;IPFV;SBJV;SG;2;PST
achapter achaptent V;IND;PL;3;PRS
esternuer esternuent V;SBJV;PL;3;PRS
aymer aymas V;PFV;IND;SG;2;PST
accuser accusois V;IPFV;IND;SG;2;PST;LGSPEC1
tyrer tyra V;PFV;IND;SG;3;PST
offencer offencent V;IND;PL;3;PRS
allaicter allaictoyent V;IPFV;IND;PL;3;PST;LGSPEC2
praesider praesideras V;IND;SG;2;FUT
recouvrer recouvreroit V;COND;SG;3;LGSPEC1
tesmoigner tesmoignastes V;PFV;IND;PL;2;PST
houssepillier houssepillierez V;IND;PL;2;FUT
houssepillier houssepille V;SBJV;SG;1;PRS
enorter enortez V;IMP;PL;2
contrepoiser contrepoises V;IND;SG;2;PRS
executer executoys V;IPFV;IND;SG;2;PST;LGSPEC2
esclairer esclaire V;SBJV;SG;1;PRS
lascher laschons V;SBJV;PL;1;PRS
oublyer oublyeroys V;COND;SG;2;LGSPEC2
regratier regratieras V;IND;SG;2;FUT
coniurer coniurons V;SBJV;PL;1;PRS
reiecter reiectoys V;IPFV;IND;SG;2;PST;LGSPEC2
souspirer souspireroys V;COND;SG;2;LGSPEC2
moustrer moustrera V;IND;SG;3;FUT
fouller foullerois V;COND;SG;1;LGSPEC1
soulaiger soulaigeront V;IND;PL;3;FUT
melancholier melancholioys V;IPFV;IND;SG;1;PST;LGSPEC2
armoier armoie V;SBJV;SG;3;PRS
renommer renommeray V;IND;SG;1;FUT;LGSPEC2
saulter saultyez V;IPFV;IND;PL;2;PST;LGSPEC2
arriver arriverent V;PFV;IND;PL;3;PST
rebarber rebarbe V;IMP;SG;2
luitter luitterai V;IND;SG;1;FUT;LGSPEC1
embausmer embausmastes V;PFV;IND;PL;2;PST
emprunter empruntoient V;IPFV;IND;PL;3;PST;LGSPEC1
habiter habitasses V;IPFV;SBJV;SG;2;PST
marcher marchez V;SBJV;PL;2;PRS
menasser menasses V;IND;SG;2;PRS
celer cele V;SBJV;SG;1;PRS
delaisser delaisseroys V;COND;SG;2;LGSPEC2
viser visois V;IPFV;IND;SG;2;PST;LGSPEC1
nommer nommerons V;IND;PL;1;FUT
esgarer esgarasmes V;PFV;IND;PL;1;PST
encharger enchargeoys V;IPFV;IND;SG;2;PST;LGSPEC2
deifier deifierois V;COND;SG;2;LGSPEC1
espargner espargnast V;IPFV;SBJV;SG;3;PST
espoventer espoventera V;IND;SG;3;FUT
regratier regratierois V;COND;SG;2;LGSPEC1
posseder possedons V;IMP;PL;1
desrober desrobe V;IND;SG;1;PRS
ronfler ronflassiez V;IPFV;SBJV;PL;2;PST
subiuger subiuge V;IND;SG;1;PRS
estimer estime V;SBJV;SG;3;PRS
estrangler estrangloient V;IPFV;IND;PL;3;PST;LGSPEC1
desyrer desyrast V;IPFV;SBJV;SG;3;PST
empescher empeschera V;IND;SG;3;FUT
detranchier detranchyez V;IPFV;IND;PL;2;PST;LGSPEC2
aboscher aboschions V;IPFV;IND;PL;1;PST;LGSPEC1
derver derve V;IND;SG;3;PRS
obliger obligez V;IND;PL;2;PRS
amer ameroys V;COND;SG;1;LGSPEC2
dampner dampnois V;IPFV;IND;SG;2;PST;LGSPEC1
blesser blesseroyent V;COND;PL;3;LGSPEC2
commencer commenceriez V;COND;PL;2;LGSPEC1
empenser empensasse V;IPFV;SBJV;SG;1;PST
traveillier traveillasse V;IPFV;SBJV;SG;1;PST
reserver reservoit V;IPFV;IND;SG;3;PST;LGSPEC1
affamer affameras V;IND;SG;2;FUT
toucher touchyons V;IPFV;IND;PL;1;PST;LGSPEC2
desheriter desheritons V;IND;PL;1;PRS
flatter flattois V;IPFV;IND;SG;2;PST;LGSPEC1
flotter flottoit V;IPFV;IND;SG;3;PST;LGSPEC1
vengier vengierai V;IND;SG;1;FUT;LGSPEC1
huer huoys V;IPFV;IND;SG;2;PST;LGSPEC2
endommaiger endommaige V;SBJV;SG;3;PRS
preceder precediez V;IPFV;IND;PL;2;PST;LGSPEC1
penser pensa V;PFV;IND;SG;3;PST
laisser laissa V;PFV;IND;SG;3;PST
acoustrer acoustrer V;NFIN
desieuner desieune V;IMP;SG;2
croniquier croniquiions V;IPFV;IND;PL;1;PST;LGSPEC1
desbarater desbarate V;IND;SG;1;PRS
affier affieras V;IND;SG;2;FUT
poiser poise V;SBJV;SG;3;PRS
desfaire desfais V;IMP;SG;2
embler embleront V;IND;PL;3;FUT
flatter flatteroys V;COND;SG;1;LGSPEC2
arroier arroier V;NFIN
engendrer engendreras V;IND;SG;2;FUT
importuner importuna V;PFV;IND;SG;1;PST
estrangler estranglois V;IPFV;IND;SG;1;PST;LGSPEC1
evaporer evaporez V;IND;PL;2;PRS
ployer ployoys V;IPFV;IND;SG;2;PST;LGSPEC2
armoier armoieryez V;COND;PL;2;LGSPEC2
bobeliner bobelineras V;IND;SG;2;FUT
rappeller rappelloyt V;IPFV;IND;SG;3;PST;LGSPEC2
deschainer deschainoyent V;IPFV;IND;PL;3;PST;LGSPEC2
trancher tranchast V;IPFV;SBJV;SG;3;PST
celebrer celebreroys V;COND;SG;2;LGSPEC2
celebrer celebrerons V;IND;PL;1;FUT
compter compte V;IMP;SG;2
engendrer engendres V;IND;SG;2;PRS
desrisier desrisieroyt V;COND;SG;3;LGSPEC2
contribuer contribue V;IND;SG;1;PRS
loger logez V;IND;PL;2;PRS
ordonner ordonnasses V;IPFV;SBJV;SG;2;PST
desloger deslogeassiez V;IPFV;SBJV;PL;2;PST
toucher touchassiez V;IPFV;SBJV;PL;2;PST
transporter transporte V;SBJV;SG;3;PRS
oublyer oublya V;PFV;IND;SG;1;PST
abandonner abandonnent V;SBJV;PL;3;PRS
occurrer occurroys V;IPFV;IND;SG;1;PST;LGSPEC2
pecher pechons V;IND;PL;1;PRS
luitter luitterions V;COND;PL;1;LGSPEC1
herrier herrieras V;IND;SG;2;FUT
cabasser cabasserai V;IND;SG;1;FUT;LGSPEC1
pacquer pacquons V;IMP;PL;1
fouller foullez V;IND;PL;2;PRS
mesler meslent V;IND;PL;3;PRS
hostoier hostoioyt V;IPFV;IND;SG;3;PST;LGSPEC2
estrangler estrangle V;SBJV;SG;3;PRS
rejecter rejectyez V;IPFV;IND;PL;2;PST;LGSPEC2
eschapper eschappast V;IPFV;SBJV;SG;3;PST
superseder supersederoys V;COND;SG;1;LGSPEC2
lascher lascherois V;COND;SG;2;LGSPEC1
desploier desploie V;IND;SG;1;PRS
gouster gousteroys V;COND;SG;1;LGSPEC2
gaber gabyez V;IPFV;IND;PL;2;PST;LGSPEC2
frapper frappa V;PFV;IND;SG;3;PST
plaider plaideras V;IND;SG;2;FUT
aller irois V;COND;SG;1;LGSPEC1
fumer fumassiez V;IPFV;SBJV;PL;2;PST
entrefraper nous entrefrapassions V;IPFV;SBJV;PL;1;PST
accoustumer accoustumasse V;IPFV;SBJV;SG;1;PST
tocquer tocquera V;IND;SG;3;FUT
marcher marchent V;SBJV;PL;3;PRS
alimenter alimenteroys V;COND;SG;1;LGSPEC2
remonstrer remonstreroit V;COND;SG;3;LGSPEC1
iolyer iolye V;IND;SG;3;PRS
getter getta V;PFV;IND;SG;1;PST
demonstrer demonstryons V;IPFV;IND;PL;1;PST;LGSPEC2
despossesser despossessasmes V;PFV;IND;PL;1;PST
asseurer asseures V;SBJV;SG;2;PRS
resver resvassions V;IPFV;SBJV;PL;1;PST
geller gelloient V;IPFV;IND;PL;3;PST;LGSPEC1
esperonner esperonnassent V;IPFV;SBJV;PL;3;PST
reietter reietta V;PFV;IND;SG;3;PST
fortifier fortifieroient V;COND;PL;3;LGSPEC1
soubhaitter soubhaitterent V;PFV;IND;PL;3;PST
preter pretoyt V;IPFV;IND;SG;3;PST;LGSPEC2
huer huera V;IND;SG;3;FUT
enchargier enchargierois V;COND;SG;1;LGSPEC1
oultrager oultrage V;IND;SG;1;PRS
heurter heurtez V;SBJV;PL;2;PRS
riffler rifflerois V;COND;SG;2;LGSPEC1
mehaignier mehaignoient V;IPFV;IND;PL;3;PST;LGSPEC1
conquester conquesterions V;COND;PL;1;LGSPEC1
atempter atempter V;NFIN
desnouer desnouer V;NFIN
desancrer desancroient V;IPFV;IND;PL;3;PST;LGSPEC1
esclairer esclairoys V;IPFV;IND;SG;1;PST;LGSPEC2
mectre mis V;PFV;IND;SG;2;PST
toquer toquez V;IND;PL;2;PRS
fortifier fortifierois V;COND;SG;2;LGSPEC1
nombrer nombrasses V;IPFV;SBJV;SG;2;PST
exposer exposeroyt V;COND;SG;3;LGSPEC2
confermer confermons V;IMP;PL;1
escryer escryerons V;IND;PL;1;FUT
plier plierions V;COND;PL;1;LGSPEC1
hucher huchyez V;IPFV;IND;PL;2;PST;LGSPEC2
soingner soingnoit V;IPFV;IND;SG;3;PST;LGSPEC1
estudier estudieront V;IND;PL;3;FUT
eslever eslevions V;IPFV;IND;PL;1;PST;LGSPEC1
aorner aorne V;IMP;SG;2
retirer retire V;IMP;SG;2
passer passerions V;COND;PL;1;LGSPEC1
presupposer presupposera V;IND;SG;3;FUT
meriter merite V;SBJV;SG;1;PRS
guider guidez V;SBJV;PL;2;PRS
deffier deffie V;SBJV;SG;3;PRS
recommander recommanda V;PFV;IND;SG;1;PST
esguiser esguiseryons V;COND;PL;1;LGSPEC2
derver dervasmes V;PFV;IND;PL;1;PST
renfler renflyons V;IPFV;IND;PL;1;PST;LGSPEC2
bobeliner bobelinons V;IND;PL;1;PRS
eschever escheveroyent V;COND;PL;3;LGSPEC2
galoper galopa V;PFV;IND;SG;1;PST
laidenger laidengeriez V;COND;PL;2;LGSPEC1
infourmer infourmasmes V;PFV;IND;PL;1;PST
tocquer tocqueriez V;COND;PL;2;LGSPEC1
retirer retire V;IND;SG;1;PRS
achever acheve V;SBJV;SG;3;PRS
effronter effrontera V;IND;SG;3;FUT
toquer toquoient V;IPFV;IND;PL;3;PST;LGSPEC1
gangler gangliez V;IPFV;IND;PL;2;PST;LGSPEC1
manouvrer manouvreroyent V;COND;PL;3;LGSPEC2
avaller avalla V;PFV;IND;SG;1;PST
reserver reservasses V;IPFV;SBJV;SG;2;PST
menasser menasseriez V;COND;PL;2;LGSPEC1
hucher huchent V;IND;PL;3;PRS
espier espierois V;COND;SG;2;LGSPEC1
expeller expelloient V;IPFV;IND;PL;3;PST;LGSPEC1
veigler veigleroys V;COND;SG;2;LGSPEC2
appuier appuie V;SBJV;SG;1;PRS
explorer explorera V;IND;SG;3;FUT
tuer tuons V;IND;PL;1;PRS
proclamer proclameras V;IND;SG;2;FUT
fortifier fortifioient V;IPFV;IND;PL;3;PST;LGSPEC1
esbaucher esbaucherai V;IND;SG;1;FUT;LGSPEC1
desister desisteroyent V;COND;PL;3;LGSPEC2
interpreter interpretassions V;IPFV;SBJV;PL;1;PST
fortiffier fortiffieroit V;COND;SG;3;LGSPEC1
hebergier hebergieryons V;COND;PL;1;LGSPEC2
retirer retireroyt V;COND;SG;3;LGSPEC2
affermer afferme V;IMP;SG;2
participer participerois V;COND;SG;1;LGSPEC1
rappeller rappellastes V;PFV;IND;PL;2;PST
pourchasser pourchassoit V;IPFV;IND;SG;3;PST;LGSPEC1
traitter traittoit V;IPFV;IND;SG;3;PST;LGSPEC1
esgratigner esgratignassent V;IPFV;SBJV;PL;3;PST
deslacer delaçasmes V;PFV;IND;PL;1;PST
destabler destable V;IND;SG;3;PRS
lyer lyasses V;IPFV;SBJV;SG;2;PST
eslever eslevoys V;IPFV;IND;SG;1;PST;LGSPEC2
explicquer explicquois V;IPFV;IND;SG;1;PST;LGSPEC1
verifier verifiyez V;IPFV;IND;PL;2;PST;LGSPEC2
cerchier cerchierai V;IND;SG;1;FUT;LGSPEC1
remercyer remercyyez V;IPFV;IND;PL;2;PST;LGSPEC2
esvanter esvanterions V;COND;PL;1;LGSPEC1
recorder recorderions V;COND;PL;1;LGSPEC1
logier logieroit V;COND;SG;3;LGSPEC1
importuner importunast V;IPFV;SBJV;SG;3;PST
condescendre condescendroiz V;IND;PL;2;FUT;LGSPEC1
coniurer coniuroit V;IPFV;IND;SG;3;PST;LGSPEC1
eriger erigeray V;IND;SG;1;FUT;LGSPEC2
ayder aydoyent V;IPFV;IND;PL;3;PST;LGSPEC2
soupper souppassent V;IPFV;SBJV;PL;3;PST
avoyr aurons V;IND;PL;1;FUT
desister desistassiez V;IPFV;SBJV;PL;2;PST
conseiller conseilleroys V;COND;SG;2;LGSPEC2
nettoyer nettoyasses V;IPFV;SBJV;SG;2;PST
luitter luittons V;SBJV;PL;1;PRS
adapter adapterions V;COND;PL;1;LGSPEC1
descourager descourage V;IND;SG;1;PRS
considerer considerois V;IPFV;IND;SG;1;PST;LGSPEC1
assieger assiegeoys V;IPFV;IND;SG;2;PST;LGSPEC2
approuvender approuvendons V;IND;PL;1;PRS
accorder accorde V;SBJV;SG;1;PRS
rouiller rouillois V;IPFV;IND;SG;1;PST;LGSPEC1
esplucher espluchent V;SBJV;PL;3;PRS
renfler renfleroys V;COND;SG;1;LGSPEC2
courrouchier courrouchiez V;IND;PL;2;PRS
regorger regorger V;NFIN
soulaiger soulaigyez V;IPFV;IND;PL;2;PST;LGSPEC2
tirer tire V;IND;SG;3;PRS
estudier estudiez V;IND;PL;2;PRS
tomber tombons V;SBJV;PL;1;PRS
esgratigner esgratignes V;IND;SG;2;PRS
trousser trousseroys V;COND;SG;2;LGSPEC2
encliner enclinerois V;COND;SG;2;LGSPEC1
amadouer amadouasmes V;PFV;IND;PL;1;PST
desyrer desyrassiez V;IPFV;SBJV;PL;2;PST
pausmer pausmes V;IND;SG;2;PRS
atacher atachera V;IND;SG;3;FUT
translater translateront V;IND;PL;3;FUT
estiquier estiquierois V;COND;SG;2;LGSPEC1
sçavoir sceussiez V;IPFV;SBJV;PL;2;PST
pausmer pausmerois V;COND;SG;2;LGSPEC1
avoyr eus V;PFV;IND;SG;2;PST
enchasser enchasserez V;IND;PL;2;FUT
esventer esventeryons V;COND;PL;1;LGSPEC2
tremper tremperez V;IND;PL;2;FUT
payer payassiez V;IPFV;SBJV;PL;2;PST
pourmener pourmena V;PFV;IND;SG;3;PST
estoffer estofferyez V;COND;PL;2;LGSPEC2
affamer affamoyt V;IPFV;IND;SG;3;PST;LGSPEC2
translater translatons V;IMP;PL;1
conquester conquestastes V;PFV;IND;PL;2;PST
verifier verifiasmes V;PFV;IND;PL;1;PST
raporter raportoys V;IPFV;IND;SG;2;PST;LGSPEC2
fortiffier fortiffioyent V;IPFV;IND;PL;3;PST;LGSPEC2
ieusner ieusnent V;SBJV;PL;3;PRS
resigner resignerent V;PFV;IND;PL;3;PST
mulcter mulcterois V;COND;SG;2;LGSPEC1
gaster gasteroyent V;COND;PL;3;LGSPEC2
baisler baisleroient V;COND;PL;3;LGSPEC1
descourager descourageroyt V;COND;SG;3;LGSPEC2
provocquer provocque V;SBJV;SG;3;PRS
toucher touchiez V;IPFV;IND;PL;2;PST;LGSPEC1
poiser poisent V;IND;PL;3;PRS
quereler querelerai V;IND;SG;1;FUT;LGSPEC1
baisler baisleroyent V;COND;PL;3;LGSPEC2
eschieller escielleras V;IND;SG;2;FUT
reigler reigleroys V;COND;SG;1;LGSPEC2
contrepoiser contrepoise V;IND;SG;3;PRS
tumber tumbassiez V;IPFV;SBJV;PL;2;PST
emprunter empruntes V;SBJV;SG;2;PRS
foetter foette V;IND;SG;3;PRS
cauterizer cauterizas V;PFV;IND;SG;2;PST
veiller veillerons V;IND;PL;1;FUT
transgloutir transgloutissons V;IMP;PL;1
proclamer proclameryez V;COND;PL;2;LGSPEC2
entrencontrer entrencontryons V;IPFV;IND;PL;1;PST;LGSPEC2
soubhaitter soubhaitteras V;IND;SG;2;FUT
desprisonner desprisonne V;SBJV;SG;1;PRS
endommaiger endommaigea V;PFV;IND;SG;1;PST
assister assistassent V;IPFV;SBJV;PL;3;PST
mucer muceroient V;COND;PL;3;LGSPEC1
espargner espargnez V;IMP;PL;2
confermer confermasmes V;PFV;IND;PL;1;PST
esvanter esvanterez V;IND;PL;2;FUT
eslancer eslanceras V;IND;SG;2;FUT
pacquer pacquoient V;IPFV;IND;PL;3;PST;LGSPEC1
esmayer esmayerons V;IND;PL;1;FUT
tramper trampe V;SBJV;SG;3;PRS
recorder recordoient V;IPFV;IND;PL;3;PST;LGSPEC1
encharger enchargeassiez V;IPFV;SBJV;PL;2;PST
employer employes V;IND;SG;2;PRS
achever acheves V;IND;SG;2;PRS
plier plie V;IND;SG;3;PRS
esprouver esprouvoys V;IPFV;IND;SG;1;PST;LGSPEC2
estrangler estranglerent V;PFV;IND;PL;3;PST
deifier deifieryez V;COND;PL;2;LGSPEC2
subiuguier subiuguieray V;IND;SG;1;FUT;LGSPEC2
descouchier descoucha V;PFV;IND;SG;1;PST
ieusner ieusnes V;SBJV;SG;2;PRS
luitter luittoys V;IPFV;IND;SG;2;PST;LGSPEC2
suffocquer suffocqueryons V;COND;PL;1;LGSPEC2
expuyser expuyse V;SBJV;SG;3;PRS
demander demandez V;IMP;PL;2
travailler travaille V;IMP;SG;2
lurrer lurrerois V;COND;SG;2;LGSPEC1
esvanter esvantoyent V;IPFV;IND;PL;3;PST;LGSPEC2
encharger enchargyez V;IPFV;IND;PL;2;PST;LGSPEC2
offencer offence V;IMP;SG;2
riffler riffle V;SBJV;SG;1;PRS
intoxiquer intoxiques V;SBJV;SG;2;PRS
possesser possesses V;IND;SG;2;PRS
sembler semblerai V;IND;SG;1;FUT;LGSPEC1
dancer dancerons V;IND;PL;1;FUT
desguiser desguisoys V;IPFV;IND;SG;1;PST;LGSPEC2
arrengier arrengiez V;IPFV;IND;PL;2;PST;LGSPEC1
expeller expellerois V;COND;SG;2;LGSPEC1
baisler baislyons V;IPFV;IND;PL;1;PST;LGSPEC2
estouffer estouffyons V;IPFV;IND;PL;1;PST;LGSPEC2
atourner atournez V;SBJV;PL;2;PRS
quester questeray V;IND;SG;1;FUT;LGSPEC2
enterrer enterroyent V;IPFV;IND;PL;3;PST;LGSPEC2
desnouer desnouez V;IMP;PL;2
reiecter reiecterent V;PFV;IND;PL;3;PST
contrepoiser contrepoiserois V;COND;SG;2;LGSPEC1
esveigler esveiglois V;IPFV;IND;SG;2;PST;LGSPEC1
moderer modere V;IND;SG;1;PRS
proffiter proffitiez V;IPFV;IND;PL;2;PST;LGSPEC1
translater translates V;SBJV;SG;2;PRS
recouvrer recouvroyent V;IPFV;IND;PL;3;PST;LGSPEC2
escryer escryez V;IMP;PL;2
ployer ployent V;IND;PL;3;PRS
translater translatez V;SBJV;PL;2;PRS
deschainer deschainerois V;COND;SG;1;LGSPEC1
deslacer delaceroit V;COND;SG;3;LGSPEC1
macter macte V;IMP;SG;2
laisser laissoys V;IPFV;IND;SG;1;PST;LGSPEC2
lascher lascherai V;IND;SG;1;FUT;LGSPEC1
avaller avallasse V;IPFV;SBJV;SG;1;PST
declairer declairerez V;IND;PL;2;FUT
respirer respirons V;SBJV;PL;1;PRS
abandonner abandonnas V;PFV;IND;SG;2;PST
vuider vuider V;NFIN
viser visassent V;IPFV;SBJV;PL;3;PST
rebarber rebarbastes V;PFV;IND;PL;2;PST
tremper trempoys V;IPFV;IND;SG;1;PST;LGSPEC2
espier espieray V;IND;SG;1;FUT;LGSPEC2
deschirer deschireray V;IND;SG;1;FUT;LGSPEC2
cesser cessoys V;IPFV;IND;SG;1;PST;LGSPEC2
estacher estacherons V;IND;PL;1;FUT
croniquier croniquiez V;IMP;PL;2
effreer effreerent V;PFV;IND;PL;3;PST
participer participe V;SBJV;SG;1;PRS
prattiquer prattiquiez V;IPFV;IND;PL;2;PST;LGSPEC1
fumer fumiez V;IPFV;IND;PL;2;PST;LGSPEC1
seiourner seiournassent V;IPFV;SBJV;PL;3;PST
pecher pechons V;SBJV;PL;1;PRS
espargner espargnerai V;IND;SG;1;FUT;LGSPEC1
eslever esleveroys V;COND;SG;1;LGSPEC2
celebrer celebreray V;IND;SG;1;FUT;LGSPEC2
enfelonner enfelonnions V;IPFV;IND;PL;1;PST;LGSPEC1
toquer toquasse V;IPFV;SBJV;SG;1;PST
ymaginer ymaginasse V;IPFV;SBJV;SG;1;PST
persuader persuaderoient V;COND;PL;3;LGSPEC1
adiouster adiousteriez V;COND;PL;2;LGSPEC1
achever acheverois V;COND;SG;2;LGSPEC1
diviner divinasmes V;PFV;IND;PL;1;PST
obliger obligeroys V;COND;SG;2;LGSPEC2
desmeler desmelois V;IPFV;IND;SG;2;PST;LGSPEC1
desprisonner desprisonnyons V;IPFV;IND;PL;1;PST;LGSPEC2
effectuer effectuons V;SBJV;PL;1;PRS
esguarer esguare V;IND;SG;1;PRS
fomenter fomenterai V;IND;SG;1;FUT;LGSPEC1
escrier escriassions V;IPFV;SBJV;PL;1;PST
pryer pryastes V;PFV;IND;PL;2;PST
renouveller renouvelles V;SBJV;SG;2;PRS
desploier desploie V;SBJV;SG;3;PRS
deshonnourer deshonnoureroys V;COND;SG;2;LGSPEC2
retirer retirassions V;IPFV;SBJV;PL;1;PST
estrangler estrangle V;SBJV;SG;1;PRS
gaimenter gaimenterai V;IND;SG;1;FUT;LGSPEC1
invader invada V;PFV;IND;SG;1;PST
fromenter fromenterons V;IND;PL;1;FUT
entrencontrer s'entrencontrassent V;IPFV;SBJV;PL;3;PST
getter gette V;IMP;SG;2
getter getteroit V;COND;SG;3;LGSPEC1
estonner estonnoit V;IPFV;IND;SG;3;PST;LGSPEC1
escryer escryastes V;PFV;IND;PL;2;PST
baisler baislerons V;IND;PL;1;FUT
pourforcer pourforçoient V;IPFV;IND;PL;3;PST;LGSPEC1
descharger deschargeons V;IND;PL;1;PRS
penser penseray V;IND;SG;1;FUT;LGSPEC2
ordonner ordonnasmes V;PFV;IND;PL;1;PST
melancholier melancholient V;SBJV;PL;3;PRS
escouter escoutez V;SBJV;PL;2;PRS
preter pretiez V;IPFV;IND;PL;2;PST;LGSPEC1
gaimenter gaimenteroyt V;COND;SG;3;LGSPEC2
esprouver esprouvons V;IND;PL;1;PRS
essilier essilieroit V;COND;SG;3;LGSPEC1
advancer advançois V;IPFV;IND;SG;2;PST;LGSPEC1
apuyer apuyerois V;COND;SG;1;LGSPEC1
menasser menasse V;SBJV;SG;1;PRS
entrefraper nousentrefrapions V;IPFV;IND;PL;1;PST;LGSPEC1
baptizer baptizer V;NFIN
adapter adapterez V;IND;PL;2;FUT
souspirer souspirassiez V;IPFV;SBJV;PL;2;PST
reverer revererez V;IND;PL;2;FUT
renfler renfleryons V;COND;PL;1;LGSPEC2
offencer offençoys V;IPFV;IND;SG;1;PST;LGSPEC2
estonner estonnent V;SBJV;PL;3;PRS
effronter effronteroyt V;COND;SG;3;LGSPEC2
cauterizer cauterizons V;SBJV;PL;1;PRS
faire faisoient V;IPFV;IND;PL;3;PST;LGSPEC1
contrepoiser contrepoise V;SBJV;SG;3;PRS
estrangler estranglasse V;IPFV;SBJV;SG;1;PST
essilier essilieras V;IND;SG;2;FUT
abiurer abiurassions V;IPFV;SBJV;PL;1;PST
proclamer proclamassions V;IPFV;SBJV;PL;1;PST
engendrer engendroyt V;IPFV;IND;SG;3;PST;LGSPEC2
empieger empiegyez V;IPFV;IND;PL;2;PST;LGSPEC2
soumectre soumectroys V;COND;SG;2;LGSPEC2
destabler destablois V;IPFV;IND;SG;1;PST;LGSPEC1
fomenter fomentasse V;IPFV;SBJV;SG;1;PST
entituler entituleroit V;COND;SG;3;LGSPEC1
adapter adaptoit V;IPFV;IND;SG;3;PST;LGSPEC1
racointer racointe V;IND;SG;1;PRS
regarder regardois V;IPFV;IND;SG;2;PST;LGSPEC1
renouveller renouvellasses V;IPFV;SBJV;SG;2;PST
resister resisteroient V;COND;PL;3;LGSPEC1
abboyer abboyassions V;IPFV;SBJV;PL;1;PST
traittier traittoyent V;IPFV;IND;PL;3;PST;LGSPEC2
eslancer eslanceryez V;COND;PL;2;LGSPEC2
baisler baisleront V;IND;PL;3;FUT
achapter achaptiez V;IPFV;IND;PL;2;PST;LGSPEC1
huer huez V;SBJV;PL;2;PRS
aboscher aboschastes V;PFV;IND;PL;2;PST
eschapper eschapperions V;COND;PL;1;LGSPEC1
infourmer infourmeras V;IND;SG;2;FUT
regretter regrettoyt V;IPFV;IND;SG;3;PST;LGSPEC2
enchargier enchargiez V;IMP;PL;2
despossesser despossessoyent V;IPFV;IND;PL;3;PST;LGSPEC2
enterrer enterroient V;IPFV;IND;PL;3;PST;LGSPEC1
houssepillier houssepilles V;IND;SG;2;PRS
esgratigner esgratigne V;IMP;SG;2
peser pesassent V;IPFV;SBJV;PL;3;PST
desinfecter desinfectasses V;IPFV;SBJV;SG;2;PST
soucyer soucyerent V;PFV;IND;PL;3;PST
rouller roulleroys V;COND;SG;2;LGSPEC2
reculler recullent V;SBJV;PL;3;PRS
melancholier melancholiasmes V;PFV;IND;PL;1;PST
escapper escappoys V;IPFV;IND;SG;2;PST;LGSPEC2
desinfecter desinfecterions V;COND;PL;1;LGSPEC1
redrechier redrechieryez V;COND;PL;2;LGSPEC2
mouscher mousche V;SBJV;SG;1;PRS
desrobber desrobbyez V;IPFV;IND;PL;2;PST;LGSPEC2
estiquier estiquieryons V;COND;PL;1;LGSPEC2
gaimenter gaimentes V;IND;SG;2;PRS
houer houoyt V;IPFV;IND;SG;3;PST;LGSPEC2
garder gardoyt V;IPFV;IND;SG;3;PST;LGSPEC2
tyrer tyrerai V;IND;SG;1;FUT;LGSPEC1
despencer despenceront V;IND;PL;3;FUT
mucer muçassiez V;IPFV;SBJV;PL;2;PST
atacher atacherai V;IND;SG;1;FUT;LGSPEC1
accompaigner accompaignassent V;IPFV;SBJV;PL;3;PST
reculler recullassions V;IPFV;SBJV;PL;1;PST
estinceller estincelliez V;IPFV;IND;PL;2;PST;LGSPEC1
nommer nommoyt V;IPFV;IND;SG;3;PST;LGSPEC2
conseiller conseillent V;IND;PL;3;PRS
esvertuer esvertuera V;IND;SG;3;FUT
depescher depeschas V;PFV;IND;SG;2;PST
avaller avalla V;PFV;IND;SG;3;PST
transporter transportastes V;PFV;IND;PL;2;PST
abandonner abandonna V;PFV;IND;SG;1;PST
escrier escrierions V;COND;PL;1;LGSPEC1
bransler branslastes V;PFV;IND;PL;2;PST
parler parleras V;IND;SG;2;FUT
acquiter acquites V;SBJV;SG;2;PRS
escorcher escorchera V;IND;SG;3;FUT
depescher depeschassent V;IPFV;SBJV;PL;3;PST
contreroller contrerolleray V;IND;SG;1;FUT;LGSPEC2
proclamer proclame V;IMP;SG;2
tourner tournoient V;IPFV;IND;PL;3;PST;LGSPEC1
descourager descourage V;SBJV;SG;3;PRS
espouser espousiez V;IPFV;IND;PL;2;PST;LGSPEC1
arrengier arrengeassent V;IPFV;SBJV;PL;3;PST
proffiter proffiterons V;IND;PL;1;FUT
condescendre condescendent V;IND;PL;3;PRS
presupposer presupposerois V;COND;SG;1;LGSPEC1
hucher hucheroient V;COND;PL;3;LGSPEC1
entredesirer entredesirons nous V;IMP;PL;1
nommer nomma V;PFV;IND;SG;3;PST
rebarber rebarbes V;SBJV;SG;2;PRS
contribuer contribuassent V;IPFV;SBJV;PL;3;PST
desborder desborderez V;IND;PL;2;FUT
desloger deslogeas V;PFV;IND;SG;2;PST
detranchier detranchoys V;IPFV;IND;SG;2;PST;LGSPEC2
esveigler esveigla V;PFV;IND;SG;1;PST
preparer prepara V;PFV;IND;SG;1;PST
revencher revenchions V;IPFV;IND;PL;1;PST;LGSPEC1
quiter quitas V;PFV;IND;SG;2;PST
pourforcer pourforceroys V;COND;SG;1;LGSPEC2
reculler reculleroys V;COND;SG;2;LGSPEC2
desrisier desrise V;SBJV;SG;3;PRS
renfler renfla V;PFV;IND;SG;3;PST
quiter quiteroit V;COND;SG;3;LGSPEC1
rotter rottez V;IMP;PL;2
declairer declairassiez V;IPFV;SBJV;PL;2;PST
deslacer delace V;SBJV;SG;1;PRS
ordonner ordonneroys V;COND;SG;1;LGSPEC2
empescher empeschasses V;IPFV;SBJV;SG;2;PST
deschevaucher deschevaucheroyent V;COND;PL;3;LGSPEC2
iecter iecta V;PFV;IND;SG;3;PST
toquer toquera V;IND;SG;3;FUT
transporter transportez V;IMP;PL;2
fouragier fouragierois V;COND;SG;2;LGSPEC1
manouvrer manouvre V;IND;SG;3;PRS
pecher peche V;IND;SG;3;PRS
tremper trempiez V;IPFV;IND;PL;2;PST;LGSPEC1
tomber tombes V;SBJV;SG;2;PRS
detester detestyons V;IPFV;IND;PL;1;PST;LGSPEC2
gouster gouste V;SBJV;SG;1;PRS
geller gella V;PFV;IND;SG;3;PST
souspirer souspiroyent V;IPFV;IND;PL;3;PST;LGSPEC2
guider guide V;IMP;SG;2
merveiller merveillasse V;IPFV;SBJV;SG;1;PST
frapper frappes V;SBJV;SG;2;PRS
occurrer occurre V;IND;SG;1;PRS
esguiser esguiseray V;IND;SG;1;FUT;LGSPEC2
reguarder reguarde V;IND;SG;3;PRS
deifier deifieroys V;COND;SG;1;LGSPEC2
enseignier enseignera V;IND;SG;3;FUT
croniquier croniquie V;SBJV;SG;1;PRS
songer songeriez V;COND;PL;2;LGSPEC1
esclairer esclaira V;PFV;IND;SG;1;PST
subiecter subiectez V;IMP;PL;2
quereler querelerez V;IND;PL;2;FUT
picquier picquasses V;IPFV;SBJV;SG;2;PST
robber robboyent V;IPFV;IND;PL;3;PST;LGSPEC2
atourner atourne V;IND;SG;3;PRS
fraper fraperiez V;COND;PL;2;LGSPEC1
achever acheveryez V;COND;PL;2;LGSPEC2
translater translatas V;PFV;IND;SG;2;PST
occurrer occurrez V;IND;PL;2;PRS
temprer temprons V;IND;PL;1;PRS
aquitter aquittyons V;IPFV;IND;PL;1;PST;LGSPEC2
navrer navryons V;IPFV;IND;PL;1;PST;LGSPEC2
affier affiassent V;IPFV;SBJV;PL;3;PST
picquer picquoys V;IPFV;IND;SG;1;PST;LGSPEC2
loger logerai V;IND;SG;1;FUT;LGSPEC1
desadvouer desadvouoyent V;IPFV;IND;PL;3;PST;LGSPEC2
gaspiller gaspille V;SBJV;SG;1;PRS
exstirper exstirperois V;COND;SG;1;LGSPEC1
supposer supposeroyt V;COND;SG;3;LGSPEC2
desfaire desfait V;IND;SG;3;PRS;LGSPEC1
alimenter alimenteryons V;COND;PL;1;LGSPEC2
pourforcer pourforceroit V;COND;SG;3;LGSPEC1
assister assistoit V;IPFV;IND;SG;3;PST;LGSPEC1
retourner retournassiez V;IPFV;SBJV;PL;2;PST
celer celassions V;IPFV;SBJV;PL;1;PST
desmeler desmela V;PFV;IND;SG;3;PST
manouvrer manouvrez V;IND;PL;2;PRS
commencer commence V;SBJV;SG;3;PRS
accepter accepte V;SBJV;SG;3;PRS
flatter flattes V;SBJV;SG;2;PRS
passer passyez V;IPFV;IND;PL;2;PST;LGSPEC2
acquiter acquite V;IND;SG;3;PRS
deslacer delaçons V;IPFV;IND;PL;1;PST;LGSPEC2
proteger protegeasses V;IPFV;SBJV;SG;2;PST
pacquer pacquast V;IPFV;SBJV;SG;3;PST
payer payerons V;IND;PL;1;FUT
esgratigner esgratigneriez V;COND;PL;2;LGSPEC1
mehaignier mehaignierai V;IND;SG;1;FUT;LGSPEC1
riffler riffleray V;IND;SG;1;FUT;LGSPEC2
regretter regrettois V;IPFV;IND;SG;1;PST;LGSPEC1
desver desvois V;IPFV;IND;SG;1;PST;LGSPEC1
entrefrapper entrefrappez vous V;IMP;PL;2
avanchier avanchierois V;COND;SG;1;LGSPEC1
rouiller rouillerent V;PFV;IND;PL;3;PST
advancer advançast V;IPFV;SBJV;SG;3;PST
soumectre soumectroye V;IND;SG;1;FUT;LGSPEC2
heurter heurtez V;IMP;PL;2
prattiquer prattiquez V;IND;PL;2;PRS
reigler reiglassent V;IPFV;SBJV;PL;3;PST
enconcher enconchoys V;IPFV;IND;SG;2;PST;LGSPEC2
soucyer soucyerons V;IND;PL;1;FUT
enchasser enchassiez V;IPFV;IND;PL;2;PST;LGSPEC1
eriger erigerent V;PFV;IND;PL;3;PST
estonner estonneryez V;COND;PL;2;LGSPEC2
logier logieront V;IND;PL;3;FUT
esgaler esgaleront V;IND;PL;3;FUT
esquacher esquachons V;IMP;PL;1
mucer muçons V;IMP;PL;1
soulaiger soulaigent V;IND;PL;3;PRS
coucher couchent V;SBJV;PL;3;PRS
retirer retiryez V;IPFV;IND;PL;2;PST;LGSPEC2
cacher cachez V;IMP;PL;2
abboyer abboyoyt V;IPFV;IND;SG;3;PST;LGSPEC2
eschieller esciellasses V;IPFV;SBJV;SG;2;PST
desrouter desroutes V;SBJV;SG;2;PRS
passer passoys V;IPFV;IND;SG;1;PST;LGSPEC2
marier marioit V;IPFV;IND;SG;3;PST;LGSPEC1
merveiller merveilleryez V;COND;PL;2;LGSPEC2
bobeliner bobelinois V;IPFV;IND;SG;1;PST;LGSPEC1
tumber tumberiez V;COND;PL;2;LGSPEC1
abayer abaye V;IMP;SG;2
celebrer celebra V;PFV;IND;SG;1;PST
mucer muça V;PFV;IND;SG;1;PST
enseignier enseignast V;IPFV;SBJV;SG;3;PST
pourchasser pourchassoient V;IPFV;IND;PL;3;PST;LGSPEC1
courroucer courroucerions V;COND;PL;1;LGSPEC1
suffocquer suffocquoys V;IPFV;IND;SG;2;PST;LGSPEC2
tuer tuoys V;IPFV;IND;SG;2;PST;LGSPEC2
loger logera V;IND;SG;3;FUT
expuyser expuyseryons V;COND;PL;1;LGSPEC2
traittier traittieryons V;COND;PL;1;LGSPEC2
destourner destourneroys V;COND;SG;2;LGSPEC2
desploier desploiyez V;IPFV;IND;PL;2;PST;LGSPEC2
esvertuer esvertuerions V;COND;PL;1;LGSPEC1
resver resverez V;IND;PL;2;FUT
cauterizer cauterizez V;IND;PL;2;PRS
ruyner ruyneroys V;COND;SG;1;LGSPEC2
gouster gousteroit V;COND;SG;3;LGSPEC1
contribuer contribueray V;IND;SG;1;FUT;LGSPEC2
pacquer pacque V;IND;SG;3;PRS
desregler desreglerez V;IND;PL;2;FUT
estinceller estincelleroyt V;COND;SG;3;LGSPEC2
estrangler estranglerois V;COND;SG;2;LGSPEC1
deschevaucher deschevauchoys V;IPFV;IND;SG;1;PST;LGSPEC2
blasphemer blasphemeryez V;COND;PL;2;LGSPEC2
hacher hachoit V;IPFV;IND;SG;3;PST;LGSPEC1
singler singlerez V;IND;PL;2;FUT
tourmenter tourmentasses V;IPFV;SBJV;SG;2;PST
mensongier mensongieryons V;COND;PL;1;LGSPEC2
trancher tranchassent V;IPFV;SBJV;PL;3;PST
enconvenencier enconvenençassions V;IPFV;SBJV;PL;1;PST
arrester arresta V;PFV;IND;SG;1;PST
mortifier mortifiez V;SBJV;PL;2;PRS
recuperer recupereront V;IND;PL;3;FUT
saluer saluasses V;IPFV;SBJV;SG;2;PST
esgratigner esgratignons V;SBJV;PL;1;PRS
oublyer oublyeroyt V;COND;SG;3;LGSPEC2
esternuer esternuoit V;IPFV;IND;SG;3;PST;LGSPEC1
esquacher esquachons V;IND;PL;1;PRS
tromper trompoys V;IPFV;IND;SG;1;PST;LGSPEC2
manger mangeroyt V;COND;SG;3;LGSPEC2
desister desisteryez V;COND;PL;2;LGSPEC2
advouer advoueryez V;COND;PL;2;LGSPEC2
reiecter reiecte V;IND;SG;3;PRS
desheriter desheritons V;IMP;PL;1
representer representera V;IND;SG;3;FUT
ietter iettois V;IPFV;IND;SG;2;PST;LGSPEC1
fouragier fourageois V;IPFV;IND;SG;2;PST;LGSPEC1
confesser confessoyent V;IPFV;IND;PL;3;PST;LGSPEC2
fouller foullons V;SBJV;PL;1;PRS
humilier humilient V;IND;PL;3;PRS
contregarder contregardas V;PFV;IND;SG;2;PST
mettre mette V;SBJV;SG;3;PRS
retirer retirerois V;COND;SG;2;LGSPEC1
acoustumer acoustumerent V;PFV;IND;PL;3;PST
affamer affamastes V;PFV;IND;PL;2;PST
atacher atachyez V;IPFV;IND;PL;2;PST;LGSPEC2
acoustrer acoustreroyent V;COND;PL;3;LGSPEC2
translater translata V;PFV;IND;SG;3;PST
destabler destablerent V;PFV;IND;PL;3;PST
esparpiller esparpillent V;SBJV;PL;3;PRS
donner donneront V;IND;PL;3;FUT
r'asseurer r'asseuryons V;IPFV;IND;PL;1;PST;LGSPEC2
diviner divinois V;IPFV;IND;SG;2;PST;LGSPEC1
expeller expellois V;IPFV;IND;SG;1;PST;LGSPEC1
esvanter esvantes V;IND;SG;2;PRS
mortifier mortifiyons V;IPFV;IND;PL;1;PST;LGSPEC2
desplacer desplaça V;PFV;IND;SG;3;PST
exposer exposeroit V;COND;SG;3;LGSPEC1
plier pliasses V;IPFV;SBJV;SG;2;PST
soumectre soumecte V;SBJV;SG;1;PRS
fortifier fortifieroys V;COND;SG;1;LGSPEC2
proclamer proclamerois V;COND;SG;2;LGSPEC1
adiouster adioustent V;SBJV;PL;3;PRS
traitter traittes V;SBJV;SG;2;PRS
empirer empirerez V;IND;PL;2;FUT
courroucer courrouçasmes V;PFV;IND;PL;1;PST
houer houe V;IMP;SG;2
tramper tramperyez V;COND;PL;2;LGSPEC2
allaicter allaictoyt V;IPFV;IND;SG;3;PST;LGSPEC2
regretter regrettastes V;PFV;IND;PL;2;PST
verifier verifiasses V;IPFV;SBJV;SG;2;PST
coniurer coniurera V;IND;SG;3;FUT
declairer declaire V;IMP;SG;2
desinfecter desinfecteryez V;COND;PL;2;LGSPEC2
preferer preferions V;IPFV;IND;PL;1;PST;LGSPEC1
rotter rottyons V;IPFV;IND;PL;1;PST;LGSPEC2
deffier deffiast V;IPFV;SBJV;SG;3;PST
aloser aloseront V;IND;PL;3;FUT
oster ostoys V;IPFV;IND;SG;1;PST;LGSPEC2
desfaire desferois V;COND;SG;1;LGSPEC1
tyrer tyrassions V;IPFV;SBJV;PL;1;PST
mocquer mocquassiez V;IPFV;SBJV;PL;2;PST
leicher leicherez V;IND;PL;2;FUT
delaisser delaisses V;IND;SG;2;PRS
peser peseroys V;COND;SG;2;LGSPEC2
reietter reiettoyt V;IPFV;IND;SG;3;PST;LGSPEC2
exstirper exstirpasse V;IPFV;SBJV;SG;1;PST
desgorger desgorgeois V;IPFV;IND;SG;2;PST;LGSPEC1
presumer presumons V;IMP;PL;1
endommaiger endommaigyez V;IPFV;IND;PL;2;PST;LGSPEC2
eschapper eschapperoyt V;COND;SG;3;LGSPEC2
desregler desreglastes V;PFV;IND;PL;2;PST
despouiller despouilleroys V;COND;SG;2;LGSPEC2
exposer exposoient V;IPFV;IND;PL;3;PST;LGSPEC1
desbaucher desbauchasmes V;PFV;IND;PL;1;PST
estouffer estoufferoient V;COND;PL;3;LGSPEC1
confesser confesseryez V;COND;PL;2;LGSPEC2
retyrer retyrez V;IMP;PL;2
aloser alosons V;SBJV;PL;1;PRS
compter compterois V;COND;SG;1;LGSPEC1
desregler desreglas V;PFV;IND;SG;2;PST
pourforcer pourforçons V;IMP;PL;1
aterminer atermine V;IMP;SG;2
pocher pochasses V;IPFV;SBJV;SG;2;PST
desbarater desbaratons V;IND;PL;1;PRS
accepter accepterez V;IND;PL;2;FUT
luitter luitterons V;IND;PL;1;FUT
mucer muceroyent V;COND;PL;3;LGSPEC2
faire feroyent V;COND;PL;3;LGSPEC2
approuvender approuvendes V;IND;SG;2;PRS
reguarder reguardiez V;IPFV;IND;PL;2;PST;LGSPEC1
couster coustoys V;IPFV;IND;SG;1;PST;LGSPEC2
estimer estimeroys V;COND;SG;1;LGSPEC2
viser viseront V;IND;PL;3;FUT
reiecter reiecteryons V;COND;PL;1;LGSPEC2
demesler demeslasses V;IPFV;SBJV;SG;2;PST
seiourner seiournast V;IPFV;SBJV;SG;3;PST
pisser pisse V;IND;SG;1;PRS
retirer retireray V;IND;SG;1;FUT;LGSPEC2
fraper frapasses V;IPFV;SBJV;SG;2;PST
encommencer encommencer V;NFIN
pausmer pausmerent V;PFV;IND;PL;3;PST
destacher destache V;SBJV;SG;3;PRS
expuyser expuyse V;IND;SG;1;PRS
ieusner ieusnerez V;IND;PL;2;FUT
mortifier mortifions V;IMP;PL;1
deffier deffieroit V;COND;SG;3;LGSPEC1
enfelonner enfelonna V;PFV;IND;SG;1;PST
armoier armoioit V;IPFV;IND;SG;3;PST;LGSPEC1
vengier vengeoys V;IPFV;IND;SG;2;PST;LGSPEC2
arrengier arrengea V;PFV;IND;SG;3;PST
despouiller despouilleroient V;COND;PL;3;LGSPEC1
heurter heurtez V;IND;PL;2;PRS
fouragier fouragieroit V;COND;SG;3;LGSPEC1
desrouter desroutent V;SBJV;PL;3;PRS
moustrer moustriez V;IPFV;IND;PL;2;PST;LGSPEC1
desbaucher desbauchassiez V;IPFV;SBJV;PL;2;PST
executer executerons V;IND;PL;1;FUT
deliberer delibere V;SBJV;SG;1;PRS
poiser poiseroys V;COND;SG;2;LGSPEC2
iurer iureriez V;COND;PL;2;LGSPEC1
abboyer abboyyons V;IPFV;IND;PL;1;PST;LGSPEC2
tournoyer tournoyeroyent V;COND;PL;3;LGSPEC2
huer huiez V;IPFV;IND;PL;2;PST;LGSPEC1
contreroller contrerolleriez V;COND;PL;2;LGSPEC1
enfelonner enfelonnasse V;IPFV;SBJV;SG;1;PST
esbaucher esbaucheroient V;COND;PL;3;LGSPEC1
demander demanderyons V;COND;PL;1;LGSPEC2
hebergier heberge V;SBJV;SG;1;PRS
chercher cherchera V;IND;SG;3;FUT
entreruyner s'entreruynassent V;IPFV;SBJV;PL;3;PST
deffier deffiiez V;IPFV;IND;PL;2;PST;LGSPEC1
subiecter subiecterai V;IND;SG;1;FUT;LGSPEC1
eschieller esciellera V;IND;SG;3;FUT
reserver reserveriez V;COND;PL;2;LGSPEC1
reculler recullassiez V;IPFV;SBJV;PL;2;PST
soingner soingna V;PFV;IND;SG;1;PST
resumer resumeroys V;COND;SG;2;LGSPEC2
acquiter acquitent V;SBJV;PL;3;PRS
chevauchier chevauchastes V;PFV;IND;PL;2;PST
prier prieroyt V;COND;SG;3;LGSPEC2
proffiter proffitent V;IND;PL;3;PRS
bancqueter bancquetoys V;IPFV;IND;SG;2;PST;LGSPEC2
desadvouer desadvoueroyt V;COND;SG;3;LGSPEC2
despouiller despouillerois V;COND;SG;1;LGSPEC1
confermer confermeryez V;COND;PL;2;LGSPEC2
gouster goustez V;SBJV;PL;2;PRS
herrier herria V;PFV;IND;SG;3;PST
proclamer proclamoyt V;IPFV;IND;SG;3;PST;LGSPEC2
esveigler esveigloyt V;IPFV;IND;SG;3;PST;LGSPEC2
hebergier hebergier V;NFIN
amer ames V;SBJV;SG;2;PRS
fouragier fouragyons V;IPFV;IND;PL;1;PST;LGSPEC2
escumer escumions V;IPFV;IND;PL;1;PST;LGSPEC1
debaracer debaraçast V;IPFV;SBJV;SG;3;PST
declairer declairions V;IPFV;IND;PL;1;PST;LGSPEC1
tyrer tyreront V;IND;PL;3;FUT
guider guidions V;IPFV;IND;PL;1;PST;LGSPEC1
verifier verifie V;SBJV;SG;1;PRS
lascher laschiez V;IPFV;IND;PL;2;PST;LGSPEC1
arriver arriveroyt V;COND;SG;3;LGSPEC2
riffler rifflerions V;COND;PL;1;LGSPEC1
proteger protege V;IND;SG;3;PRS
encommencer encommençoient V;IPFV;IND;PL;3;PST;LGSPEC1
condescendre condescendoies V;IPFV;IND;SG;2;PST;LGSPEC1
visiter visitez V;IMP;PL;2
acquiter acquite V;SBJV;SG;3;PRS
enconvenencier enconvenencieroys V;COND;SG;1;LGSPEC2
saulver saulveryez V;COND;PL;2;LGSPEC2
getter gettas V;PFV;IND;SG;2;PST
quester questez V;SBJV;PL;2;PRS
enchasser enchassoyent V;IPFV;IND;PL;3;PST;LGSPEC2
renfler renfla V;PFV;IND;SG;1;PST
protester protestasse V;IPFV;SBJV;SG;1;PST
renommer renomma V;PFV;IND;SG;1;PST
desister desistez V;SBJV;PL;2;PRS
auser ausasse V;IPFV;SBJV;SG;1;PST
separer separeryons V;COND;PL;1;LGSPEC2
effreer effreent V;SBJV;PL;3;PRS
tyrer tyrerions V;COND;PL;1;LGSPEC1
heiler heileront V;IND;PL;3;FUT
caper capez V;IND;PL;2;PRS
lyer lyerent V;PFV;IND;PL;3;PST
ployer ployeroyt V;COND;SG;3;LGSPEC2
logier logent V;SBJV;PL;3;PRS
renfler renflasses V;IPFV;SBJV;SG;2;PST
desheriter desheritent V;IND;PL;3;PRS
desyrer desyrois V;IPFV;IND;SG;2;PST;LGSPEC1
mettre mettrois V;COND;SG;1;LGSPEC1
estonner estonnent V;IND;PL;3;PRS
blesser blesse V;IND;SG;3;PRS
estoffer estofferoit V;COND;SG;3;LGSPEC1
assieger assiegeroys V;COND;SG;1;LGSPEC2
preferer prefereroyt V;COND;SG;3;LGSPEC2
estimer estimoyent V;IPFV;IND;PL;3;PST;LGSPEC2
conquester conquesteroys V;COND;SG;2;LGSPEC2
rebarber rebarbez V;IMP;PL;2
preter pretent V;IND;PL;3;PRS
esbaucher esbauchoient V;IPFV;IND;PL;3;PST;LGSPEC1
enpoisonner enpoisonnerai V;IND;SG;1;FUT;LGSPEC1
esperer esperent V;IND;PL;3;PRS
aboscher aboschassiez V;IPFV;SBJV;PL;2;PST
menasser menassez V;IND;PL;2;PRS
lever leveroys V;COND;SG;1;LGSPEC2
mettre mettoit V;IPFV;IND;SG;3;PST;LGSPEC1
atourner atournoit V;IPFV;IND;SG;3;PST;LGSPEC1
pocher pochyez V;IPFV;IND;PL;2;PST;LGSPEC2
contregarder contregarde V;SBJV;SG;3;PRS
esquacher esquacheriez V;COND;PL;2;LGSPEC1
mocquer mocquoient V;IPFV;IND;PL;3;PST;LGSPEC1
brusler brusliez V;IPFV;IND;PL;2;PST;LGSPEC1
quiter quita V;PFV;IND;SG;3;PST
humilier humilies V;SBJV;SG;2;PRS
baster basteroys V;COND;SG;1;LGSPEC2
evaporer evaporerez V;IND;PL;2;FUT
estre fust V;IPFV;SBJV;SG;3;PST
aquitter aquitteroys V;COND;SG;2;LGSPEC2
adiouster adiouste V;IMP;SG;2
resister resistoyt V;IPFV;IND;SG;3;PST;LGSPEC2
desrobber desrobberions V;COND;PL;1;LGSPEC1
atacher atachasse V;IPFV;SBJV;SG;1;PST
louer louoit V;IPFV;IND;SG;3;PST;LGSPEC1
recommander recommandyons V;IPFV;IND;PL;1;PST;LGSPEC2
recuperer recuperyons V;IPFV;IND;PL;1;PST;LGSPEC2
pacquer pacquas V;PFV;IND;SG;2;PST
diviner divinerions V;COND;PL;1;LGSPEC1
armoier armoiyez V;IPFV;IND;PL;2;PST;LGSPEC2
escorner escorna V;PFV;IND;SG;1;PST
herrier herrieriez V;COND;PL;2;LGSPEC1
delivrer delivrassions V;IPFV;SBJV;PL;1;PST
ietter iettez V;IND;PL;2;PRS
seeller seellons V;IND;PL;1;PRS
resister resistoyent V;IPFV;IND;PL;3;PST;LGSPEC2
ruyner ruyniez V;IPFV;IND;PL;2;PST;LGSPEC1
enferrer enferrassions V;IPFV;SBJV;PL;1;PST
resigner resigneroys V;COND;SG;1;LGSPEC2
estacher estacherent V;PFV;IND;PL;3;PST
enconcher enconcherois V;COND;SG;1;LGSPEC1
lyer lyast V;IPFV;SBJV;SG;3;PST
buchier buchierent V;PFV;IND;PL;3;PST
renfler renflez V;IMP;PL;2
prattiquer prattiquera V;IND;SG;3;FUT
brusler bruslons V;SBJV;PL;1;PRS
estirer estiras V;PFV;IND;SG;2;PST
esguiser esguisez V;SBJV;PL;2;PRS
courouchier courouchasmes V;PFV;IND;PL;1;PST
praeparer praepariez V;IPFV;IND;PL;2;PST;LGSPEC1
effreer effreeroyt V;COND;SG;3;LGSPEC2
travailler travailloit V;IPFV;IND;SG;3;PST;LGSPEC1
atacher atachons V;IMP;PL;1
pryer pryas V;PFV;IND;SG;2;PST
sceller scelleroit V;COND;SG;3;LGSPEC1
iniurier iniurieroient V;COND;PL;3;LGSPEC1
louer louoient V;IPFV;IND;PL;3;PST;LGSPEC1
abayer abayoys V;IPFV;IND;SG;2;PST;LGSPEC2
toquer toquoyt V;IPFV;IND;SG;3;PST;LGSPEC2
desarmer desarmeriez V;COND;PL;2;LGSPEC1
edifier edifions V;SBJV;PL;1;PRS
peser peseryez V;COND;PL;2;LGSPEC2
diviner divineryons V;COND;PL;1;LGSPEC2
escouiller escouilloys V;IPFV;IND;SG;2;PST;LGSPEC2
desadvouer desadvoueroit V;COND;SG;3;LGSPEC1
revencher revencherois V;COND;SG;1;LGSPEC1
interpreter interpreteriez V;COND;PL;2;LGSPEC1
saluer salue V;IMP;SG;2
rincer rinceroys V;COND;SG;1;LGSPEC2
toucher touchons V;SBJV;PL;1;PRS
enconvenencier enconvenenciera V;IND;SG;3;FUT
tirer tira V;PFV;IND;SG;3;PST
mercyer mercyeray V;IND;SG;1;FUT;LGSPEC2
iniurier iniurias V;PFV;IND;SG;2;PST
aler va V;IND;SG;3;PRS
preceder precederois V;COND;SG;2;LGSPEC1
resver resvasmes V;PFV;IND;PL;1;PST
transgloutir transgloutiroyt V;COND;SG;3;LGSPEC2
praesenter praesenteroys V;COND;SG;2;LGSPEC2
resider residerions V;COND;PL;1;LGSPEC1
toucher touchent V;IND;PL;3;PRS
habiter habitent V;SBJV;PL;3;PRS
encharger enchargeoient V;IPFV;IND;PL;3;PST;LGSPEC1
saulter saulteras V;IND;SG;2;FUT
rotter rotterois V;COND;SG;2;LGSPEC1
conquester conquestez V;IND;PL;2;PRS
praesenter praesenteryons V;COND;PL;1;LGSPEC2
adviser advise V;SBJV;SG;3;PRS
redoubter redoubtois V;IPFV;IND;SG;2;PST;LGSPEC1
penetrer penetres V;SBJV;SG;2;PRS
accuser accusast V;IPFV;SBJV;SG;3;PST
flechir fleschiroient V;COND;PL;3;LGSPEC1
respirer respirasmes V;PFV;IND;PL;1;PST
resumer resumerons V;IND;PL;1;FUT
auser auseront V;IND;PL;3;FUT
esgratigner esgratigna V;PFV;IND;SG;3;PST
rouiller rouilla V;PFV;IND;SG;3;PST
aquitter aquittons V;IMP;PL;1
lascher lascheroys V;COND;SG;2;LGSPEC2
noter notez V;SBJV;PL;2;PRS
tocquer tocquerez V;IND;PL;2;FUT
soumectre soumectoit V;IPFV;IND;SG;3;PST;LGSPEC1
oublyer oublyeroient V;COND;PL;3;LGSPEC1
traittier traittieray V;IND;SG;1;FUT;LGSPEC2
depescher depescherois V;COND;SG;2;LGSPEC1
serainer serainast V;IPFV;SBJV;SG;3;PST
apuyer apuyeroys V;COND;SG;2;LGSPEC2
merveiller merveilloyent V;IPFV;IND;PL;3;PST;LGSPEC2
entrencontrer vous entrencontrez V;IND;PL;2;PRS
tremper trempoyt V;IPFV;IND;SG;3;PST;LGSPEC2
effreer effreerions V;COND;PL;1;LGSPEC1
tirer tirois V;IPFV;IND;SG;1;PST;LGSPEC1
prattiquer prattiquoys V;IPFV;IND;SG;2;PST;LGSPEC2
aboscher aboschassent V;IPFV;SBJV;PL;3;PST
foetter foettastes V;PFV;IND;PL;2;PST
coniecturer coniecture V;IND;SG;3;PRS
iecter iectez V;SBJV;PL;2;PRS
trouver trouveroys V;COND;SG;2;LGSPEC2
enpoisonner enpoisonneroient V;COND;PL;3;LGSPEC1
detester detestez V;IND;PL;2;PRS
buchier buchoys V;IPFV;IND;SG;1;PST;LGSPEC2
penser pensassent V;IPFV;SBJV;PL;3;PST
deifier deifiez V;IND;PL;2;PRS
porter porterions V;COND;PL;1;LGSPEC1
communicquer communicqueriez V;COND;PL;2;LGSPEC1
approuvender approuvendons V;SBJV;PL;1;PRS
hebergier hebergeoient V;IPFV;IND;PL;3;PST;LGSPEC1
entreruyner nousentreruynions V;IPFV;IND;PL;1;PST;LGSPEC1
renger rengeroyent V;COND;PL;3;LGSPEC2
depescher depeschons V;SBJV;PL;1;PRS
raenchonner raenchonnoient V;IPFV;IND;PL;3;PST;LGSPEC1
foetter foetterez V;IND;PL;2;FUT
manouvrer manouvrast V;IPFV;SBJV;SG;3;PST
alonger alongeroit V;COND;SG;3;LGSPEC1
uriner urinerent V;PFV;IND;PL;3;PST
explorer explorois V;IPFV;IND;SG;1;PST;LGSPEC1
honnourer honnourerois V;COND;SG;1;LGSPEC1
reculler reculloys V;IPFV;IND;SG;1;PST;LGSPEC2
persuader persuaderoit V;COND;SG;3;LGSPEC1
verifier verifiiez V;IPFV;IND;PL;2;PST;LGSPEC1
suffocquer suffocque V;SBJV;SG;1;PRS
heurter heurte V;IND;SG;3;PRS
eschauffer eschauffons V;IND;PL;1;PRS
appuier appuias V;PFV;IND;SG;2;PST
dampner dampnassiez V;IPFV;SBJV;PL;2;PST
ymaginer ymaginer V;NFIN
effectuer effectue V;SBJV;SG;1;PRS
eviter evitez V;IND;PL;2;PRS
hucher huchas V;PFV;IND;SG;2;PST
retirer retirer V;NFIN
hostoier hostoieroys V;COND;SG;2;LGSPEC2
desbarater desbarata V;PFV;IND;SG;1;PST
soupper soupperoyent V;COND;PL;3;LGSPEC2
loger logent V;SBJV;PL;3;PRS
consyderer consyderyez V;IPFV;IND;PL;2;PST;LGSPEC2
negotier negotiassions V;IPFV;SBJV;PL;1;PST
luitter luittasses V;IPFV;SBJV;SG;2;PST
desister desistois V;IPFV;IND;SG;2;PST;LGSPEC1
desver desvoient V;IPFV;IND;PL;3;PST;LGSPEC1
amadouer amadouez V;IND;PL;2;PRS
delaisser delaissent V;IND;PL;3;PRS
monter montoyent V;IPFV;IND;PL;3;PST;LGSPEC2
baisler baisleryons V;COND;PL;1;LGSPEC2
desbarater desbaratoys V;IPFV;IND;SG;1;PST;LGSPEC2
retourner retourneryez V;COND;PL;2;LGSPEC2
blasphemer blasphemons V;SBJV;PL;1;PRS
hostoier hostoieray V;IND;SG;1;FUT;LGSPEC2
abhorrer abhorreroient V;COND;PL;3;LGSPEC1
essilier essilierois V;COND;SG;2;LGSPEC1
mehaignier mehaignieroient V;COND;PL;3;LGSPEC1
pausmer pausme V;IMP;SG;2
occuper occuperas V;IND;SG;2;FUT
aorner aornerois V;COND;SG;2;LGSPEC1
rincer rinçois V;IPFV;IND;SG;2;PST;LGSPEC1
manouvrer manouvryez V;IPFV;IND;PL;2;PST;LGSPEC2
aymer ayme V;SBJV;SG;3;PRS
intoxiquer intoxiquer V;NFIN
regretter regretteras V;IND;SG;2;FUT
quereler querele V;IND;SG;3;PRS
aerer aererent V;PFV;IND;PL;3;PST
deshonnourer deshonnoura V;PFV;IND;SG;1;PST
escapper escappyez V;IPFV;IND;PL;2;PST;LGSPEC2
adviser adviseray V;IND;SG;1;FUT;LGSPEC2
endommaiger endommaigeasses V;IPFV;SBJV;SG;2;PST
besoinger besoigneras V;IND;SG;2;FUT
representer representent V;SBJV;PL;3;PRS
lurrer lurrasse V;IPFV;SBJV;SG;1;PST
traicter tractons V;IMP;PL;1
occurrer occurrassent V;IPFV;SBJV;PL;3;PST
regorger regorges V;SBJV;SG;2;PRS
blasphemer blasphemez V;IND;PL;2;PRS
getter getteront V;IND;PL;3;FUT
posseder possedoit V;IPFV;IND;SG;3;PST;LGSPEC1
advouer advouoient V;IPFV;IND;PL;3;PST;LGSPEC1
desinfecter desinfecteroys V;COND;SG;1;LGSPEC2
desployer desployois V;IPFV;IND;SG;2;PST;LGSPEC1
achapter achaptoys V;IPFV;IND;SG;2;PST;LGSPEC2
devourer devourer V;NFIN
gaber gabe V;IMP;SG;2
viser visas V;PFV;IND;SG;2;PST
garder garde V;IND;SG;1;PRS
deliberer deliberiez V;IPFV;IND;PL;2;PST;LGSPEC1
accointer accointe V;IND;SG;1;PRS
demourer demourerai V;IND;SG;1;FUT;LGSPEC1
descharger deschargea V;PFV;IND;SG;3;PST
picquier picquieroyt V;COND;SG;3;LGSPEC2
houssepillier houssepillasses V;IPFV;SBJV;SG;2;PST
soingner soingniez V;IPFV;IND;PL;2;PST;LGSPEC1
esmayer esmayerent V;PFV;IND;PL;3;PST
louer loueroit V;COND;SG;3;LGSPEC1
saulter saultera V;IND;SG;3;FUT
demesler demesle V;IND;SG;1;PRS
rejecter rejecterois V;COND;SG;1;LGSPEC1
entredesirer vousentredesireriez V;COND;PL;2;LGSPEC1
estimer estimez V;IND;PL;2;PRS
esmayer esmayerions V;COND;PL;1;LGSPEC1
effreer effreasse V;IPFV;SBJV;SG;1;PST
essayer essayassiez V;IPFV;SBJV;PL;2;PST
bayser baysyez V;IPFV;IND;PL;2;PST;LGSPEC2
souspirer souspira V;PFV;IND;SG;1;PST
intoxiquer intoxiquiez V;IPFV;IND;PL;2;PST;LGSPEC1
bancqueter bancquetoient V;IPFV;IND;PL;3;PST;LGSPEC1
atacher atachoys V;IPFV;IND;SG;2;PST;LGSPEC2
approuchier approuchions V;SBJV;PL;1;PRS
melancholier melancholieriez V;COND;PL;2;LGSPEC1
deschevaucher deschevauchois V;IPFV;IND;SG;1;PST;LGSPEC1
soucyer soucyons V;IND;PL;1;PRS
courouchier courouchois V;IPFV;IND;SG;1;PST;LGSPEC1
houer houeroyt V;COND;SG;3;LGSPEC2
honnourer honnourerez V;IND;PL;2;FUT
travailler travailleroit V;COND;SG;3;LGSPEC1
desheriter desheritoyent V;IPFV;IND;PL;3;PST;LGSPEC2
asseurer asseure V;SBJV;SG;3;PRS
proteger protegeriez V;COND;PL;2;LGSPEC1
iecter iecterent V;PFV;IND;PL;3;PST
ieusner ieusneray V;IND;SG;1;FUT;LGSPEC2
tournoyer tournoyerez V;IND;PL;2;FUT
escumer escumeroyt V;COND;SG;3;LGSPEC2
solliciter solliciteroyent V;COND;PL;3;LGSPEC2
accuser accuse V;IND;SG;3;PRS
arrester arresteras V;IND;SG;2;FUT
desyrer desyrassent V;IPFV;SBJV;PL;3;PST
denunchier denunchie V;IND;SG;3;PRS
foetter foetteroit V;COND;SG;3;LGSPEC1
toquer toqueray V;IND;SG;1;FUT;LGSPEC2
demourer demourasses V;IPFV;SBJV;SG;2;PST
respirer respirez V;SBJV;PL;2;PRS
manouvrer manouvreroient V;COND;PL;3;LGSPEC1
exposer exposeroys V;COND;SG;2;LGSPEC2
traittier traittions V;SBJV;PL;1;PRS
voller vollez V;SBJV;PL;2;PRS
escorcher escorchoys V;IPFV;IND;SG;1;PST;LGSPEC2
haster hasteroyt V;COND;SG;3;LGSPEC2
fomenter fomenteroyt V;COND;SG;3;LGSPEC2
denunchier denunchie V;IMP;SG;2
provocquer provocquois V;IPFV;IND;SG;1;PST;LGSPEC1
haittier haittieroys V;COND;SG;1;LGSPEC2
destacher destache V;IMP;SG;2
rouller roullerez V;IND;PL;2;FUT
esprouver esprouvions V;IPFV;IND;PL;1;PST;LGSPEC1
esguarer esguarerions V;COND;PL;1;LGSPEC1
deschainer deschainoit V;IPFV;IND;SG;3;PST;LGSPEC1
geller gelleroys V;COND;SG;2;LGSPEC2
esquacher esquachast V;IPFV;SBJV;SG;3;PST
pourmener pourmenasmes V;PFV;IND;PL;1;PST
infourmer infourmas V;PFV;IND;SG;2;PST
vengier vengieront V;IND;PL;3;FUT
mescler mesclons V;IND;PL;1;PRS
desborder desbordent V;SBJV;PL;3;PRS
demesler demesleront V;IND;PL;3;FUT
rejecter rejecter V;NFIN
finir finisse V;SBJV;SG;3;PRS
cacher cachast V;IPFV;SBJV;SG;3;PST
monter monteroys V;COND;SG;1;LGSPEC2
veiller veillyons V;IPFV;IND;PL;1;PST;LGSPEC2
edifier edifie V;IMP;SG;2
transporter transportent V;IND;PL;3;PRS
rotter rottois V;IPFV;IND;SG;1;PST;LGSPEC1
preferer preferois V;IPFV;IND;SG;1;PST;LGSPEC1
courrouchier courrouchions V;IPFV;IND;PL;1;PST;LGSPEC1
esgarer esgarerons V;IND;PL;1;FUT
aerer aereront V;IND;PL;3;FUT
fiancer fiançoys V;IPFV;IND;SG;2;PST;LGSPEC2
mascher masches V;IND;SG;2;PRS
cabasser cabassoys V;IPFV;IND;SG;1;PST;LGSPEC2
recommander recommandons V;IND;PL;1;PRS
herrier herriez V;IND;PL;2;PRS
desfaire desfaites V;IND;PL;2;PRS
eriger erigeoient V;IPFV;IND;PL;3;PST;LGSPEC1
payer payeras V;IND;SG;2;FUT
infourmer infourmoyent V;IPFV;IND;PL;3;PST;LGSPEC2
atempter atemptez V;SBJV;PL;2;PRS
demander demanderoient V;COND;PL;3;LGSPEC1
renfler renfleroyt V;COND;SG;3;LGSPEC2
conquester conquesteryez V;COND;PL;2;LGSPEC2
destabler destables V;SBJV;SG;2;PRS
marcher marchyons V;IPFV;IND;PL;1;PST;LGSPEC2
expeller expelleroys V;COND;SG;1;LGSPEC2
fraper frapyez V;IPFV;IND;PL;2;PST;LGSPEC2
advouer advoue V;SBJV;SG;1;PRS
accomplir accomplissent V;IPFV;SBJV;PL;3;PST
appareiller appareilloyt V;IPFV;IND;SG;3;PST;LGSPEC2
practicquer practicquerois V;COND;SG;2;LGSPEC1
mortifier mortifieroyent V;COND;PL;3;LGSPEC2
consyderer consydereroyt V;COND;SG;3;LGSPEC2
mucer mucent V;IND;PL;3;PRS
abboyer abboyeriez V;COND;PL;2;LGSPEC1
mehaignier mehaignieroit V;COND;SG;3;LGSPEC1
finir finit V;IND;SG;3;PRS
loger logeroys V;COND;SG;1;LGSPEC2
cointoier cointoie V;IMP;SG;2
atempter atemptera V;IND;SG;3;FUT
reietter reietteroyent V;COND;PL;3;LGSPEC2
gaspiller gaspilleriez V;COND;PL;2;LGSPEC1
praesider praesidions V;IPFV;IND;PL;1;PST;LGSPEC1
tumber tumberai V;IND;SG;1;FUT;LGSPEC1
hebergier hebergeasses V;IPFV;SBJV;SG;2;PST
enyvrer enyvreroyent V;COND;PL;3;LGSPEC2
tyrer tyre V;IMP;SG;2
allaicter allaictons V;SBJV;PL;1;PRS
ieuner ieunerons V;IND;PL;1;FUT
minorer minore V;IMP;SG;2
tabuster tabusteriez V;COND;PL;2;LGSPEC1
enhorter enhorte V;IMP;SG;2
racompter racompte V;IMP;SG;2
empenser empense V;IND;SG;1;PRS
advancer advançois V;IPFV;IND;SG;1;PST;LGSPEC1
tabuster tabusteroys V;COND;SG;2;LGSPEC2
ruyner ruynyez V;IPFV;IND;PL;2;PST;LGSPEC2
gangler gangleras V;IND;SG;2;FUT
praeparer praepareroys V;COND;SG;1;LGSPEC2
ronfler ronfler V;NFIN
descouchier descouchieryons V;COND;PL;1;LGSPEC2
abayer abayeroyt V;COND;SG;3;LGSPEC2
laisser laisseriez V;COND;PL;2;LGSPEC1
desinfecter desinfecteroient V;COND;PL;3;LGSPEC1
nommer nommois V;IPFV;IND;SG;1;PST;LGSPEC1
pisser pisserez V;IND;PL;2;FUT
tourmenter tourmentiez V;IPFV;IND;PL;2;PST;LGSPEC1
estrangler estrangla V;PFV;IND;SG;3;PST
desnouer desnoueroyent V;COND;PL;3;LGSPEC2
estoffer estofferiez V;COND;PL;2;LGSPEC1
separer separeroit V;COND;SG;3;LGSPEC1
advancer advanças V;PFV;IND;SG;2;PST
prester prestasses V;IPFV;SBJV;SG;2;PST
abayer abaye V;SBJV;SG;1;PRS
mercyer mercyas V;PFV;IND;SG;2;PST
aler ala V;PFV;IND;SG;3;PST
mercyer mercyez V;IMP;PL;2
ymaginer ymaginassiez V;IPFV;SBJV;PL;2;PST
peser peserois V;COND;SG;2;LGSPEC1
habiter habiteroit V;COND;SG;3;LGSPEC1
mulcter mulctasse V;IPFV;SBJV;SG;1;PST
visiter visitent V;SBJV;PL;3;PRS
tirer tirast V;IPFV;SBJV;SG;3;PST
desrouter desroutastes V;PFV;IND;PL;2;PST
practicquer practicqueroys V;COND;SG;1;LGSPEC2
r'asseurer r'asseureryez V;COND;PL;2;LGSPEC2
estimer estimer V;NFIN
ietter ietteray V;IND;SG;1;FUT;LGSPEC2
fortiffier fortiffiez V;IMP;PL;2
alterer altererois V;COND;SG;1;LGSPEC1
deschevaucher deschevauchent V;IND;PL;3;PRS
essilier essiles V;SBJV;SG;2;PRS
cabasser cabasseroit V;COND;SG;3;LGSPEC1
diviner divinent V;IND;PL;3;PRS
excuser excusons V;IND;PL;1;PRS
estudier estudiera V;IND;SG;3;FUT
regretter regrettassiez V;IPFV;SBJV;PL;2;PST
hostoier hostoiassiez V;IPFV;SBJV;PL;2;PST
escumer escumerez V;IND;PL;2;FUT
escouiller escouillas V;PFV;IND;SG;2;PST
contrepoiser contrepoisez V;IMP;PL;2
resigner resigner V;NFIN
ymaginer ymagine V;IMP;SG;2
destabler destablerois V;COND;SG;2;LGSPEC1
aguyser aguysassiez V;IPFV;SBJV;PL;2;PST
cauterizer cauterizeriez V;COND;PL;2;LGSPEC1
nettoyer nettoyeroys V;COND;SG;1;LGSPEC2
accompaigner accompaigneroyent V;COND;PL;3;LGSPEC2
penser penserai V;IND;SG;1;FUT;LGSPEC1
heurter heurtiez V;IPFV;IND;PL;2;PST;LGSPEC1
auser ausez V;IND;PL;2;PRS
pecher pechyons V;IPFV;IND;PL;1;PST;LGSPEC2
tomber tomberons V;IND;PL;1;FUT
huer huerez V;IND;PL;2;FUT
entituler entitulerois V;COND;SG;1;LGSPEC1
atourner atournoys V;IPFV;IND;SG;1;PST;LGSPEC2
charger chargeasmes V;PFV;IND;PL;1;PST
navrer navrast V;IPFV;SBJV;SG;3;PST
blesser blessons V;IND;PL;1;PRS
entredesirer nous entredesirassions V;IPFV;SBJV;PL;1;PST
mercyer mercya V;PFV;IND;SG;3;PST
adviser adviseroyt V;COND;SG;3;LGSPEC2
songer songeroyent V;COND;PL;3;LGSPEC2
seiourner seiournons V;SBJV;PL;1;PRS
enfelonner enfelonneray V;IND;SG;1;FUT;LGSPEC2
passer passeroyent V;COND;PL;3;LGSPEC2
aboscher aboschasmes V;PFV;IND;PL;1;PST
descouchier descouchois V;IPFV;IND;SG;1;PST;LGSPEC1
demander demanderent V;PFV;IND;PL;3;PST
espier espias V;PFV;IND;SG;2;PST
trousser troussyez V;IPFV;IND;PL;2;PST;LGSPEC2
enyvrer enyvroys V;IPFV;IND;SG;2;PST;LGSPEC2
payer paye V;IND;SG;1;PRS
recommander recommandoys V;IPFV;IND;SG;2;PST;LGSPEC2
rejecter rejecterez V;IND;PL;2;FUT
moustrer moustrions V;IPFV;IND;PL;1;PST;LGSPEC1
enterrer enterreroient V;COND;PL;3;LGSPEC1
exstirper exstirperoit V;COND;SG;3;LGSPEC1
iurer iureroys V;COND;SG;1;LGSPEC2
accepter accepterons V;IND;PL;1;FUT
esguiser esguiseriez V;COND;PL;2;LGSPEC1
entrefraper vous entrefrapez V;SBJV;PL;2;PRS
enconvenencier enconvenencierons V;IND;PL;1;FUT
reiecter reiecterois V;COND;SG;2;LGSPEC1
croniquier croniquioyt V;IPFV;IND;SG;3;PST;LGSPEC2
engroisser engroisseriez V;COND;PL;2;LGSPEC1
suffocquer suffocqueryez V;COND;PL;2;LGSPEC2
deffier deffioys V;IPFV;IND;SG;1;PST;LGSPEC2
travailler travaillasse V;IPFV;SBJV;SG;1;PST
haittier haittiera V;IND;SG;3;FUT
edifier edifias V;PFV;IND;SG;2;PST
reculler reculloit V;IPFV;IND;SG;3;PST;LGSPEC1
practicquer practicqueryons V;COND;PL;1;LGSPEC2
demourer demoureroyent V;COND;PL;3;LGSPEC2
remercyer remercyeroyt V;COND;SG;3;LGSPEC2
abayer abayoys V;IPFV;IND;SG;1;PST;LGSPEC2
monter monta V;PFV;IND;SG;1;PST
suffocquer suffocquoys V;IPFV;IND;SG;1;PST;LGSPEC2
possesser possesse V;SBJV;SG;1;PRS
effronter effrontois V;IPFV;IND;SG;2;PST;LGSPEC1
resver resvastes V;PFV;IND;PL;2;PST
fortiffier fortiffioys V;IPFV;IND;SG;2;PST;LGSPEC2
buchier buchyons V;IPFV;IND;PL;1;PST;LGSPEC2
atourner atourneroyt V;COND;SG;3;LGSPEC2
esguarer esguarons V;IND;PL;1;PRS
deschevaucher deschevauche V;SBJV;SG;3;PRS
desfaire desfaisions V;IPFV;IND;PL;1;PST
escrier escriasses V;IPFV;SBJV;SG;2;PST
reserver reserva V;PFV;IND;SG;3;PST
baptiser baptiserez V;IND;PL;2;FUT
lescher leschasses V;IPFV;SBJV;SG;2;PST
houssepillier houssepillieriez V;COND;PL;2;LGSPEC1
hostoier hostoie V;IND;SG;3;PRS
retourner retourneras V;IND;SG;2;FUT
saluer saluoyt V;IPFV;IND;SG;3;PST;LGSPEC2
proffiter proffiterent V;PFV;IND;PL;3;PST
flechir fleschissoyent V;IPFV;IND;PL;3;PST;LGSPEC2
enchasser enchasse V;IND;SG;3;PRS
cesser cesserois V;COND;SG;2;LGSPEC1
renger renges V;SBJV;SG;2;PRS
fomenter fomentera V;IND;SG;3;FUT
intoxiquer intoxique V;IND;SG;1;PRS
saulter saultast V;IPFV;SBJV;SG;3;PST
espouser espouseryons V;COND;PL;1;LGSPEC2
rebarber rebarbois V;IPFV;IND;SG;1;PST;LGSPEC1
desrisier desrisa V;PFV;IND;SG;1;PST
trancher trancheroit V;COND;SG;3;LGSPEC1
estinceller estincellera V;IND;SG;3;FUT
desnouer desnoue V;SBJV;SG;1;PRS
guerpir guerpissez V;IMP;PL;2
oublyer oublyeray V;IND;SG;1;FUT;LGSPEC2
haittier haittieryons V;COND;PL;1;LGSPEC2
remerquer remerqua V;PFV;IND;SG;1;PST
renfler renflerois V;COND;SG;2;LGSPEC1
evaporer evaporast V;IPFV;SBJV;SG;3;PST
haster hastiez V;IPFV;IND;PL;2;PST;LGSPEC1
singler singleryons V;COND;PL;1;LGSPEC2
revencher revenchastes V;PFV;IND;PL;2;PST
escryer escrye V;IND;SG;1;PRS
esguiser esguiserent V;PFV;IND;PL;3;PST
entrehurter s'entrehurtoient V;IPFV;IND;PL;3;PST;LGSPEC1
superseder supersede V;IMP;SG;2
iouer iouerions V;COND;PL;1;LGSPEC1
guarder guardoit V;IPFV;IND;SG;3;PST;LGSPEC1
enseignier enseignons V;SBJV;PL;1;PRS
quitter quitte V;IND;SG;1;PRS
fluir fluirions V;COND;PL;1
estouffer estoufferoit V;COND;SG;3;LGSPEC1
entredesirer nousentredesirions V;IPFV;IND;PL;1;PST;LGSPEC1
enhorter enhorterent V;PFV;IND;PL;3;PST
frapper frappois V;IPFV;IND;SG;2;PST;LGSPEC1
iouer ioua V;PFV;IND;SG;1;PST
arriver arrives V;IND;SG;2;PRS
estrangler estrangleroys V;COND;SG;1;LGSPEC2
desgorger desgorgera V;IND;SG;3;FUT
penser pensasmes V;PFV;IND;PL;1;PST
dancer dançast V;IPFV;SBJV;SG;3;PST
avoyr aurait V;COND;SG;3
dampner dampnyons V;IPFV;IND;PL;1;PST;LGSPEC2
arrester arrestions V;IPFV;IND;PL;1;PST;LGSPEC1
compter compterois V;COND;SG;2;LGSPEC1
peser peser V;NFIN
iurer iure V;IND;SG;1;PRS
laisser laissastes V;PFV;IND;PL;2;PST
seiourner seiournassions V;IPFV;SBJV;PL;1;PST
meriter merites V;IND;SG;2;PRS
offencer offenciez V;IPFV;IND;PL;2;PST;LGSPEC1
encommencer encommences V;SBJV;SG;2;PRS
retourner retournois V;IPFV;IND;SG;1;PST;LGSPEC1
picquer picqueroyent V;COND;PL;3;LGSPEC2
estonner estonnyez V;IPFV;IND;PL;2;PST;LGSPEC2
fiancer fianceray V;IND;SG;1;FUT;LGSPEC2
destabler destablions V;IPFV;IND;PL;1;PST;LGSPEC1
saluer salueryez V;COND;PL;2;LGSPEC2
assieger assiegyez V;IPFV;IND;PL;2;PST;LGSPEC2
espoventer espoventeryez V;COND;PL;2;LGSPEC2
tyrer tyroient V;IPFV;IND;PL;3;PST;LGSPEC1
deschainer deschainons V;SBJV;PL;1;PRS
laisser laissent V;IND;PL;3;PRS
navrer navre V;IMP;SG;2
ieuner ieunoit V;IPFV;IND;SG;3;PST;LGSPEC1
chanter chante V;SBJV;SG;1;PRS
ymaginer ymaginoys V;IPFV;IND;SG;1;PST;LGSPEC2
deslacer delaciez V;IPFV;IND;PL;2;PST;LGSPEC1
affamer affame V;SBJV;SG;3;PRS
vengier vengierons V;IND;PL;1;FUT
considerer considereryez V;COND;PL;2;LGSPEC2
detranchier detranchasse V;IPFV;SBJV;SG;1;PST
travailler travailles V;SBJV;SG;2;PRS
porter portons V;SBJV;PL;1;PRS
engroisser engroisse V;IND;SG;3;PRS
aler irois V;COND;SG;1;LGSPEC1
baptizer baptiza V;PFV;IND;SG;3;PST
esmayer esmaye V;IND;SG;3;PRS
emboucher embouchoit V;IPFV;IND;SG;3;PST;LGSPEC1
desloger desloger V;NFIN
inviter invite V;SBJV;SG;3;PRS
oublyer oublyent V;SBJV;PL;3;PRS
mucer mucez V;IND;PL;2;PRS
esmayer esmayerois V;COND;SG;2;LGSPEC1
renouveller renouvelliez V;IPFV;IND;PL;2;PST;LGSPEC1
demander demandoys V;IPFV;IND;SG;1;PST;LGSPEC2
redoubter redoubtastes V;PFV;IND;PL;2;PST
eschauffer eschauffes V;SBJV;SG;2;PRS
desbarater desbarateray V;IND;SG;1;FUT;LGSPEC2
remerquer remerquons V;IND;PL;1;PRS
iolyer iolye V;IMP;SG;2
representer representoit V;IPFV;IND;SG;3;PST;LGSPEC1
gouster gouste V;SBJV;SG;3;PRS
pasturer pasturast V;IPFV;SBJV;SG;3;PST
entrempescher entrempescheroyent V;COND;PL;3;LGSPEC2
eschauffer eschaufferas V;IND;SG;2;FUT
rotter rottoient V;IPFV;IND;PL;3;PST;LGSPEC1
effreer effrees V;IND;SG;2;PRS
cauterizer cauterizasse V;IPFV;SBJV;SG;1;PST
baiser baise V;SBJV;SG;1;PRS
desploier desploieroys V;COND;SG;1;LGSPEC2
escapper escappassiez V;IPFV;SBJV;PL;2;PST
enseignier enseignerois V;COND;SG;1;LGSPEC1
tromper trompe V;IND;SG;3;PRS
transporter transporte V;SBJV;SG;1;PRS
tremper tremperent V;PFV;IND;PL;3;PST
asseurer asseurerez V;IND;PL;2;FUT
detranchier detranchast V;IPFV;SBJV;SG;3;PST
desprisonner desprisonnoys V;IPFV;IND;SG;2;PST;LGSPEC2
exstirper exstirperiez V;COND;PL;2;LGSPEC1
bransler bransleront V;IND;PL;3;FUT
accepter accepte V;IND;SG;1;PRS
desadvouer desadvoue V;IMP;SG;2
desnouer desnoueriez V;COND;PL;2;LGSPEC1
detranchier detranchions V;IND;PL;1;PRS
cauterizer cauterizent V;IND;PL;3;PRS
faucer fauçois V;IPFV;IND;SG;1;PST;LGSPEC1
essayer essayerons V;IND;PL;1;FUT
descourager descourageras V;IND;SG;2;FUT
apuyer apuyez V;SBJV;PL;2;PRS
esperer espera V;PFV;IND;SG;1;PST
coniurer coniuryons V;IPFV;IND;PL;1;PST;LGSPEC2
desheriter desheritois V;IPFV;IND;SG;1;PST;LGSPEC1
estinceller estincellyons V;IPFV;IND;PL;1;PST;LGSPEC2
foetter foette V;IMP;SG;2
essilier essiles V;IND;SG;2;PRS
approuchier approuchiez V;IMP;PL;2
melancholier melancholierois V;COND;SG;1;LGSPEC1
escapper escapperois V;COND;SG;1;LGSPEC1
bayser baysoys V;IPFV;IND;SG;1;PST;LGSPEC2
courrouchier courrouche V;IMP;SG;2
resumer resumassions V;IPFV;SBJV;PL;1;PST
aloser alosyez V;IPFV;IND;PL;2;PST;LGSPEC2
pourchasser pourchassons V;SBJV;PL;1;PRS
desmonter desmontoit V;IPFV;IND;SG;3;PST;LGSPEC1
desfaire desferoys V;COND;SG;2;LGSPEC2
avoyr ay V;IND;SG;1;PRS;LGSPEC2
iurer iurasse V;IPFV;SBJV;SG;1;PST
temprer tempreroyent V;COND;PL;3;LGSPEC2
assieger assiegeas V;PFV;IND;SG;2;PST
desadvouer desadvouons V;IND;PL;1;PRS
honnourer honnourassent V;IPFV;SBJV;PL;3;PST
veigler veigloyt V;IPFV;IND;SG;3;PST;LGSPEC2
prattiquer prattiquerois V;COND;SG;1;LGSPEC1
pasturer pasturez V;IND;PL;2;PRS
regretter regrettent V;IND;PL;3;PRS
ieuner ieuneryons V;COND;PL;1;LGSPEC2
mouscher mouscheras V;IND;SG;2;FUT
grapper grappoyt V;IPFV;IND;SG;3;PST;LGSPEC2
pourpenser pourpenserez V;IND;PL;2;FUT
proclamer proclamasses V;IPFV;SBJV;SG;2;PST
celer celoys V;IPFV;IND;SG;2;PST;LGSPEC2
regratier regratiassent V;IPFV;SBJV;PL;3;PST
enterrer enterrez V;IMP;PL;2
escorner escorneroient V;COND;PL;3;LGSPEC1
pourmener pourmenois V;IPFV;IND;SG;1;PST;LGSPEC1
mescler mescler V;NFIN
despencer despenciez V;IPFV;IND;PL;2;PST;LGSPEC1
aler yroie V;IND;SG;1;FUT;LGSPEC2
provocquer provocqueray V;IND;SG;1;FUT;LGSPEC2
faire faisoys V;IPFV;IND;SG;2;PST;LGSPEC2
ployer ployeront V;IND;PL;3;FUT
inquieter inquietassent V;IPFV;SBJV;PL;3;PST
hebergier hebergeoys V;IPFV;IND;SG;2;PST;LGSPEC2
enchargier enchargiera V;IND;SG;3;FUT
honnourer honnourions V;IPFV;IND;PL;1;PST;LGSPEC1
desieuner desieuneray V;IND;SG;1;FUT;LGSPEC2
recommander recommanderyez V;COND;PL;2;LGSPEC2
abayer abayez V;IND;PL;2;PRS
aracher arachez V;IMP;PL;2
alonger alongeras V;IND;SG;2;FUT
abboyer abboyoys V;IPFV;IND;SG;2;PST;LGSPEC2
tournoyer tournoyent V;IND;PL;3;PRS
occuper occupyez V;IPFV;IND;PL;2;PST;LGSPEC2
descourager descouragez V;SBJV;PL;2;PRS
tesmoigner tesmoignerions V;COND;PL;1;LGSPEC1
tremper tremperoient V;COND;PL;3;LGSPEC1
ordonner ordonne V;SBJV;SG;1;PRS
possesser possesseroyent V;COND;PL;3;LGSPEC2
lurrer lurreroyt V;COND;SG;3;LGSPEC2
tuer tuastes V;PFV;IND;PL;2;PST
excuser excuserez V;IND;PL;2;FUT
accepter accepteroit V;COND;SG;3;LGSPEC1
entrehurter vous entrehurtassiez V;IPFV;SBJV;PL;2;PST
seeller seelleryez V;COND;PL;2;LGSPEC2
desbarater desbaratent V;IND;PL;3;PRS
esparpiller esparpilleray V;IND;SG;1;FUT;LGSPEC2
esvertuer esvertuiez V;IPFV;IND;PL;2;PST;LGSPEC1
grapper grapperois V;COND;SG;2;LGSPEC1
soingner soingneront V;IND;PL;3;FUT
expeller expellons V;IMP;PL;1
ieuner ieuneroys V;COND;SG;2;LGSPEC2
employer employeroient V;COND;PL;3;LGSPEC1
tourmenter tourmentons V;IMP;PL;1
racointer racointons V;IND;PL;1;PRS
mercyer mercyerent V;PFV;IND;PL;3;PST
explicquer explicquerons V;IND;PL;1;FUT
remonstrer remonstrerois V;COND;SG;2;LGSPEC1
deschirer deschiroys V;IPFV;IND;SG;2;PST;LGSPEC2
escarter escarteroit V;COND;SG;3;LGSPEC1
regorger regorgeoient V;IPFV;IND;PL;3;PST;LGSPEC1
iouer iouions V;IPFV;IND;PL;1;PST;LGSPEC1
fomenter fomentions V;IPFV;IND;PL;1;PST;LGSPEC1
peser peseroit V;COND;SG;3;LGSPEC1
fouragier fourageoyent V;IPFV;IND;PL;3;PST;LGSPEC2
aerer aereriez V;COND;PL;2;LGSPEC1
escumer escumiez V;IPFV;IND;PL;2;PST;LGSPEC1
ymaginer ymaginons V;SBJV;PL;1;PRS
gaber gaberoys V;COND;SG;1;LGSPEC2
vuider vuideroys V;COND;SG;1;LGSPEC2
haittier haitte V;IND;SG;3;PRS
descouchier descouchieroient V;COND;PL;3;LGSPEC1
approuchier approuchieroit V;COND;SG;3;LGSPEC1
ordonner ordonne V;IND;SG;1;PRS
manouvrer manouvreriez V;COND;PL;2;LGSPEC1
atacher atachons V;IND;PL;1;PRS
esclairer esclaireras V;IND;SG;2;FUT
acquiter acquiterez V;IND;PL;2;FUT
perser perseryez V;COND;PL;2;LGSPEC2
jecter jecta V;PFV;IND;SG;3;PST
desbarater desbarate V;IMP;SG;2
approuchier approuchyez V;IPFV;IND;PL;2;PST;LGSPEC2
pourforcer pourforceroient V;COND;PL;3;LGSPEC1
tromper tromperoient V;COND;PL;3;LGSPEC1
lyer lyions V;IPFV;IND;PL;1;PST;LGSPEC1
despuceller despucelleroys V;COND;SG;1;LGSPEC2
faire fistes V;PFV;IND;PL;2;PST
ymaginer ymaginez V;IMP;PL;2
preferer preferiez V;IPFV;IND;PL;2;PST;LGSPEC1
enconcher enconcheras V;IND;SG;2;FUT
regorger regorgerent V;PFV;IND;PL;3;PST
mercyer mercyent V;SBJV;PL;3;PRS
esmerveillier esmerveilles V;IND;SG;2;PRS
lever levois V;IPFV;IND;SG;2;PST;LGSPEC1
ruyner ruynes V;IND;SG;2;PRS
avaller avalloys V;IPFV;IND;SG;2;PST;LGSPEC2
explorer explorasse V;IPFV;SBJV;SG;1;PST
superseder supersederoient V;COND;PL;3;LGSPEC1
engroisser engroisse V;IMP;SG;2
nouer nouyons V;IPFV;IND;PL;1;PST;LGSPEC2
asseurer asseura V;PFV;IND;SG;1;PST
geller gelleroyent V;COND;PL;3;LGSPEC2
macter mactons V;IND;PL;1;PRS
aterminer aterminyons V;IPFV;IND;PL;1;PST;LGSPEC2
tabuster tabusterois V;COND;SG;1;LGSPEC1
possesser possessoient V;IPFV;IND;PL;3;PST;LGSPEC1
veiller veillerez V;IND;PL;2;FUT
desfaire desferoye V;IND;SG;1;FUT;LGSPEC2
esperonner esperonnasmes V;PFV;IND;PL;1;PST
ralier ralies V;SBJV;SG;2;PRS
estre soyent V;SBJV;PL;3;PRS;LGSPEC1
regratier regratieroys V;COND;SG;1;LGSPEC2
encharger enchargeront V;IND;PL;3;FUT
eslancer eslançasse V;IPFV;SBJV;SG;1;PST
retourner retournast V;IPFV;SBJV;SG;3;PST
blesser blessois V;IPFV;IND;SG;2;PST;LGSPEC1
haittier haittent V;SBJV;PL;3;PRS
excuser excusions V;IPFV;IND;PL;1;PST;LGSPEC1
temprer temprasse V;IPFV;SBJV;SG;1;PST
tumber tumboys V;IPFV;IND;SG;2;PST;LGSPEC2
cesser cessassent V;IPFV;SBJV;PL;3;PST
desnouer desnouerai V;IND;SG;1;FUT;LGSPEC1
gangler ganglerez V;IND;PL;2;FUT
empieger empiegeront V;IND;PL;3;FUT
esloigner esloignerons V;IND;PL;1;FUT
espouser espousa V;PFV;IND;SG;3;PST
mucer muçons V;IPFV;IND;PL;1;PST;LGSPEC2
songer songions V;IPFV;IND;PL;1;PST;LGSPEC1
racointer racointe V;IMP;SG;2
ayder aydes V;SBJV;SG;2;PRS
quereler querelez V;SBJV;PL;2;PRS
preceder precedasse V;IPFV;SBJV;SG;1;PST
confermer confermer V;NFIN
renouveller renouvellerois V;COND;SG;1;LGSPEC1
vuider vuidasses V;IPFV;SBJV;SG;2;PST
cuyder cuyderoyent V;COND;PL;3;LGSPEC2
minorer minoras V;PFV;IND;SG;2;PST
praesider praesidez V;IND;PL;2;PRS
huer hues V;SBJV;SG;2;PRS
apuyer apuyassiez V;IPFV;SBJV;PL;2;PST
desinfecter desinfecte V;SBJV;SG;3;PRS
brusler bruslast V;IPFV;SBJV;SG;3;PST
condescendre condescendent V;SBJV;PL;3;PRS
entrefrapper nousentrefrapperions V;COND;PL;1;LGSPEC1
estinceller estincellasses V;IPFV;SBJV;SG;2;PST
manouvrer manouvrerent V;PFV;IND;PL;3;PST
adviser adviserois V;COND;SG;1;LGSPEC1
mocquer mocquyez V;IPFV;IND;PL;2;PST;LGSPEC2
saulver saulverai V;IND;SG;1;FUT;LGSPEC1
superseder supersederez V;IND;PL;2;FUT
serainer serainassiez V;IPFV;SBJV;PL;2;PST
confermer confermasses V;IPFV;SBJV;SG;2;PST
devourer devouroyt V;IPFV;IND;SG;3;PST;LGSPEC2
jecter jectoient V;IPFV;IND;PL;3;PST;LGSPEC1
desprisonner desprisonnoyt V;IPFV;IND;SG;3;PST;LGSPEC2
escumer escumera V;IND;SG;3;FUT
desister desisteriez V;COND;PL;2;LGSPEC1
pausmer pausmerois V;COND;SG;1;LGSPEC1
pecher pecherent V;PFV;IND;PL;3;PST
effreer effreeroys V;COND;SG;1;LGSPEC2
suffocquer suffocqueroyt V;COND;SG;3;LGSPEC2
redrechier redrechois V;IPFV;IND;SG;1;PST;LGSPEC1
mercyer mercyerois V;COND;SG;1;LGSPEC1
estiquier estiquiez V;IMP;PL;2
esclairer esclairerois V;COND;SG;2;LGSPEC1
considerer considerer V;NFIN
esventer esventons V;SBJV;PL;1;PRS
pourpenser pourpense V;SBJV;SG;1;PRS
estonner estonnerai V;IND;SG;1;FUT;LGSPEC1
logier logierois V;COND;SG;2;LGSPEC1
soupper souppez V;SBJV;PL;2;PRS
retyrer retyra V;PFV;IND;SG;1;PST
tourner tourne V;SBJV;SG;3;PRS
commencer commencez V;SBJV;PL;2;PRS
abayer abayeras V;IND;SG;2;FUT
mettre mettroie V;IND;SG;1;FUT;LGSPEC1
pourforcer pourforçassions V;IPFV;SBJV;PL;1;PST
engroisser engroissent V;IND;PL;3;PRS
edifier edifierois V;COND;SG;2;LGSPEC1
mocquer mocquent V;SBJV;PL;3;PRS
raporter raporta V;PFV;IND;SG;1;PST
entredemander entredemanderoyent V;COND;PL;3;LGSPEC2
abiurer abiuroys V;IPFV;IND;SG;1;PST;LGSPEC2
effectuer effectuerois V;COND;SG;2;LGSPEC1
arrengier arrenge V;SBJV;SG;3;PRS
esternuer esternueroit V;COND;SG;3;LGSPEC1
descourager descourageoys V;IPFV;IND;SG;2;PST;LGSPEC2
esternuer esternues V;IND;SG;2;PRS
aler aille V;SBJV;SG;1;PRS
getter getteroys V;COND;SG;1;LGSPEC2
gaster gaste V;IMP;SG;2
couster cousta V;PFV;IND;SG;3;PST
enferrer enferrast V;IPFV;SBJV;SG;3;PST
desmonter desmontoys V;IPFV;IND;SG;1;PST;LGSPEC2
verifier verifierons V;IND;PL;1;FUT
enterrer enterroyt V;IPFV;IND;SG;3;PST;LGSPEC2
pourchasser pourchasserions V;COND;PL;1;LGSPEC1
rotter rottastes V;PFV;IND;PL;2;PST
loger logeas V;PFV;IND;SG;2;PST
tyrer tyrassent V;IPFV;SBJV;PL;3;PST
enpoisonner enpoisonnasse V;IPFV;SBJV;SG;1;PST
pryer pryerent V;PFV;IND;PL;3;PST
lurrer lurryons V;IPFV;IND;PL;1;PST;LGSPEC2
estoffer estoffer V;NFIN
esguarer esguara V;PFV;IND;SG;1;PST
mehaignier mehaignoyent V;IPFV;IND;PL;3;PST;LGSPEC2
baiser baiserons V;IND;PL;1;FUT
excuser excusasmes V;PFV;IND;PL;1;PST
fascher faschoit V;IPFV;IND;SG;3;PST;LGSPEC1
tourmenter tourmenter V;NFIN
demourer demourez V;SBJV;PL;2;PRS
iolyer iolyerent V;PFV;IND;PL;3;PST
desnouer desnoues V;SBJV;SG;2;PRS
garder garde V;IMP;SG;2
geller gellerois V;COND;SG;1;LGSPEC1
esvanter esvantez V;IMP;PL;2
desnouer desnouerez V;IND;PL;2;FUT
preferer prefereray V;IND;SG;1;FUT;LGSPEC2
lyer lyerons V;IND;PL;1;FUT
depescher depeschasse V;IPFV;SBJV;SG;1;PST
derver derve V;SBJV;SG;3;PRS
moustrer moustreroyt V;COND;SG;3;LGSPEC2
estudier estudiois V;IPFV;IND;SG;1;PST;LGSPEC1
vuider vuident V;IND;PL;3;PRS
escapper escappez V;IMP;PL;2
trousser trousses V;SBJV;SG;2;PRS
piller pillez V;IMP;PL;2
cabasser cabassoys V;IPFV;IND;SG;2;PST;LGSPEC2
approuvender approuvende V;IMP;SG;2
houssepillier houssepillieroit V;COND;SG;3;LGSPEC1
robber robbe V;IND;SG;3;PRS
oster osterions V;COND;PL;1;LGSPEC1
baptiser baptisyez V;IPFV;IND;PL;2;PST;LGSPEC2
gouster goustasses V;IPFV;SBJV;SG;2;PST
operer operastes V;PFV;IND;PL;2;PST
retirer retiroys V;IPFV;IND;SG;2;PST;LGSPEC2
blesser blesseriez V;COND;PL;2;LGSPEC1
hucher huche V;IND;SG;1;PRS
regretter regrettyons V;IPFV;IND;PL;1;PST;LGSPEC2
deffier deffierent V;PFV;IND;PL;3;PST
deifier deifieroient V;COND;PL;3;LGSPEC1
ralier ralieroys V;COND;SG;2;LGSPEC2
destacher destacheroys V;COND;SG;1;LGSPEC2
fortiffier fortiffieroyent V;COND;PL;3;LGSPEC2
esloigner esloignez V;SBJV;PL;2;PRS
bobeliner bobelinyons V;IPFV;IND;PL;1;PST;LGSPEC2
dancer dancyez V;IPFV;IND;PL;2;PST;LGSPEC2
estacher estachez V;IND;PL;2;PRS
evaporer evaporerai V;IND;SG;1;FUT;LGSPEC1
manger mange V;SBJV;SG;3;PRS
descouchier descouchierions V;COND;PL;1;LGSPEC1
verifier verifieroit V;COND;SG;3;LGSPEC1
mensongier mensongeast V;IPFV;SBJV;SG;3;PST
ottroyer ottroye V;IND;SG;1;PRS
peser pese V;SBJV;SG;3;PRS
esprouver esprouvons V;SBJV;PL;1;PRS
voller volleras V;IND;SG;2;FUT
advouer advouasmes V;PFV;IND;PL;1;PST
accompaigner accompaignyons V;IPFV;IND;PL;1;PST;LGSPEC2
gaimenter gaimentastes V;PFV;IND;PL;2;PST
deslyer deslyeroys V;COND;SG;1;LGSPEC2
fromenter fromentons V;IND;PL;1;PRS
bancqueter bancqueteroit V;COND;SG;3;LGSPEC1
fouller foullois V;IPFV;IND;SG;1;PST;LGSPEC1
commencer commençasmes V;PFV;IND;PL;1;PST
estudier estudioys V;IPFV;IND;SG;1;PST;LGSPEC2
trancher tranches V;IND;SG;2;PRS
detranchier detranchasses V;IPFV;SBJV;SG;2;PST
ottroyer ottroyasmes V;PFV;IND;PL;1;PST
recuperer recuperasses V;IPFV;SBJV;SG;2;PST
escarter escarte V;SBJV;SG;3;PRS
tournoyer tournoyasse V;IPFV;SBJV;SG;1;PST
veiller veillassiez V;IPFV;SBJV;PL;2;PST
accomplir accomplissons V;IMP;PL;1
offencer offencerois V;COND;SG;2;LGSPEC1
enseignier enseigneroyent V;COND;PL;3;LGSPEC2
separer separer V;NFIN
viser viserons V;IND;PL;1;FUT
sceller scelleroys V;COND;SG;2;LGSPEC2
interpreter interpreteryez V;COND;PL;2;LGSPEC2
penser penserions V;COND;PL;1;LGSPEC1
tomber tombe V;IND;SG;3;PRS
preter pretasmes V;PFV;IND;PL;1;PST
deshonnourer deshonnourera V;IND;SG;3;FUT
affier affierai V;IND;SG;1;FUT;LGSPEC1
louer louerois V;COND;SG;1;LGSPEC1
faire ferions V;COND;PL;1
combiner combinerai V;IND;SG;1;FUT;LGSPEC1
toquer toquiez V;IPFV;IND;PL;2;PST;LGSPEC1
charger charges V;SBJV;SG;2;PRS
escryer escryerions V;COND;PL;1;LGSPEC1
charger chargent V;SBJV;PL;3;PRS
bancqueter bancqueteroient V;COND;PL;3;LGSPEC1
enconcher enconchons V;IMP;PL;1
serainer serainer V;NFIN
despuceller despucella V;PFV;IND;SG;3;PST
renommer renommyons V;IPFV;IND;PL;1;PST;LGSPEC2
moustrer moustrent V;SBJV;PL;3;PRS
sembler semblera V;IND;SG;3;FUT
fluir fluissiez V;IPFV;IND;PL;2;PST
navrer navrerois V;COND;SG;2;LGSPEC1
accompaigner accompaigneryez V;COND;PL;2;LGSPEC2
compter compteroys V;COND;SG;1;LGSPEC2
desrober desroberoys V;COND;SG;2;LGSPEC2
soupper souppoit V;IPFV;IND;SG;3;PST;LGSPEC1
amer ame V;SBJV;SG;3;PRS
translater translate V;IND;SG;1;PRS
remonstrer remonstreroient V;COND;PL;3;LGSPEC1
oster ostyons V;IPFV;IND;PL;1;PST;LGSPEC2
ozer ozassiez V;IPFV;SBJV;PL;2;PST
espouser espousyez V;IPFV;IND;PL;2;PST;LGSPEC2
fomenter fomenteront V;IND;PL;3;FUT
entredemander s'entredemandoient V;IPFV;IND;PL;3;PST;LGSPEC1
esgarer esgareryons V;COND;PL;1;LGSPEC2
menasser menasseroit V;COND;SG;3;LGSPEC1
faucer fauciez V;IPFV;IND;PL;2;PST;LGSPEC1
rouiller rouilleroys V;COND;SG;1;LGSPEC2
regratier regratient V;IND;PL;3;PRS
desrisier desrise V;IMP;SG;2
faire fit V;PFV;IND;SG;3;PST
lever lever V;NFIN
garder gardassiez V;IPFV;SBJV;PL;2;PST
entredonner nous entredonnons V;SBJV;PL;1;PRS
getter gettasse V;IPFV;SBJV;SG;1;PST
cercher cerchassions V;IPFV;SBJV;PL;1;PST
enfelonner enfelonnasmes V;PFV;IND;PL;1;PST
empirer empirerois V;COND;SG;2;LGSPEC1
celebrer celebrez V;SBJV;PL;2;PRS
invader invadez V;IND;PL;2;PRS
esmayer esmaye V;IND;SG;1;PRS
depescher depescher V;NFIN
empescher empesche V;SBJV;SG;1;PRS
pocher pochast V;IPFV;SBJV;SG;3;PST
abiurer abiureriez V;COND;PL;2;LGSPEC1
geller gelles V;IND;SG;2;PRS
noter noteroyt V;COND;SG;3;LGSPEC2
respirer respirions V;IPFV;IND;PL;1;PST;LGSPEC1
faucer fauceroys V;COND;SG;1;LGSPEC2
subiecter subiecterez V;IND;PL;2;FUT
eschever escheves V;IND;SG;2;PRS
achever acheverez V;IND;PL;2;FUT
traveillier traveillassions V;IPFV;SBJV;PL;1;PST
porter porteront V;IND;PL;3;FUT
lever levast V;IPFV;SBJV;SG;3;PST
leicher leicheroient V;COND;PL;3;LGSPEC1
ietter iettons V;SBJV;PL;1;PRS
bransler bransla V;PFV;IND;SG;3;PST
accuser accusent V;SBJV;PL;3;PRS
escryer escryassent V;IPFV;SBJV;PL;3;PST
enterrer enterreront V;IND;PL;3;FUT
heurter heurte V;IND;SG;1;PRS
flatter flattassiez V;IPFV;SBJV;PL;2;PST
aerer aerent V;SBJV;PL;3;PRS
logier logeois V;IPFV;IND;SG;1;PST;LGSPEC1
estonner estonne V;IMP;SG;2
proclamer proclameroys V;COND;SG;1;LGSPEC2
mascher mascherez V;IND;PL;2;FUT
essilier essiloys V;IPFV;IND;SG;1;PST;LGSPEC2
entreruyner vous entreruynez V;IND;PL;2;PRS
prattiquer prattiquoys V;IPFV;IND;SG;1;PST;LGSPEC2
finer finassiez V;IPFV;SBJV;PL;2;PST
superseder supersederai V;IND;SG;1;FUT;LGSPEC1
bransler branslerai V;IND;SG;1;FUT;LGSPEC1
celer celeroit V;COND;SG;3;LGSPEC1
demander demandez V;IND;PL;2;PRS
ozer ozois V;IPFV;IND;SG;2;PST;LGSPEC1
entrehurter entrehurtyez V;IPFV;IND;PL;2;PST;LGSPEC2
mascher maschiez V;IPFV;IND;PL;2;PST;LGSPEC1
desplacer desplaçoys V;IPFV;IND;SG;1;PST;LGSPEC2
estimer estimoys V;IPFV;IND;SG;1;PST;LGSPEC2
renfler renfleront V;IND;PL;3;FUT
detester detesteryons V;COND;PL;1;LGSPEC2
toucher touchoyt V;IPFV;IND;SG;3;PST;LGSPEC2
renfler renfle V;SBJV;SG;1;PRS
gouster goustons V;IMP;PL;1
desrober desrobyons V;IPFV;IND;PL;1;PST;LGSPEC2
endommaiger endommaigez V;IND;PL;2;PRS
eslever esleverons V;IND;PL;1;FUT
arrester arreste V;IMP;SG;2
louer louerions V;COND;PL;1;LGSPEC1
esgaler esgaliez V;IPFV;IND;PL;2;PST;LGSPEC1
obliger obligea V;PFV;IND;SG;3;PST
croniquier croniquiera V;IND;SG;3;FUT
dampner dampnerez V;IND;PL;2;FUT
fumer fumeroys V;COND;SG;1;LGSPEC2
translater translaterons V;IND;PL;1;FUT
mectre mectons V;IND;PL;1;PRS
blasphemer blaspheme V;SBJV;SG;3;PRS
negotier negotier V;NFIN
esventer esventerent V;PFV;IND;PL;3;PST
guider guidassent V;IPFV;SBJV;PL;3;PST
pourmener pourmeneront V;IND;PL;3;FUT
recommander recommande V;IND;SG;3;PRS
enconvenencier enconvenenciez V;IPFV;IND;PL;2;PST;LGSPEC1
mehaignier mehaignassent V;IPFV;SBJV;PL;3;PST
songer songeroient V;COND;PL;3;LGSPEC1
abhorrer abhorrions V;IPFV;IND;PL;1;PST;LGSPEC1
devourer devourent V;SBJV;PL;3;PRS
quester quester V;NFIN
porter portyez V;IPFV;IND;PL;2;PST;LGSPEC2
plaider plaidyons V;IPFV;IND;PL;1;PST;LGSPEC2
eslancer eslancerois V;COND;SG;2;LGSPEC1
gaster gastons V;IND;PL;1;PRS
esguarer esguareroys V;COND;SG;2;LGSPEC2
adapter adaptyez V;IPFV;IND;PL;2;PST;LGSPEC2
laisser laisse V;IND;SG;1;PRS
mescler mescleroyent V;COND;PL;3;LGSPEC2
baster bastons V;IMP;PL;1
resider resideroient V;COND;PL;3;LGSPEC1
esbaucher esbauchasses V;IPFV;SBJV;SG;2;PST
bancqueter bancquetas V;PFV;IND;SG;2;PST
asseurer asseureray V;IND;SG;1;FUT;LGSPEC2
abboyer abboyeroyt V;COND;SG;3;LGSPEC2
hebergier hebergeasse V;IPFV;SBJV;SG;1;PST
emprunter empruntasmes V;PFV;IND;PL;1;PST
estacher estacheray V;IND;SG;1;FUT;LGSPEC2
estre soys V;SBJV;SG;2;PRS;LGSPEC2
sceller scellent V;IND;PL;3;PRS
empoizonner empoizonnoient V;IPFV;IND;PL;3;PST;LGSPEC1
offencer offençassions V;IPFV;SBJV;PL;1;PST
esmerveillier esmerveilliez V;SBJV;PL;2;PRS
emboucher emboucheroyt V;COND;SG;3;LGSPEC2
desyrer desyrons V;IND;PL;1;PRS
estonner estonnerez V;IND;PL;2;FUT
cauterizer cauterizassions V;IPFV;SBJV;PL;1;PST
regorger regorge V;IND;SG;1;PRS
lurrer lurrez V;IND;PL;2;PRS
frapper frappons V;SBJV;PL;1;PRS
reculler reculla V;PFV;IND;SG;1;PST
alterer alterer V;NFIN
accorder accordez V;SBJV;PL;2;PRS
meriter meritois V;IPFV;IND;SG;2;PST;LGSPEC1
travailler travaille V;SBJV;SG;3;PRS
subiuger subiuge V;IMP;SG;2
desbaucher desbauche V;SBJV;SG;3;PRS
avoyr eusses V;IPFV;SBJV;SG;2;PST
accuser accusera V;IND;SG;3;FUT
emerger emergent V;SBJV;PL;3;PRS
desarmer desarmerai V;IND;SG;1;FUT;LGSPEC1
robber robberyons V;COND;PL;1;LGSPEC2
penetrer penetroit V;IPFV;IND;SG;3;PST;LGSPEC1
ietter iettyez V;IPFV;IND;PL;2;PST;LGSPEC2
iurer iurez V;IMP;PL;2
trancher tranches V;SBJV;SG;2;PRS
voller vollyez V;IPFV;IND;PL;2;PST;LGSPEC2
recuperer recuperyez V;IPFV;IND;PL;2;PST;LGSPEC2
redoubter redoubterons V;IND;PL;1;FUT
enchasser enchassez V;SBJV;PL;2;PRS
peser pesez V;IMP;PL;2
estudier estudieroys V;COND;SG;1;LGSPEC2
preter preteray V;IND;SG;1;FUT;LGSPEC2
esvertuer esvertuerois V;COND;SG;2;LGSPEC1
apatir apatismes V;PFV;IND;PL;1;PST
proffiter proffitois V;IPFV;IND;SG;1;PST;LGSPEC1
visiter visityons V;IPFV;IND;PL;1;PST;LGSPEC2
reculler recullastes V;PFV;IND;PL;2;PST
mocquer mocquez V;IND;PL;2;PRS
enorter enortes V;IND;SG;2;PRS
peser peseroyent V;COND;PL;3;LGSPEC2
separer separeroys V;COND;SG;2;LGSPEC2
iecter iectera V;IND;SG;3;FUT
desloger deslogeons V;SBJV;PL;1;PRS
embler emblasses V;IPFV;SBJV;SG;2;PST
fraper frapons V;IND;PL;1;PRS
esveiller esveilloyt V;IPFV;IND;SG;3;PST;LGSPEC2
dancer dancerions V;COND;PL;1;LGSPEC1
delaisser delaisse V;IND;SG;3;PRS
armoier armoioient V;IPFV;IND;PL;3;PST;LGSPEC1
resider residast V;IPFV;SBJV;SG;3;PST
rebarber rebarbions V;IPFV;IND;PL;1;PST;LGSPEC1
merveiller merveilleray V;IND;SG;1;FUT;LGSPEC2
pourforcer pourforce V;IMP;SG;2
haittier haittes V;SBJV;SG;2;PRS
chevauchier chevauchiez V;IND;PL;2;PRS
fascher fascher V;NFIN
courroucer courrouce V;IND;SG;3;PRS
entrer entroyent V;IPFV;IND;PL;3;PST;LGSPEC2
subiuguier subiuguions V;IPFV;IND;PL;1;PST;LGSPEC1
inviter inviterez V;IND;PL;2;FUT
soucyer soucyoys V;IPFV;IND;SG;2;PST;LGSPEC2
sceller scellassions V;IPFV;SBJV;PL;1;PST
reserver reservoys V;IPFV;IND;SG;2;PST;LGSPEC2
recommander recommandes V;IND;SG;2;PRS
menasser menasseroyt V;COND;SG;3;LGSPEC2
executer executez V;IND;PL;2;PRS
provocquer provocqueront V;IND;PL;3;FUT
traittier traittierai V;IND;SG;1;FUT;LGSPEC1
estudier estudioyt V;IPFV;IND;SG;3;PST;LGSPEC2
esvanter esvanterai V;IND;SG;1;FUT;LGSPEC1
recommander recommandons V;IMP;PL;1
inviter invitiez V;IPFV;IND;PL;2;PST;LGSPEC1
oublyer oublyast V;IPFV;SBJV;SG;3;PST
nettoyer nettoyons V;SBJV;PL;1;PRS
deffier deffieroient V;COND;PL;3;LGSPEC1
effectuer effectueroys V;COND;SG;1;LGSPEC2
gouster goustasse V;IPFV;SBJV;SG;1;PST
deifier deifieriez V;COND;PL;2;LGSPEC1
preferer preferera V;IND;SG;3;FUT
aerer aereryez V;COND;PL;2;LGSPEC2
sembler sembloient V;IPFV;IND;PL;3;PST;LGSPEC1
proclamer proclama V;PFV;IND;SG;3;PST
atacher atachassions V;IPFV;SBJV;PL;1;PST
fortifier fortifierez V;IND;PL;2;FUT
desploier desploieroit V;COND;SG;3;LGSPEC1
regretter regrettera V;IND;SG;3;FUT
gaber gaberois V;COND;SG;1;LGSPEC1
demonstrer demonstre V;SBJV;SG;1;PRS
emboucher embouche V;SBJV;SG;1;PRS
souspirer souspiryez V;IPFV;IND;PL;2;PST;LGSPEC2
destabler destablastes V;PFV;IND;PL;2;PST
fromenter fromentassions V;IPFV;SBJV;PL;1;PST
appareiller appareilleroit V;COND;SG;3;LGSPEC1
nommer nommas V;PFV;IND;SG;2;PST
peser pesas V;PFV;IND;SG;2;PST
galoper galope V;SBJV;SG;1;PRS
robber robberyez V;COND;PL;2;LGSPEC2
aller allasse V;IPFV;SBJV;SG;1;PST
guarder guarderoys V;COND;SG;1;LGSPEC2
reculler recullerois V;COND;SG;2;LGSPEC1
desinfecter desinfecte V;SBJV;SG;1;PRS
desirer desirassiez V;IPFV;SBJV;PL;2;PST
monstrer monstriez V;IPFV;IND;PL;2;PST;LGSPEC1
renger rengeroys V;COND;SG;1;LGSPEC2
rappeller rappelle V;IND;SG;1;PRS
desregler desreglerons V;IND;PL;1;FUT
poiser poise V;SBJV;SG;1;PRS
escouiller escouilliez V;IPFV;IND;PL;2;PST;LGSPEC1
retourner retournoys V;IPFV;IND;SG;2;PST;LGSPEC2
baiser baiseroys V;COND;SG;1;LGSPEC2
eslever eslevons V;SBJV;PL;1;PRS
desrouter desrouterions V;COND;PL;1;LGSPEC1
desguiser desguiseray V;IND;SG;1;FUT;LGSPEC2
desrober desrobast V;IPFV;SBJV;SG;3;PST
abboyer abboyeroys V;COND;SG;1;LGSPEC2
gangler ganglassent V;IPFV;SBJV;PL;3;PST
guerpir guerpissions V;IPFV;IND;PL;1;PST
mescler mescle V;SBJV;SG;3;PRS
appeller appellons V;IND;PL;1;PRS
ieuner ieunent V;SBJV;PL;3;PRS
oster osteroit V;COND;SG;3;LGSPEC1
raenchonner raenchonnassent V;IPFV;SBJV;PL;3;PST
luitter luittoyent V;IPFV;IND;PL;3;PST;LGSPEC2
finer finoient V;IPFV;IND;PL;3;PST;LGSPEC1
soubhaitter soubhaittes V;SBJV;SG;2;PRS
nombrer nombrera V;IND;SG;3;FUT
pourforcer pourforcerons V;IND;PL;1;FUT
aterminer atermine V;IND;SG;1;PRS
mulcter mulctons V;SBJV;PL;1;PRS
expeller expelleryez V;COND;PL;2;LGSPEC2
picquer picqueryons V;COND;PL;1;LGSPEC2
combiner combinassions V;IPFV;SBJV;PL;1;PST
esmayer esmayent V;SBJV;PL;3;PRS
cuyder cuydoyt V;IPFV;IND;SG;3;PST;LGSPEC2
excuser excuserois V;COND;SG;1;LGSPEC1
desnouer desnouiez V;IPFV;IND;PL;2;PST;LGSPEC1
desborder desborderions V;COND;PL;1;LGSPEC1
courroucer courroucerois V;COND;SG;1;LGSPEC1
repraesenter repraesentoyt V;IPFV;IND;SG;3;PST;LGSPEC2
nombrer nombras V;PFV;IND;SG;2;PST
espargner espargnoyent V;IPFV;IND;PL;3;PST;LGSPEC2
importuner importunes V;SBJV;SG;2;PRS
devourer devouroient V;IPFV;IND;PL;3;PST;LGSPEC1
confesser confesseront V;IND;PL;3;FUT
menasser menasseront V;IND;PL;3;FUT
deliberer deliberyez V;IPFV;IND;PL;2;PST;LGSPEC2
ozer ozez V;SBJV;PL;2;PRS
occuper occupasmes V;PFV;IND;PL;1;PST
r'asseurer r'asseurerois V;COND;SG;1;LGSPEC1
exposer exposerois V;COND;SG;1;LGSPEC1
desregler desreglast V;IPFV;SBJV;SG;3;PST
voller volles V;IND;SG;2;PRS
supposer supposastes V;PFV;IND;PL;2;PST
hucher huchois V;IPFV;IND;SG;1;PST;LGSPEC1
riffler riffle V;IMP;SG;2
pacquer pacquer V;NFIN
retourner retournions V;IPFV;IND;PL;1;PST;LGSPEC1
persuader persuaderas V;IND;SG;2;FUT
tournoyer tournoyois V;IPFV;IND;SG;1;PST;LGSPEC1
negotier negotia V;PFV;IND;SG;1;PST
preferer preferoys V;IPFV;IND;SG;1;PST;LGSPEC2
avoir aie V;IMP;SG;2
poiser poiseroit V;COND;SG;3;LGSPEC1
fascher faschasse V;IPFV;SBJV;SG;1;PST
deschevaucher deschevaucherez V;IND;PL;2;FUT
desgorger desgorge V;SBJV;SG;1;PRS
avanchier avanchoit V;IPFV;IND;SG;3;PST;LGSPEC1
moderer modera V;PFV;IND;SG;1;PST
nouer nouez V;IND;PL;2;PRS
nommer nommassions V;IPFV;SBJV;PL;1;PST
acoustrer acoustreray V;IND;SG;1;FUT;LGSPEC2
enpoisonner enpoisonne V;IND;SG;3;PRS
pryer pryerai V;IND;SG;1;FUT;LGSPEC1
traicter tracterois V;COND;SG;2;LGSPEC1
sembler semblerions V;COND;PL;1;LGSPEC1
courouchier courouche V;SBJV;SG;1;PRS
emboucher embouchyez V;IPFV;IND;PL;2;PST;LGSPEC2
entrefrapper s'entrefrappoient V;IPFV;IND;PL;3;PST;LGSPEC1
embausmer embausmeroyt V;COND;SG;3;LGSPEC2
aymer aymyez V;IPFV;IND;PL;2;PST;LGSPEC2
contrepoiser contrepoiseroys V;COND;SG;1;LGSPEC2
oster osteroient V;COND;PL;3;LGSPEC1
asseurer asseurons V;IMP;PL;1
merveiller merveillons V;SBJV;PL;1;PRS
tyrer tyriez V;IPFV;IND;PL;2;PST;LGSPEC1
trancher tranchasse V;IPFV;SBJV;SG;1;PST
viser vises V;IND;SG;2;PRS
mesler mesle V;SBJV;SG;3;PRS
dancer dance V;SBJV;SG;3;PRS
accompaigner accompaigna V;PFV;IND;SG;3;PST
aboscher abosches V;SBJV;SG;2;PRS
penetrer penetrons V;SBJV;PL;1;PRS
reiecter reiecteroyent V;COND;PL;3;LGSPEC2
resver resvyons V;IPFV;IND;PL;1;PST;LGSPEC2
esgarer esgareriez V;COND;PL;2;LGSPEC1
achapter achaptons V;SBJV;PL;1;PRS
trouver trouverent V;PFV;IND;PL;3;PST
entrehurter entrehurtons nous V;IMP;PL;1
amadouer amadoueray V;IND;SG;1;FUT;LGSPEC2
temprer tempreroient V;COND;PL;3;LGSPEC1
demonstrer demonstres V;SBJV;SG;2;PRS
atourner atournent V;SBJV;PL;3;PRS
cercher cercheryez V;COND;PL;2;LGSPEC2
esquacher esquacherons V;IND;PL;1;FUT
soucyer soucyeroient V;COND;PL;3;LGSPEC1
desinfecter desinfecterai V;IND;SG;1;FUT;LGSPEC1
separer separeroyent V;COND;PL;3;LGSPEC2
aler vays V;IND;SG;1;PRS
debaracer debaraçastes V;PFV;IND;PL;2;PST
assieger assiegeast V;IPFV;SBJV;SG;3;PST
derver derveras V;IND;SG;2;FUT
emboucher embouchas V;PFV;IND;SG;2;PST
demonstrer demonstrastes V;PFV;IND;PL;2;PST
reigler reiglerois V;COND;SG;1;LGSPEC1
pourpenser pourpensassions V;IPFV;SBJV;PL;1;PST
sceller scellastes V;PFV;IND;PL;2;PST
despuceller despucelleryez V;COND;PL;2;LGSPEC2
enchargier enchargions V;IPFV;IND;PL;1;PST;LGSPEC1
baster bastastes V;PFV;IND;PL;2;PST
enyvrer enyvreray V;IND;SG;1;FUT;LGSPEC2
racointer racointerai V;IND;SG;1;FUT;LGSPEC1
passer passastes V;PFV;IND;PL;2;PST
enorter enortois V;IPFV;IND;SG;1;PST;LGSPEC1
reculler reculler V;NFIN
croniquier croniquiassent V;IPFV;SBJV;PL;3;PST
explicquer explicque V;IND;SG;1;PRS
gaspiller gaspillas V;PFV;IND;SG;2;PST
reserver reserviez V;IPFV;IND;PL;2;PST;LGSPEC1
bancqueter bancqueteryons V;COND;PL;1;LGSPEC2
accoustumer accoustumerent V;PFV;IND;PL;3;PST
retourner retournassions V;IPFV;SBJV;PL;1;PST
embler embleroys V;COND;SG;2;LGSPEC2
invader invadyez V;IPFV;IND;PL;2;PST;LGSPEC2
heurter heurtassent V;IPFV;SBJV;PL;3;PST
retyrer retyrerez V;IND;PL;2;FUT
respirer respira V;PFV;IND;SG;3;PST
demesler demeslez V;IMP;PL;2
tremper trempas V;PFV;IND;SG;2;PST
deschirer deschirasses V;IPFV;SBJV;SG;2;PST
souspirer souspire V;IMP;SG;2
garder garde V;IND;SG;3;PRS
enconvenencier enconvenençoyt V;IPFV;IND;SG;3;PST;LGSPEC2
desborder desborderoys V;COND;SG;2;LGSPEC2
acoustumer acoustumoit V;IPFV;IND;SG;3;PST;LGSPEC1
escumer escumez V;IMP;PL;2
fumer fumons V;IMP;PL;1
baptizer baptizasses V;IPFV;SBJV;SG;2;PST
prosperer prosperas V;PFV;IND;SG;2;PST
avaller avallez V;SBJV;PL;2;PRS
abboyer abboyast V;IPFV;SBJV;SG;3;PST
peser pesons V;SBJV;PL;1;PRS
abiurer abiurer V;NFIN
fraper fraperont V;IND;PL;3;FUT
pacquer pacquons V;IND;PL;1;PRS
revencher revenchas V;PFV;IND;SG;2;PST
remonstrer remonstrons V;IND;PL;1;PRS
galoper galopes V;SBJV;SG;2;PRS
ieusner ieusne V;SBJV;SG;3;PRS
entrencontrer entrencontrons nous V;IMP;PL;1
adviser advisoient V;IPFV;IND;PL;3;PST;LGSPEC1
pocher pocherez V;IND;PL;2;FUT
huer huasmes V;PFV;IND;PL;1;PST
advancer advanceroys V;COND;SG;1;LGSPEC2
coucher coucheras V;IND;SG;2;FUT
plier pliez V;IND;PL;2;PRS
desployer desployons V;IND;PL;1;PRS
recorder recordez V;SBJV;PL;2;PRS
eviter evitons V;IMP;PL;1
esvertuer esvertuois V;IPFV;IND;SG;2;PST;LGSPEC1
payer payeryez V;COND;PL;2;LGSPEC2
aller allai V;PFV;IND;SG;1;PST
estacher estachast V;IPFV;SBJV;SG;3;PST
cabasser cabasses V;SBJV;SG;2;PRS
espouser espousoys V;IPFV;IND;SG;2;PST;LGSPEC2
esparpiller esparpilloient V;IPFV;IND;PL;3;PST;LGSPEC1
aguyser aguyserois V;COND;SG;1;LGSPEC1
iecter iecte V;IND;SG;1;PRS
singler singlerions V;COND;PL;1;LGSPEC1
prattiquer prattiquast V;IPFV;SBJV;SG;3;PST
leicher leichyons V;IPFV;IND;PL;1;PST;LGSPEC2
rouller roullasmes V;PFV;IND;PL;1;PST
recorder recordent V;IND;PL;3;PRS
explicquer explicquyons V;IPFV;IND;PL;1;PST;LGSPEC2
supposer supposa V;PFV;IND;SG;1;PST
quiter quitoys V;IPFV;IND;SG;1;PST;LGSPEC2
aquitter aquittassions V;IPFV;SBJV;PL;1;PST
enconvenencier enconvenença V;PFV;IND;SG;3;PST
eschapper eschappe V;IND;SG;1;PRS
appareiller appareilleront V;IND;PL;3;FUT
tourmenter tourmentois V;IPFV;IND;SG;1;PST;LGSPEC1
aerer aereroyent V;COND;PL;3;LGSPEC2
habiter habitasmes V;PFV;IND;PL;1;PST
eriger erigera V;IND;SG;3;FUT
recuperer recupererent V;PFV;IND;PL;3;PST
prosperer prospere V;SBJV;SG;1;PRS
soumectre soumectroyent V;COND;PL;3;LGSPEC2
denunchier denunchiois V;IPFV;IND;SG;2;PST;LGSPEC1
desadvouer desadvouera V;IND;SG;3;FUT
estourdir estourdiroient V;COND;PL;3;LGSPEC1
trancher tranchons V;IND;PL;1;PRS
representer represente V;SBJV;SG;3;PRS
rejecter rejecte V;SBJV;SG;1;PRS
fromenter fromenteroyt V;COND;SG;3;LGSPEC2
traveillier traveillas V;PFV;IND;SG;2;PST
houer houeroient V;COND;PL;3;LGSPEC1
repraesenter repraesentassent V;IPFV;SBJV;PL;3;PST
endommaiger endommaige V;IMP;SG;2
esguiser esguisez V;IND;PL;2;PRS
cesser cesseroyt V;COND;SG;3;LGSPEC2
picquer picqueryez V;COND;PL;2;LGSPEC2
finir finissions V;SBJV;PL;1;PRS
executer executeroys V;COND;SG;1;LGSPEC2
minorer minorerois V;COND;SG;1;LGSPEC1
pourmener pourmenassiez V;IPFV;SBJV;PL;2;PST
aracher aracherons V;IND;PL;1;FUT
aler yra V;IND;SG;3;FUT;LGSPEC2
preceder precedons V;IMP;PL;1
recuperer recuperera V;IND;SG;3;FUT
loger logeoient V;IPFV;IND;PL;3;PST;LGSPEC1
trouver trouveryons V;COND;PL;1;LGSPEC2
alimenter alimenterions V;COND;PL;1;LGSPEC1
monter montoient V;IPFV;IND;PL;3;PST;LGSPEC1
desmettre desmettre V;NFIN
espargner espargne V;IMP;SG;2
enferrer enferrasses V;IPFV;SBJV;SG;2;PST
gaimenter gaimentasmes V;PFV;IND;PL;1;PST
huer huent V;IND;PL;3;PRS
buchier buchent V;IND;PL;3;PRS
buchier buchiera V;IND;SG;3;FUT
entredonner entredonnons nous V;IMP;PL;1
trancher tranchoit V;IPFV;IND;SG;3;PST;LGSPEC1
negotier negotieroient V;COND;PL;3;LGSPEC1
aterminer atermineroyt V;COND;SG;3;LGSPEC2
croniquier croniquias V;PFV;IND;SG;2;PST
protester protestoys V;IPFV;IND;SG;1;PST;LGSPEC2
abandonner abandonnassiez V;IPFV;SBJV;PL;2;PST
proteger protegeastes V;PFV;IND;PL;2;PST
contreroller contrerollera V;IND;SG;3;FUT
escorcher escorchent V;SBJV;PL;3;PRS
gouverner gouvernoyt V;IPFV;IND;SG;3;PST;LGSPEC2
estiquier estiquieray V;IND;SG;1;FUT;LGSPEC2
enterrer enterrois V;IPFV;IND;SG;1;PST;LGSPEC1
guarder guardoyent V;IPFV;IND;PL;3;PST;LGSPEC2
aloser alosons V;IMP;PL;1
mouscher mouscher V;NFIN
eschever escheveryez V;COND;PL;2;LGSPEC2
racompter racomptons V;SBJV;PL;1;PRS
esprouver esprouvent V;IND;PL;3;PRS
leicher leicheriez V;COND;PL;2;LGSPEC1
trembler tremblera V;IND;SG;3;FUT
desrisier desrisyons V;IPFV;IND;PL;1;PST;LGSPEC2
desprisonner desprisonneryons V;COND;PL;1;LGSPEC2
reculler recullasse V;IPFV;SBJV;SG;1;PST
respirer respireroys V;COND;SG;2;LGSPEC2
soubhaitter soubhaittoys V;IPFV;IND;SG;1;PST;LGSPEC2
despuceller despucelle V;IND;SG;3;PRS
retyrer retyrent V;IND;PL;3;PRS
esventer esventera V;IND;SG;3;FUT
conquester conquestas V;PFV;IND;SG;2;PST
monter monteroyt V;COND;SG;3;LGSPEC2
gouverner gouvernons V;IMP;PL;1
gouster gousterent V;PFV;IND;PL;3;PST
ronfler ronfle V;SBJV;SG;3;PRS
courroucer courrouçois V;IPFV;IND;SG;2;PST;LGSPEC1
desprisonner desprisonne V;IND;SG;1;PRS
desmonter desmontyez V;IPFV;IND;PL;2;PST;LGSPEC2
reculler reculleroyent V;COND;PL;3;LGSPEC2
desrobber desrobbes V;IND;SG;2;PRS
tumber tumbois V;IPFV;IND;SG;2;PST;LGSPEC1
aloser aloseras V;IND;SG;2;FUT
eriger erigeons V;SBJV;PL;1;PRS
remonstrer remonstrez V;IMP;PL;2
occuper occuperyons V;COND;PL;1;LGSPEC2
pocher pochoient V;IPFV;IND;PL;3;PST;LGSPEC1
gouster gousteroient V;COND;PL;3;LGSPEC1
desrobber desrobbons V;IMP;PL;1
contreroller contrerolleroyent V;COND;PL;3;LGSPEC2
cerchier cerchoys V;IPFV;IND;SG;2;PST;LGSPEC2
courouchier courouchoys V;IPFV;IND;SG;1;PST;LGSPEC2
desnouer desnoueras V;IND;SG;2;FUT
retyrer retyre V;SBJV;SG;3;PRS
tumber tumber V;NFIN
desirer desires V;IND;SG;2;PRS
accointer accointez V;SBJV;PL;2;PRS
moderer moderyez V;IPFV;IND;PL;2;PST;LGSPEC2
enconcher enconcheront V;IND;PL;3;FUT
empieger empiegerez V;IND;PL;2;FUT
escouter escoutyons V;IPFV;IND;PL;1;PST;LGSPEC2
entituler entituloyent V;IPFV;IND;PL;3;PST;LGSPEC2
escorner escornez V;IMP;PL;2
proffiter proffiteryons V;COND;PL;1;LGSPEC2
moderer modereray V;IND;SG;1;FUT;LGSPEC2
desprisonner desprisonneray V;IND;SG;1;FUT;LGSPEC2
logier logeoyent V;IPFV;IND;PL;3;PST;LGSPEC2
emprunter empruntas V;PFV;IND;SG;2;PST
abboyer abboyeras V;IND;SG;2;FUT
ruyner ruynons V;IMP;PL;1
geller gellasses V;IPFV;SBJV;SG;2;PST
oublyer oublyent V;IND;PL;3;PRS
mescler mesclasses V;IPFV;SBJV;SG;2;PST
caper caperoyt V;COND;SG;3;LGSPEC2
baiser baisons V;IMP;PL;1
esparpiller esparpilleront V;IND;PL;3;FUT
essilier essilois V;IPFV;IND;SG;1;PST;LGSPEC1
garder garda V;PFV;IND;SG;1;PST
desinfecter desinfectasmes V;PFV;IND;PL;1;PST
flechir fleschissons V;IMP;PL;1
proclamer proclamyez V;IPFV;IND;PL;2;PST;LGSPEC2
escouter escoutas V;PFV;IND;SG;2;PST
translater translaterez V;IND;PL;2;FUT
reguarder reguardasse V;IPFV;SBJV;SG;1;PST
gangler ganglez V;SBJV;PL;2;PRS
lyer lyasmes V;PFV;IND;PL;1;PST
infourmer infourmoys V;IPFV;IND;SG;2;PST;LGSPEC2
espier espia V;PFV;IND;SG;1;PST
brusler bruslerai V;IND;SG;1;FUT;LGSPEC1
avoyr aient V;SBJV;PL;3;PRS;LGSPEC1
regarder regardoys V;IPFV;IND;SG;1;PST;LGSPEC2
interpreter interpretes V;SBJV;SG;2;PRS
esveiller esveilles V;SBJV;SG;2;PRS
employer employe V;IND;SG;3;PRS
contribuer contribuez V;SBJV;PL;2;PRS
deliberer deliberassent V;IPFV;SBJV;PL;3;PST
mercyer mercyeryez V;COND;PL;2;LGSPEC2
esbaucher esbauche V;IND;SG;1;PRS
piller pillons V;IMP;PL;1
advouer advoueroys V;COND;SG;2;LGSPEC2
cointoier cointoies V;SBJV;SG;2;PRS
pocher pochez V;IND;PL;2;PRS
tyrer tyrasmes V;PFV;IND;PL;1;PST
tabuster tabustent V;SBJV;PL;3;PRS
abandonner abandonneriez V;COND;PL;2;LGSPEC1
resumer resume V;SBJV;SG;3;PRS
ployer ployer V;NFIN
iouer iouast V;IPFV;SBJV;SG;3;PST
bayser baysez V;IND;PL;2;PRS
executer executeryez V;COND;PL;2;LGSPEC2
bransler bransle V;IND;SG;3;PRS
chocquer chocqua V;PFV;IND;SG;1;PST
accoustumer accoustument V;SBJV;PL;3;PRS
oultrager oultragerez V;IND;PL;2;FUT
achever acheverons V;IND;PL;1;FUT
doubter doubta V;PFV;IND;SG;1;PST
sçavoir sçauront V;IND;PL;3;FUT
employer employez V;IMP;PL;2
debaracer debaraçasse V;IPFV;SBJV;SG;1;PST
transgloutir transgloutismes V;PFV;IND;PL;1;PST
apatir apatissoyy V;IPFV;IND;SG;3;PST;LGSPEC2
ieusner ieusnez V;SBJV;PL;2;PRS
voller vollez V;IMP;PL;2
uriner urineriez V;COND;PL;2;LGSPEC1
monstrer monstroient V;IPFV;IND;PL;3;PST;LGSPEC1
avoir eusse V;IPFV;SBJV;SG;1;PST
escorner escornyez V;IPFV;IND;PL;2;PST;LGSPEC2
penetrer penetreroient V;COND;PL;3;LGSPEC1
esprouver esprouvasses V;IPFV;SBJV;SG;2;PST
aboscher aboscherois V;COND;SG;1;LGSPEC1
superseder supersedoys V;IPFV;IND;SG;1;PST;LGSPEC2
occurrer occurryez V;IPFV;IND;PL;2;PST;LGSPEC2
meriter meriteroys V;COND;SG;1;LGSPEC2
achapter achaptoys V;IPFV;IND;SG;1;PST;LGSPEC2
estouffer estoufferois V;COND;SG;1;LGSPEC1
deifier deifiez V;SBJV;PL;2;PRS
melancholier melancholient V;IND;PL;3;PRS
esgaler esgalions V;IPFV;IND;PL;1;PST;LGSPEC1
rouller roullyez V;IPFV;IND;PL;2;PST;LGSPEC2
escouter escouterions V;COND;PL;1;LGSPEC1
regorger regorgerai V;IND;SG;1;FUT;LGSPEC1
descouchier descouche V;SBJV;SG;1;PRS
abboyer abboye V;IMP;SG;2
appeller appelliez V;IPFV;IND;PL;2;PST;LGSPEC1
deffier deffioyt V;IPFV;IND;SG;3;PST;LGSPEC2
contribuer contribueroit V;COND;SG;3;LGSPEC1
chocquer chocquerons V;IND;PL;1;FUT
trembler tremblastes V;PFV;IND;PL;2;PST
esparpiller esparpilleryez V;COND;PL;2;LGSPEC2
esmayer esmayoient V;IPFV;IND;PL;3;PST;LGSPEC1
plaider plaidez V;SBJV;PL;2;PRS
nombrer nombryez V;IPFV;IND;PL;2;PST;LGSPEC2
transgloutir transgloutira V;IND;SG;3;FUT
entredemander entredemandons nous V;IMP;PL;1
evaporer evaporeront V;IND;PL;3;FUT
armoier armoiyons V;IPFV;IND;PL;1;PST;LGSPEC2
estiquier estiquions V;IND;PL;1;PRS
tromper trompois V;IPFV;IND;SG;2;PST;LGSPEC1
heiler heileryez V;COND;PL;2;LGSPEC2
estacher estachasses V;IPFV;SBJV;SG;2;PST
esbaucher esbaucheryons V;COND;PL;1;LGSPEC2
trancher tranchiez V;IPFV;IND;PL;2;PST;LGSPEC1
mehaignier mehaigniera V;IND;SG;3;FUT
delaisser delaisse V;IND;SG;1;PRS
cuyder cuyde V;SBJV;SG;1;PRS
cointoier cointoieroys V;COND;SG;1;LGSPEC2
reigler reiglera V;IND;SG;3;FUT
amadouer amadoueroit V;COND;SG;3;LGSPEC1
preter pretassiez V;IPFV;SBJV;PL;2;PST
desister desistas V;PFV;IND;SG;2;PST
desmonter desmontastes V;PFV;IND;PL;2;PST
escryer escryiez V;IPFV;IND;PL;2;PST;LGSPEC1
finir finis V;PFV;IND;SG;2;PST
rouiller rouillyez V;IPFV;IND;PL;2;PST;LGSPEC2
haittier haittions V;IMP;PL;1
demander demandoys V;IPFV;IND;SG;2;PST;LGSPEC2
galoper galoperoient V;COND;PL;3;LGSPEC1
entrer entres V;IND;SG;2;PRS
pecher pechasse V;IPFV;SBJV;SG;1;PST
escapper escapper V;NFIN
loger logeront V;IND;PL;3;FUT
negotier negotie V;IND;SG;1;PRS
eslancer eslanceriez V;COND;PL;2;LGSPEC1
pourmener pourmenions V;IPFV;IND;PL;1;PST;LGSPEC1
embler emblerai V;IND;SG;1;FUT;LGSPEC1
baster basterez V;IND;PL;2;FUT
translater translaterai V;IND;SG;1;FUT;LGSPEC1
presenter presenterons V;IND;PL;1;FUT
aymer aymez V;IMP;PL;2
desirer desire V;SBJV;SG;1;PRS
separer separyons V;IPFV;IND;PL;1;PST;LGSPEC2
protester protestons V;IMP;PL;1
rejecter rejecteroyent V;COND;PL;3;LGSPEC2
mectre misses V;IPFV;SBJV;SG;2;PST
caper capasse V;IPFV;SBJV;SG;1;PST
intoxiquer intoxiqua V;PFV;IND;SG;1;PST
penetrer penetrions V;IPFV;IND;PL;1;PST;LGSPEC1
chercher chercherent V;PFV;IND;PL;3;PST
reculler reculloient V;IPFV;IND;PL;3;PST;LGSPEC1
pasturer pastureryons V;COND;PL;1;LGSPEC2
mehaignier mehaignions V;IMP;PL;1
lascher laschoient V;IPFV;IND;PL;3;PST;LGSPEC1
contregarder contregarde V;IND;SG;1;PRS
lurrer lurrassent V;IPFV;SBJV;PL;3;PST
contregarder contregarderoient V;COND;PL;3;LGSPEC1
desnouer desnoueroient V;COND;PL;3;LGSPEC1
essilier essile V;IND;SG;3;PRS
descourager descouragyons V;IPFV;IND;PL;1;PST;LGSPEC2
acquiter acquiteroyent V;COND;PL;3;LGSPEC2
saluer saluerois V;COND;SG;2;LGSPEC1
despuceller despucellassiez V;IPFV;SBJV;PL;2;PST
demourer demourois V;IPFV;IND;SG;1;PST;LGSPEC1
repraesenter repraesenta V;PFV;IND;SG;1;PST
auser ausassent V;IPFV;SBJV;PL;3;PST
ayder aydast V;IPFV;SBJV;SG;3;PST
desrisier desrisyez V;IPFV;IND;PL;2;PST;LGSPEC2
offencer offenceriez V;COND;PL;2;LGSPEC1
marier marie V;SBJV;SG;3;PRS
veigler veiglerai V;IND;SG;1;FUT;LGSPEC1
deifier deifie V;IMP;SG;2
quiter quitons V;IND;PL;1;PRS
amadouer amadouassiez V;IPFV;SBJV;PL;2;PST
recouvrer recouvreroyent V;COND;PL;3;LGSPEC2
demonstrer demonstrasses V;IPFV;SBJV;SG;2;PST
desirer desirast V;IPFV;SBJV;SG;3;PST
haster hastast V;IPFV;SBJV;SG;3;PST
esgarer esgarassions V;IPFV;SBJV;PL;1;PST
fluir fluisse V;IPFV;SBJV;SG;1;PST
esventer esventes V;SBJV;SG;2;PRS
plier pliyez V;IPFV;IND;PL;2;PST;LGSPEC2
baiser baisiez V;IPFV;IND;PL;2;PST;LGSPEC1
deslyer deslye V;IMP;SG;2
encharger encharge V;IND;SG;1;PRS
retirer retirassiez V;IPFV;SBJV;PL;2;PST
bancqueter bancquetez V;IND;PL;2;PRS
rincer rinçons V;IND;PL;1;PRS
monstrer monstres V;IND;SG;2;PRS
tyrer tyre V;IND;SG;3;PRS
contreroller contrerollerions V;COND;PL;1;LGSPEC1
destacher destachassiez V;IPFV;SBJV;PL;2;PST
entrer entra V;PFV;IND;SG;3;PST
demourer demoure V;IMP;SG;2
effronter effrontiez V;IPFV;IND;PL;2;PST;LGSPEC1
remonstrer remonstroyt V;IPFV;IND;SG;3;PST;LGSPEC2
hostoier hostoient V;IND;PL;3;PRS
remonstrer remonstrions V;IPFV;IND;PL;1;PST;LGSPEC1
fluir fluirois V;COND;SG;1;LGSPEC1
possesser possessons V;SBJV;PL;1;PRS
compter compteroyt V;COND;SG;3;LGSPEC2
desmeler desmeloit V;IPFV;IND;SG;3;PST;LGSPEC1
noter noteryez V;COND;PL;2;LGSPEC2
regarder regardoit V;IPFV;IND;SG;3;PST;LGSPEC1
despouiller despouillassions V;IPFV;SBJV;PL;1;PST
loger logeasse V;IPFV;SBJV;SG;1;PST
resider resideras V;IND;SG;2;FUT
desloger deslogerez V;IND;PL;2;FUT
guerpir guerpis V;PFV;IND;SG;2;PST
desinfecter desinfecteroys V;COND;SG;2;LGSPEC2
jecter jectes V;SBJV;SG;2;PRS
nouer nouast V;IPFV;SBJV;SG;3;PST
avanchier avanchions V;IPFV;IND;PL;1;PST;LGSPEC1
galoper galopois V;IPFV;IND;SG;1;PST;LGSPEC1
vengier vengions V;SBJV;PL;1;PRS
singler singlerons V;IND;PL;1;FUT
quiter quite V;IMP;SG;2
desver desvez V;SBJV;PL;2;PRS
oster ostions V;IPFV;IND;PL;1;PST;LGSPEC1
pausmer pausmyons V;IPFV;IND;PL;1;PST;LGSPEC2
prattiquer prattiquez V;SBJV;PL;2;PRS
estimer estimastes V;PFV;IND;PL;2;PST
garder garderois V;COND;SG;1;LGSPEC1
infourmer infourmeroyt V;COND;SG;3;LGSPEC2
piller pilleryons V;COND;PL;1;LGSPEC2
enseignier enseignent V;SBJV;PL;3;PRS
accorder accordassent V;IPFV;SBJV;PL;3;PST
charger chargeroyt V;COND;SG;3;LGSPEC2
eslever esleverois V;COND;SG;1;LGSPEC1
courouchier courouchieras V;IND;SG;2;FUT
aloser alosera V;IND;SG;3;FUT
rebarber rebarba V;PFV;IND;SG;1;PST
mucer mucer V;NFIN
condescendre condescendeit V;IPFV;IND;SG;3;PST;LGSPEC2
manger mange V;IND;SG;3;PRS
presupposer presupposast V;IPFV;SBJV;SG;3;PST
emprunter emprunteriez V;COND;PL;2;LGSPEC1
cauterizer cauterize V;SBJV;SG;1;PRS
trancher tranchoient V;IPFV;IND;PL;3;PST;LGSPEC1
chocquer chocquois V;IPFV;IND;SG;1;PST;LGSPEC1
encliner enclinions V;IPFV;IND;PL;1;PST;LGSPEC1
esveigler esveigleroient V;COND;PL;3;LGSPEC1
espier espiois V;IPFV;IND;SG;2;PST;LGSPEC1
serainer seraineryons V;COND;PL;1;LGSPEC2
adviser advisa V;PFV;IND;SG;3;PST
trembler tremblerions V;COND;PL;1;LGSPEC1
nettoyer nettoyerai V;IND;SG;1;FUT;LGSPEC1
estiquier estiquiera V;IND;SG;3;FUT
enconcher enconchoit V;IPFV;IND;SG;3;PST;LGSPEC1
iurer iuras V;PFV;IND;SG;2;PST
demander demande V;SBJV;SG;1;PRS
verifier verifia V;PFV;IND;SG;3;PST
adapter adapteroyent V;COND;PL;3;LGSPEC2
viser viseriez V;COND;PL;2;LGSPEC1
accointer accointa V;PFV;IND;SG;1;PST
aloser alose V;IMP;SG;2
vengier venge V;IMP;SG;2
transgloutir transgloutirons V;IND;PL;1;FUT
pausmer pausmeray V;IND;SG;1;FUT;LGSPEC2
lyer lyois V;IPFV;IND;SG;2;PST;LGSPEC1
descharger descharges V;SBJV;SG;2;PRS
allaicter allaicte V;SBJV;SG;3;PRS
protester protesteront V;IND;PL;3;FUT
oster ostoyent V;IPFV;IND;PL;3;PST;LGSPEC2
aquitter aquitterois V;COND;SG;2;LGSPEC1
oublyer oublyerois V;COND;SG;1;LGSPEC1
descourager descourageasses V;IPFV;SBJV;SG;2;PST
enchasser enchassons V;IMP;PL;1
porter portez V;IND;PL;2;PRS
approuchier approuchois V;IPFV;IND;SG;1;PST;LGSPEC1
gangler ganglas V;PFV;IND;SG;2;PST
interpreter interpretons V;IMP;PL;1
escorcher escorchoyent V;IPFV;IND;PL;3;PST;LGSPEC2
blesser blessoys V;IPFV;IND;SG;1;PST;LGSPEC2
renger renger V;NFIN
aracher arachas V;PFV;IND;SG;2;PST
reiecter reiecte V;SBJV;SG;3;PRS
arroier arroieryez V;COND;PL;2;LGSPEC2
redrechier redrechieroys V;COND;SG;2;LGSPEC2
acoustrer acoustrassions V;IPFV;SBJV;PL;1;PST
oultrager oultrageroys V;COND;SG;1;LGSPEC2
remercyer remercyoys V;IPFV;IND;SG;2;PST;LGSPEC2
mercyer mercyasmes V;PFV;IND;PL;1;PST
tyrer tyroyt V;IPFV;IND;SG;3;PST;LGSPEC2
guarder guardoys V;IPFV;IND;SG;1;PST;LGSPEC2
passer passa V;PFV;IND;SG;1;PST
exstirper exstirperyez V;COND;PL;2;LGSPEC2
tocquer tocquez V;IND;PL;2;PRS
pocher poche V;SBJV;SG;3;PRS
deliberer deliberes V;SBJV;SG;2;PRS
disner disne V;SBJV;SG;1;PRS
abiurer abiurasses V;IPFV;SBJV;SG;2;PST
baptiser baptisoit V;IPFV;IND;SG;3;PST;LGSPEC1
bransler bransler V;NFIN
preparer prepare V;IMP;SG;2
desfaire desfais V;IND;SG;2;PRS
courrouchier courrouchoys V;IPFV;IND;SG;2;PST;LGSPEC2
despossesser despossessoys V;IPFV;IND;SG;1;PST;LGSPEC2
iouer iouassiez V;IPFV;SBJV;PL;2;PST
adapter adaptoyt V;IPFV;IND;SG;3;PST;LGSPEC2
avaller avalleryons V;COND;PL;1;LGSPEC2
recouvrer recouvreroys V;COND;SG;2;LGSPEC2
arrester arresteray V;IND;SG;1;FUT;LGSPEC2
blesser blessasmes V;PFV;IND;PL;1;PST
fluir fluirons V;IND;PL;1;FUT
avoir avais V;IPFV;IND;SG;2;PST
desrober desrobasses V;IPFV;SBJV;SG;2;PST
espier espiastes V;PFV;IND;PL;2;PST
ployer ploye V;IMP;SG;2
esbaucher esbauchoys V;IPFV;IND;SG;2;PST;LGSPEC2
vuider vuidez V;SBJV;PL;2;PRS
auser ausoys V;IPFV;IND;SG;2;PST;LGSPEC2
trouver trouvons V;SBJV;PL;1;PRS
presenter presentast V;IPFV;SBJV;SG;3;PST
esloigner esloigneriez V;COND;PL;2;LGSPEC1
courouchier courouchiez V;IND;PL;2;PRS
estoffer estofferoient V;COND;PL;3;LGSPEC1
remerquer remerquions V;IPFV;IND;PL;1;PST;LGSPEC1
considerer considere V;IMP;SG;2
manger mangeons V;IND;PL;1;PRS
alterer alterastes V;PFV;IND;PL;2;PST
chanter chantent V;SBJV;PL;3;PRS
eslever esleve V;SBJV;SG;1;PRS
estourdir estourdirons V;IND;PL;1;FUT
explorer explorerions V;COND;PL;1;LGSPEC1
essayer essayez V;IND;PL;2;PRS
descouchier descouchast V;IPFV;SBJV;SG;3;PST
reguarder reguardons V;IND;PL;1;PRS
practicquer practicquois V;IPFV;IND;SG;1;PST;LGSPEC1
remonstrer remonstryez V;IPFV;IND;PL;2;PST;LGSPEC2
coniecturer coniectura V;PFV;IND;SG;1;PST
prester presta V;PFV;IND;SG;1;PST
escumer escumyez V;IPFV;IND;PL;2;PST;LGSPEC2
coniecturer coniecturassiez V;IPFV;SBJV;PL;2;PST
obliger obligeoient V;IPFV;IND;PL;3;PST;LGSPEC1
inviter inviteryez V;COND;PL;2;LGSPEC2
esmerveillier esmerveilloyt V;IPFV;IND;SG;3;PST;LGSPEC2
croniquier croniquies V;SBJV;SG;2;PRS
advancer advancerions V;COND;PL;1;LGSPEC1
monter monteroyent V;COND;PL;3;LGSPEC2
desmettre desmet V;IND;SG;3;PRS
heiler heileroyt V;COND;SG;3;LGSPEC2
haittier haitta V;PFV;IND;SG;1;PST
estrangler estrangles V;SBJV;SG;2;PRS
confermer conferme V;SBJV;SG;1;PRS
allaicter allaicterons V;IND;PL;1;FUT
negotier negoties V;IND;SG;2;PRS
saluer salue V;SBJV;SG;3;PRS
essilier essile V;SBJV;SG;1;PRS
resider residoyent V;IPFV;IND;PL;3;PST;LGSPEC2
exposer exposois V;IPFV;IND;SG;1;PST;LGSPEC1
presupposer presupposer V;NFIN
iecter iectent V;SBJV;PL;3;PRS
entrer entre V;IMP;SG;2
resver resvoyent V;IPFV;IND;PL;3;PST;LGSPEC2
empirer empire V;IMP;SG;2
recorder recordas V;PFV;IND;SG;2;PST
monter monteront V;IND;PL;3;FUT
desinfecter desinfectassions V;IPFV;SBJV;PL;1;PST
fouragier fouragiez V;IND;PL;2;PRS
reverer reveroient V;IPFV;IND;PL;3;PST;LGSPEC1
esperer esperois V;IPFV;IND;SG;2;PST;LGSPEC1
ployer ployions V;IPFV;IND;PL;1;PST;LGSPEC1
retyrer retyrasse V;IPFV;SBJV;SG;1;PST
aller yrez V;IND;PL;2;FUT;LGSPEC2
encontrer encontrons V;SBJV;PL;1;PRS
empirer empiryons V;IPFV;IND;PL;1;PST;LGSPEC2
uriner uriner V;NFIN
empenser empensent V;IND;PL;3;PRS
proclamer proclament V;SBJV;PL;3;PRS
mucer mucerai V;IND;SG;1;FUT;LGSPEC1
soingner soingnasses V;IPFV;SBJV;SG;2;PST
practicquer practicquons V;IND;PL;1;PRS
picquier picquyez V;IPFV;IND;PL;2;PST;LGSPEC2
chevauchier chevauchierois V;COND;SG;2;LGSPEC1
courroucer courrouceroyt V;COND;SG;3;LGSPEC2
emprunter empruntons V;IMP;PL;1
fortifier fortifiassent V;IPFV;SBJV;PL;3;PST
cerchier cerchasses V;IPFV;SBJV;SG;2;PST
marier marieryons V;COND;PL;1;LGSPEC2
effronter effronteriez V;COND;PL;2;LGSPEC1
trousser troussastes V;PFV;IND;PL;2;PST
desarmer desarmons V;SBJV;PL;1;PRS
besoinger besoigneroit V;COND;SG;3;LGSPEC1
tirer tirasses V;IPFV;SBJV;SG;2;PST
blesser blessasse V;IPFV;SBJV;SG;1;PST
ployer ployiez V;IPFV;IND;PL;2;PST;LGSPEC1
fumer fumeriez V;COND;PL;2;LGSPEC1
aloser aloseroit V;COND;SG;3;LGSPEC1
pisser pissons V;IND;PL;1;PRS
rotter rottera V;IND;SG;3;FUT
gangler gangle V;SBJV;SG;1;PRS
empieger empiegeras V;IND;SG;2;FUT
embler emblassions V;IPFV;SBJV;PL;1;PST
souspirer souspire V;SBJV;SG;3;PRS
effreer effreoyt V;IPFV;IND;SG;3;PST;LGSPEC2
depescher depescheroit V;COND;SG;3;LGSPEC1
preter pretent V;SBJV;PL;3;PRS
chercher cherchasse V;IPFV;SBJV;SG;1;PST
chercher cherchent V;IND;PL;3;PRS
obliger obligez V;SBJV;PL;2;PRS
commencer commençons V;IND;PL;1;PRS
preparer preparera V;IND;SG;3;FUT
humilier humilie V;IND;SG;1;PRS
confermer confermerez V;IND;PL;2;FUT
enfelonner enfelonnerai V;IND;SG;1;FUT;LGSPEC1
transgloutir transgloutir V;NFIN
ployer ployoit V;IPFV;IND;SG;3;PST;LGSPEC1
executer executoyt V;IPFV;IND;SG;3;PST;LGSPEC2
resister resista V;PFV;IND;SG;3;PST
accompaigner accompaigneray V;IND;SG;1;FUT;LGSPEC2
alterer altere V;IND;SG;1;PRS
dilater dilatassions V;IPFV;SBJV;PL;1;PST
supposer supposeras V;IND;SG;2;FUT
renger rengeoys V;IPFV;IND;SG;1;PST;LGSPEC2
pocher pochons V;SBJV;PL;1;PRS
mortifier mortifie V;IND;SG;1;PRS
desadvouer desadvoueront V;IND;PL;3;FUT
amadouer amadouassions V;IPFV;SBJV;PL;1;PST
esbaucher esbaucha V;PFV;IND;SG;1;PST
reculler reculle V;IMP;SG;2
toquer toqua V;PFV;IND;SG;1;PST
espouser espousez V;IND;PL;2;PRS
consyderer consyderer V;NFIN
translater translaterois V;COND;SG;2;LGSPEC1
desyrer desyreront V;IND;PL;3;FUT
cryer crye V;IND;SG;3;PRS
accuser accusions V;IPFV;IND;PL;1;PST;LGSPEC1
explicquer explicquons V;IMP;PL;1
encommencer encommençons V;SBJV;PL;1;PRS
aller allions V;IPFV;IND;PL;1;PST
combiner combinions V;IPFV;IND;PL;1;PST;LGSPEC1
prattiquer prattiques V;SBJV;SG;2;PRS
tumber tumberoys V;COND;SG;2;LGSPEC2
possesser possessent V;IND;PL;3;PRS
eschever eschevas V;PFV;IND;SG;2;PST
escrier escrioient V;IPFV;IND;PL;3;PST;LGSPEC1
deshonnourer deshonnourassent V;IPFV;SBJV;PL;3;PST
escorcher escorches V;IND;SG;2;PRS
accomplir accomplis V;PFV;IND;SG;2;PST
entredonner vous entredonnez V;IND;PL;2;PRS
esveiller esveillassiez V;IPFV;SBJV;PL;2;PST
chocquer chocqueroyt V;COND;SG;3;LGSPEC2
seiourner seiourne V;SBJV;SG;3;PRS
endommaiger endommaigez V;SBJV;PL;2;PRS
reverer revere V;IMP;SG;2
affermer affermeryez V;COND;PL;2;LGSPEC2
houssepillier houssepilliez V;SBJV;PL;2;PRS
esguarer esguarassions V;IPFV;SBJV;PL;1;PST
acoustumer acoustumerois V;COND;SG;1;LGSPEC1
abhorrer abhorrerions V;COND;PL;1;LGSPEC1
ronfler ronflast V;IPFV;SBJV;SG;3;PST
mocquer mocquent V;IND;PL;3;PRS
reguarder reguardas V;PFV;IND;SG;2;PST
assieger assiegera V;IND;SG;3;FUT
desadvouer desadvouas V;PFV;IND;SG;2;PST
geller gellent V;IND;PL;3;PRS
recuperer recupereriez V;COND;PL;2;LGSPEC1
esplucher espluchyons V;IPFV;IND;PL;1;PST;LGSPEC2
desployer desployoit V;IPFV;IND;SG;3;PST;LGSPEC1
cerchier cerchasse V;IPFV;SBJV;SG;1;PST
destacher destachoient V;IPFV;IND;PL;3;PST;LGSPEC1
tournoyer tournoya V;PFV;IND;SG;3;PST
perser perseras V;IND;SG;2;FUT
mesler meslerent V;PFV;IND;PL;3;PST
pourpenser pourpenseront V;IND;PL;3;FUT
esguiser esguise V;IMP;SG;2
nombrer nombres V;IND;SG;2;PRS
persuader persuaderay V;IND;SG;1;FUT;LGSPEC2
iurer iurera V;IND;SG;3;FUT
courrouchier courrouchierions V;COND;PL;1;LGSPEC1
enseignier enseignerai V;IND;SG;1;FUT;LGSPEC1
devourer devoure V;IND;SG;3;PRS
desmettre desmettra V;IND;SG;3;FUT
provocquer provocquasse V;IPFV;SBJV;SG;1;PST
soulaiger soulaigerons V;IND;PL;1;FUT
redoubter redoubtassent V;IPFV;SBJV;PL;3;PST
quiter quites V;SBJV;SG;2;PRS
despencer despençons V;IPFV;IND;PL;1;PST;LGSPEC2
fumer fume V;IND;SG;1;PRS
desmettre desmisses V;IPFV;SBJV;SG;2;PST
estouffer estouffons V;SBJV;PL;1;PRS
desplacer desplaçassent V;IPFV;SBJV;PL;3;PST
renger rengeassiez V;IPFV;SBJV;PL;2;PST
songer songes V;IND;SG;2;PRS
flechir fleschiroyt V;COND;SG;3;LGSPEC2
supposer supposons V;IMP;PL;1
courrouchier courrouchieroyt V;COND;SG;3;LGSPEC2
inquieter inquieterois V;COND;SG;1;LGSPEC1
iniurier iniurie V;SBJV;SG;3;PRS
pryer pryassent V;IPFV;SBJV;PL;3;PST
mocquer mocquons V;SBJV;PL;1;PRS
accointer accointeront V;IND;PL;3;FUT
operer operoient V;IPFV;IND;PL;3;PST;LGSPEC1
cabasser cabassons V;IMP;PL;1
desbarater desbarateroyt V;COND;SG;3;LGSPEC2
aymer aymerons V;IND;PL;1;FUT
aquitter aquitteras V;IND;SG;2;FUT
visiter visita V;PFV;IND;SG;3;PST
desgorger desgorgeoit V;IPFV;IND;SG;3;PST;LGSPEC1
reiecter reiectastes V;PFV;IND;PL;2;PST
soulaiger soulaigez V;SBJV;PL;2;PRS
garder garderent V;PFV;IND;PL;3;PST
soingner soingnons V;IMP;PL;1
courroucer courrouçoyent V;IPFV;IND;PL;3;PST;LGSPEC2
mercyer mercyeroys V;COND;SG;1;LGSPEC2
accomplir accomplissent V;IND;PL;3;PRS
minorer minoroys V;IPFV;IND;SG;1;PST;LGSPEC2
encliner enclinons V;SBJV;PL;1;PRS
deschirer deschirerai V;IND;SG;1;FUT;LGSPEC1
desregler desreglerois V;COND;SG;2;LGSPEC1
rebarber rebarbent V;SBJV;PL;3;PRS
aracher araches V;SBJV;SG;2;PRS
praesenter praesentasse V;IPFV;SBJV;SG;1;PST
revencher revencheriez V;COND;PL;2;LGSPEC1
couster cousterois V;COND;SG;1;LGSPEC1
estrangler estranglez V;SBJV;PL;2;PRS
surnommer surnommes V;IND;SG;2;PRS
desbarater desbaratasses V;IPFV;SBJV;SG;2;PST
inviter invitois V;IPFV;IND;SG;2;PST;LGSPEC1
mortifier mortifiez V;IND;PL;2;PRS
dilater dilatassent V;IPFV;SBJV;PL;3;PST
redrechier redrechois V;IPFV;IND;SG;2;PST;LGSPEC1
plaider plaideray V;IND;SG;1;FUT;LGSPEC2
desheriter desherite V;SBJV;SG;1;PRS
devourer devourois V;IPFV;IND;SG;2;PST;LGSPEC1
deifier deifierai V;IND;SG;1;FUT;LGSPEC1
saluer salueroient V;COND;PL;3;LGSPEC1
ruyner ruyneras V;IND;SG;2;FUT
ieusner ieusnerois V;COND;SG;1;LGSPEC1
manger mangeoys V;IPFV;IND;SG;2;PST;LGSPEC2
respirer respireroys V;COND;SG;1;LGSPEC2
aguyser aguysasse V;IPFV;SBJV;SG;1;PST
macter mactons V;SBJV;PL;1;PRS
mesler mesloit V;IPFV;IND;SG;3;PST;LGSPEC1
trousser trousseront V;IND;PL;3;FUT
essayer essayes V;SBJV;SG;2;PRS
praeparer praeparez V;IND;PL;2;PRS
aguyser aguyse V;IND;SG;1;PRS
empoizonner empoizonnent V;SBJV;PL;3;PRS
desployer desployerez V;IND;PL;2;FUT
retirer retiroient V;IPFV;IND;PL;3;PST;LGSPEC1
accepter acceptassiez V;IPFV;SBJV;PL;2;PST
dancer dança V;PFV;IND;SG;1;PST
rappeller rappellassions V;IPFV;SBJV;PL;1;PST
descharger descharge V;IND;SG;3;PRS
gaigner gaignasse V;IPFV;SBJV;SG;1;PST
enchargier enchargeassiez V;IPFV;SBJV;PL;2;PST
tabuster tabusta V;PFV;IND;SG;1;PST
tournoyer tournoyeroit V;COND;SG;3;LGSPEC1
fluir fluis V;PFV;IND;SG;2;PST
translater translater V;NFIN
enfelonner enfelonner V;NFIN
peser pese V;SBJV;SG;1;PRS
ralier ralieryez V;COND;PL;2;LGSPEC2
riffler riffle V;SBJV;SG;3;PRS
estrangler estrangle V;IND;SG;3;PRS
fouller foulla V;PFV;IND;SG;3;PST
bransler branslerons V;IND;PL;1;FUT
praeparer praepares V;SBJV;SG;2;PRS
ietter iettoyt V;IPFV;IND;SG;3;PST;LGSPEC2
chanter chantoient V;IPFV;IND;PL;3;PST;LGSPEC1
iniurier iniuriois V;IPFV;IND;SG;2;PST;LGSPEC1
piller pillast V;IPFV;SBJV;SG;3;PST
r'asseurer r'asseurassions V;IPFV;SBJV;PL;1;PST
foetter foettez V;IND;PL;2;PRS
disner disnyons V;IPFV;IND;PL;1;PST;LGSPEC2
expuyser expuyses V;IND;SG;2;PRS
amadouer amadouez V;SBJV;PL;2;PRS
reguarder reguarda V;PFV;IND;SG;1;PST
fascher fascherez V;IND;PL;2;FUT
loger logez V;SBJV;PL;2;PRS
cauterizer cauterizassent V;IPFV;SBJV;PL;3;PST
frapper frapperas V;IND;SG;2;FUT
piller pillerons V;IND;PL;1;FUT
robber robboyt V;IPFV;IND;SG;3;PST;LGSPEC2
ottroyer ottroyeray V;IND;SG;1;FUT;LGSPEC2
affier affiast V;IPFV;SBJV;SG;3;PST
eslever eslevoys V;IPFV;IND;SG;2;PST;LGSPEC2
gangler ganglasse V;IPFV;SBJV;SG;1;PST
contrepoiser contrepoisast V;IPFV;SBJV;SG;3;PST
regarder regardyons V;IPFV;IND;PL;1;PST;LGSPEC2
desfaire desferoie V;IND;SG;1;FUT;LGSPEC1
blasphemer blasphemasse V;IPFV;SBJV;SG;1;PST
prosperer prosperer V;NFIN
tabuster tabustyez V;IPFV;IND;PL;2;PST;LGSPEC2
recouvrer recouvrez V;IND;PL;2;PRS
gaigner gaigner V;NFIN
desister desistions V;IPFV;IND;PL;1;PST;LGSPEC1
auser auserez V;IND;PL;2;FUT
esguarer esguaroys V;IPFV;IND;SG;2;PST;LGSPEC2
bayser baysast V;IPFV;SBJV;SG;3;PST
presupposer presupposeriez V;COND;PL;2;LGSPEC1
dampner dampnasses V;IPFV;SBJV;SG;2;PST
pryer pryeront V;IND;PL;3;FUT
menasser menasseryons V;COND;PL;1;LGSPEC2
encharger enchargeray V;IND;SG;1;FUT;LGSPEC2
manger mangerez V;IND;PL;2;FUT
fascher faschons V;IND;PL;1;PRS
tourner tourneroient V;COND;PL;3;LGSPEC1
tabuster tabustastes V;PFV;IND;PL;2;PST
gaspiller gaspilla V;PFV;IND;SG;1;PST
entrempescher s'entrempeschent V;IND;PL;3;PRS
mesler meslasses V;IPFV;SBJV;SG;2;PST
oster ostas V;PFV;IND;SG;2;PST
atourner atournera V;IND;SG;3;FUT
abiurer abiura V;PFV;IND;SG;1;PST
desploier desploierez V;IND;PL;2;FUT
atourner atourneroys V;COND;SG;2;LGSPEC2
compter compteroit V;COND;SG;3;LGSPEC1
importuner importunerons V;IND;PL;1;FUT
trancher tranchoys V;IPFV;IND;SG;2;PST;LGSPEC2
guider guida V;PFV;IND;SG;3;PST
fouragier fourageas V;PFV;IND;SG;2;PST
melancholier melancholieras V;IND;SG;2;FUT
pourmener pourmeneroys V;COND;SG;2;LGSPEC2
desrober desrobent V;SBJV;PL;3;PRS
redoubter redoubtez V;IND;PL;2;PRS
desprisonner desprisonnoys V;IPFV;IND;SG;1;PST;LGSPEC2
estirer estire V;IND;SG;3;PRS
temprer temprons V;SBJV;PL;1;PRS
amadouer amadouoient V;IPFV;IND;PL;3;PST;LGSPEC1
quiter quiteroyent V;COND;PL;3;LGSPEC2
pasturer pastureroyent V;COND;PL;3;LGSPEC2
protester protestent V;IND;PL;3;PRS
gouverner gouvernons V;IND;PL;1;PRS
pourmener pourmenoys V;IPFV;IND;SG;2;PST;LGSPEC2
traveillier traveillions V;IMP;PL;1
riffler rifflois V;IPFV;IND;SG;1;PST;LGSPEC1
ralier ralient V;SBJV;PL;3;PRS
evaporer evaporasmes V;PFV;IND;PL;1;PST
tabuster tabustassiez V;IPFV;SBJV;PL;2;PST
deslyer deslyez V;SBJV;PL;2;PRS
esperonner esperonnoient V;IPFV;IND;PL;3;PST;LGSPEC1
reguarder reguardasses V;IPFV;SBJV;SG;2;PST
empenser empenserions V;COND;PL;1;LGSPEC1
getter gettastes V;PFV;IND;PL;2;PST
esternuer esternue V;IND;SG;3;PRS
resigner resigneront V;IND;PL;3;FUT
r'asseurer r'asseurasse V;IPFV;SBJV;SG;1;PST
presenter presentons V;SBJV;PL;1;PRS
encliner enclinas V;PFV;IND;SG;2;PST
desancrer desancre V;IND;SG;3;PRS
inviter inviteroient V;COND;PL;3;LGSPEC1
combiner combines V;SBJV;SG;2;PRS
commencer commençons V;SBJV;PL;1;PRS
logier logiez V;SBJV;PL;2;PRS
advancer advançoit V;IPFV;IND;SG;3;PST;LGSPEC1
reverer reverent V;IND;PL;3;PRS
operer operent V;IND;PL;3;PRS
resider resident V;SBJV;PL;3;PRS
conseiller conseillez V;SBJV;PL;2;PRS
finer finons V;IND;PL;1;PRS
embausmer embausmons V;IND;PL;1;PRS
impugner impugnoys V;IPFV;IND;SG;2;PST;LGSPEC2
desadvouer desadvoueryons V;COND;PL;1;LGSPEC2
fouragier fouragent V;IND;PL;3;PRS
desbaucher desbauchoyent V;IPFV;IND;PL;3;PST;LGSPEC2
enterrer enterrasmes V;PFV;IND;PL;1;PST
pasturer pasturyons V;IPFV;IND;PL;1;PST;LGSPEC2
esveigler esveiglastes V;PFV;IND;PL;2;PST
persuader persuade V;SBJV;SG;3;PRS
flatter flattent V;IND;PL;3;PRS
deshonnourer deshonnourerez V;IND;PL;2;FUT
chocquer chocquoient V;IPFV;IND;PL;3;PST;LGSPEC1
regarder regarda V;PFV;IND;SG;3;PST
lascher lasche V;IMP;SG;2
remercyer remercyoys V;IPFV;IND;SG;1;PST;LGSPEC2
remercyer remercyes V;IND;SG;2;PRS
bayser baysiez V;IPFV;IND;PL;2;PST;LGSPEC1
saulter saulteray V;IND;SG;1;FUT;LGSPEC2
fortifier fortifieront V;IND;PL;3;FUT
impugner impugner V;NFIN
ozer ozer V;NFIN
acoustumer acoustumassions V;IPFV;SBJV;PL;1;PST
fromenter fromenteroit V;COND;SG;3;LGSPEC1
participer participions V;IPFV;IND;PL;1;PST;LGSPEC1
coniurer coniurasmes V;PFV;IND;PL;1;PST
guider guidasse V;IPFV;SBJV;SG;1;PST
hucher huchent V;SBJV;PL;3;PRS
translater translatoyent V;IPFV;IND;PL;3;PST;LGSPEC2
desfaire desfistes V;PFV;IND;PL;2;PST
recouvrer recouvroys V;IPFV;IND;SG;2;PST;LGSPEC2
remonstrer remonstrassions V;IPFV;SBJV;PL;1;PST
ployer ployassions V;IPFV;SBJV;PL;1;PST
iecter iectois V;IPFV;IND;SG;1;PST;LGSPEC1
poiser poisasse V;IPFV;SBJV;SG;1;PST
advancer advança V;PFV;IND;SG;3;PST
contreroller contrerolleryons V;COND;PL;1;LGSPEC2
habiter habiterions V;COND;PL;1;LGSPEC1
nouer nouoit V;IPFV;IND;SG;3;PST;LGSPEC1
escouiller escouilleroys V;COND;SG;1;LGSPEC2
blesser blessassent V;IPFV;SBJV;PL;3;PST
raporter raportoient V;IPFV;IND;PL;3;PST;LGSPEC1
mouscher mouschera V;IND;SG;3;FUT
perser persasses V;IPFV;SBJV;SG;2;PST
penser pensois V;IPFV;IND;SG;2;PST;LGSPEC1
presumer presumez V;IMP;PL;2
hebergier hebergieroys V;COND;SG;1;LGSPEC2
eslancer eslancez V;IND;PL;2;PRS
empoizonner empoizonniez V;IPFV;IND;PL;2;PST;LGSPEC1
nettoyer nettoyeras V;IND;SG;2;FUT
merveiller merveillerent V;PFV;IND;PL;3;PST
flechir fleschiroyent V;COND;PL;3;LGSPEC2
saulver saulvassions V;IPFV;SBJV;PL;1;PST
desarmer desarmeroient V;COND;PL;3;LGSPEC1
pryer pryons V;SBJV;PL;1;PRS
pisser pisseriez V;COND;PL;2;LGSPEC1
merveiller merveillastes V;PFV;IND;PL;2;PST
mensongier mensongeoyent V;IPFV;IND;PL;3;PST;LGSPEC2
enferrer enferroys V;IPFV;IND;SG;1;PST;LGSPEC2
celebrer celebrons V;IND;PL;1;PRS
descourager descourageassiez V;IPFV;SBJV;PL;2;PST
enseignier enseignoys V;IPFV;IND;SG;1;PST;LGSPEC2
tesmoigner tesmoignes V;SBJV;SG;2;PRS
eschever eschevyez V;IPFV;IND;PL;2;PST;LGSPEC2
retirer retireront V;IND;PL;3;FUT
recouvrer recouvrassent V;IPFV;SBJV;PL;3;PST
esperer espera V;PFV;IND;SG;3;PST
resver resvoyt V;IPFV;IND;SG;3;PST;LGSPEC2
lescher lesche V;SBJV;SG;1;PRS
blasphemer blasphement V;SBJV;PL;3;PRS
achever achevois V;IPFV;IND;SG;1;PST;LGSPEC1
affamer affamez V;IND;PL;2;PRS
cesser cesse V;IND;SG;1;PRS
proclamer proclamerez V;IND;PL;2;FUT
fouller foulle V;SBJV;SG;3;PRS
recorder recordois V;IPFV;IND;SG;1;PST;LGSPEC1
pourchasser pourchasse V;SBJV;SG;1;PRS
entrer entreroient V;COND;PL;3;LGSPEC1
humilier humilieroyt V;COND;SG;3;LGSPEC2
interpreter interpretoyent V;IPFV;IND;PL;3;PST;LGSPEC2
charger charger V;NFIN
desnouer desnoueray V;IND;SG;1;FUT;LGSPEC2
delivrer delivrerai V;IND;SG;1;FUT;LGSPEC1
desrouter desroutassions V;IPFV;SBJV;PL;1;PST
prosperer prospere V;IND;SG;3;PRS
frapper frapperoient V;COND;PL;3;LGSPEC1
espoventer espoventerons V;IND;PL;1;FUT
croniquier croniquiyez V;IPFV;IND;PL;2;PST;LGSPEC2
encommencer encommenceroys V;COND;SG;2;LGSPEC2
laisser laissasses V;IPFV;SBJV;SG;2;PST
soucyer soucyons V;IMP;PL;1
enorter enorteryez V;COND;PL;2;LGSPEC2
desgorger desgorgeons V;SBJV;PL;1;PRS
reguarder reguardyons V;IPFV;IND;PL;1;PST;LGSPEC2
engroisser engroissasses V;IPFV;SBJV;SG;2;PST
desyrer desyreras V;IND;SG;2;FUT
pecher pecheroys V;COND;SG;1;LGSPEC2
despuceller despuceller V;NFIN
exposer exposerent V;PFV;IND;PL;3;PST
assister assistasse V;IPFV;SBJV;SG;1;PST
appuier appuions V;IND;PL;1;PRS
espouser espouseroit V;COND;SG;3;LGSPEC1
buchier buchierons V;IND;PL;1;FUT
ieusner ieusnoyt V;IPFV;IND;SG;3;PST;LGSPEC2
engendrer engendrasmes V;PFV;IND;PL;1;PST
lyer lyez V;IND;PL;2;PRS
penser pensyez V;IPFV;IND;PL;2;PST;LGSPEC2
estoffer estofferois V;COND;SG;2;LGSPEC1
manouvrer manouvreroyt V;COND;SG;3;LGSPEC2
louer louoys V;IPFV;IND;SG;2;PST;LGSPEC2
tremper trempoys V;IPFV;IND;SG;2;PST;LGSPEC2
desbaucher desbauchois V;IPFV;IND;SG;2;PST;LGSPEC1
celebrer celebryons V;IPFV;IND;PL;1;PST;LGSPEC2
louer loueroient V;COND;PL;3;LGSPEC1
nouer nouez V;IMP;PL;2
nouer noues V;IND;SG;2;PRS
evaporer evaporas V;PFV;IND;SG;2;PST
exstirper exstirpoient V;IPFV;IND;PL;3;PST;LGSPEC1
essayer essayons V;IND;PL;1;PRS
recommander recommandoyent V;IPFV;IND;PL;3;PST;LGSPEC2
eschieller escielleroyt V;COND;SG;3;LGSPEC2
mucer mucerent V;PFV;IND;PL;3;PST
empenser empensez V;SBJV;PL;2;PRS
saulver saulverons V;IND;PL;1;FUT
iurer iureroyent V;COND;PL;3;LGSPEC2
retirer retirons V;IND;PL;1;PRS
eslancer eslançons V;SBJV;PL;1;PRS
logier logiera V;IND;SG;3;FUT
gouverner gouvernes V;SBJV;SG;2;PRS
esparpiller esparpillerez V;IND;PL;2;FUT
fomenter fomentoyent V;IPFV;IND;PL;3;PST;LGSPEC2
espoventer espoventions V;IPFV;IND;PL;1;PST;LGSPEC1
delivrer delivrons V;IMP;PL;1
hebergier hebergieroient V;COND;PL;3;LGSPEC1
pourmener pourmene V;SBJV;SG;3;PRS
toquer toque V;IND;SG;1;PRS
demander demanderoyent V;COND;PL;3;LGSPEC2
preferer preferent V;SBJV;PL;3;PRS
quester questast V;IPFV;SBJV;SG;3;PST
communicquer communicquerent V;PFV;IND;PL;3;PST
expeller expelliez V;IPFV;IND;PL;2;PST;LGSPEC1
merveiller merveilleroient V;COND;PL;3;LGSPEC1
recuperer recupera V;PFV;IND;SG;1;PST
espoventer espoventeriez V;COND;PL;2;LGSPEC1
enfelonner enfelonneroyt V;COND;SG;3;LGSPEC2
sceller scellons V;IMP;PL;1
confermer confermois V;IPFV;IND;SG;2;PST;LGSPEC1
temprer temprer V;NFIN
traitter traitter V;NFIN
ieuner ieunois V;IPFV;IND;SG;2;PST;LGSPEC1
bobeliner bobelinez V;IND;PL;2;PRS
buchier buchieront V;IND;PL;3;FUT
houssepillier houssepillastes V;PFV;IND;PL;2;PST
provocquer provocquast V;IPFV;SBJV;SG;3;PST
renfler renflons V;SBJV;PL;1;PRS
saulver saulvoient V;IPFV;IND;PL;3;PST;LGSPEC1
mehaignier mehaignieriez V;COND;PL;2;LGSPEC1
deslacer delaceroys V;COND;SG;2;LGSPEC2
quereler querelyez V;IPFV;IND;PL;2;PST;LGSPEC2
esloigner esloignas V;PFV;IND;SG;2;PST
espier espie V;IND;SG;3;PRS
ayder aydasmes V;PFV;IND;PL;1;PST
nouer noue V;SBJV;SG;1;PRS
proffiter proffiterions V;COND;PL;1;LGSPEC1
flechir fleschissois V;IPFV;IND;SG;1;PST;LGSPEC1
invader invaderoyent V;COND;PL;3;LGSPEC2
descharger deschargerions V;COND;PL;1;LGSPEC1
esplucher espluchiez V;IPFV;IND;PL;2;PST;LGSPEC1
iolyer iolyois V;IPFV;IND;SG;2;PST;LGSPEC1
aloser aloseroyent V;COND;PL;3;LGSPEC2
reserver reserverent V;PFV;IND;PL;3;PST
desployer desployes V;IND;SG;2;PRS
fascher faschez V;SBJV;PL;2;PRS
desister desistera V;IND;SG;3;FUT
geller gellons V;IMP;PL;1
picquier picquent V;SBJV;PL;3;PRS
passer passons V;SBJV;PL;1;PRS
oultrager oultrageray V;IND;SG;1;FUT;LGSPEC2
esvanter esvanterent V;PFV;IND;PL;3;PST
esclairer esclairerions V;COND;PL;1;LGSPEC1
delivrer delivroient V;IPFV;IND;PL;3;PST;LGSPEC1
suffocquer suffocqueriez V;COND;PL;2;LGSPEC1
noter notoys V;IPFV;IND;SG;2;PST;LGSPEC2
avanchier avanchieront V;IND;PL;3;FUT
excuser excusez V;SBJV;PL;2;PRS
geller gelleray V;IND;SG;1;FUT;LGSPEC2
enseignier enseigneroyt V;COND;SG;3;LGSPEC2
possesser possesserai V;IND;SG;1;FUT;LGSPEC1
avaller avalles V;IND;SG;2;PRS
cryer cryeroit V;COND;SG;3;LGSPEC1
representer representasmes V;PFV;IND;PL;1;PST
aerer aerast V;IPFV;SBJV;SG;3;PST
impugner impugnoient V;IPFV;IND;PL;3;PST;LGSPEC1
enconcher enconche V;IND;SG;3;PRS
marcher marcha V;PFV;IND;SG;3;PST
desployer desployassions V;IPFV;SBJV;PL;1;PST
retirer retirois V;IPFV;IND;SG;1;PST;LGSPEC1
estrangler estranglera V;IND;SG;3;FUT
avaller avaller V;NFIN
amadouer amadoue V;IND;SG;1;PRS
bancqueter bancqueteriez V;COND;PL;2;LGSPEC1
desmonter desmontons V;IND;PL;1;PRS
doubter doubteras V;IND;SG;2;FUT
cacher cache V;SBJV;SG;1;PRS
demesler demeslerois V;COND;SG;2;LGSPEC1
vengier vengea V;PFV;IND;SG;3;PST
toucher toucheroys V;COND;SG;1;LGSPEC2
approuvender approuvendassions V;IPFV;SBJV;PL;1;PST
declairer declaire V;IND;SG;1;PRS
pourchasser pourchasserez V;IND;PL;2;FUT
loger logerons V;IND;PL;1;FUT
soulaiger soulaigyons V;IPFV;IND;PL;1;PST;LGSPEC2
avoir ayez V;SBJV;PL;2;PRS
huer huons V;SBJV;PL;1;PRS
engendrer engendrassiez V;IPFV;SBJV;PL;2;PST
rejecter rejectassions V;IPFV;SBJV;PL;1;PST
desadvouer desadvoueras V;IND;SG;2;FUT
poiser poisent V;SBJV;PL;3;PRS
embausmer embausmera V;IND;SG;3;FUT
esgratigner esgratignois V;IPFV;IND;SG;2;PST;LGSPEC1
atourner atournastes V;PFV;IND;PL;2;PST
mescler mescloys V;IPFV;IND;SG;1;PST;LGSPEC2
redrechier redrechast V;IPFV;SBJV;SG;3;PST
brusler bruslasse V;IPFV;SBJV;SG;1;PST
couster coustassent V;IPFV;SBJV;PL;3;PST
tuer tuoyt V;IPFV;IND;SG;3;PST;LGSPEC2
adiouster adiousteroys V;COND;SG;2;LGSPEC2
chevauchier chevauchoys V;IPFV;IND;SG;2;PST;LGSPEC2
estudier estudieroyt V;COND;SG;3;LGSPEC2
tourmenter tourmenteryons V;COND;PL;1;LGSPEC2
laidenger laidengeront V;IND;PL;3;FUT
nombrer nombrerez V;IND;PL;2;FUT
baiser baises V;IND;SG;2;PRS
desmonter desmontons V;IMP;PL;1
desmeler desmelerent V;PFV;IND;PL;3;PST
ordonner ordonnassent V;IPFV;SBJV;PL;3;PST
veigler veiglez V;IND;PL;2;PRS
croniquier croniquier V;NFIN
depescher depeschions V;IPFV;IND;PL;1;PST;LGSPEC1
estoffer estoffera V;IND;SG;3;FUT
esmayer esmayasmes V;PFV;IND;PL;1;PST
compter compteray V;IND;SG;1;FUT;LGSPEC2
brusler brusleroys V;COND;SG;1;LGSPEC2
detester detesteroys V;COND;SG;2;LGSPEC2
gouverner gouvernons V;SBJV;PL;1;PRS
estouffer estoufferoys V;COND;SG;1;LGSPEC2
affier affiez V;SBJV;PL;2;PRS
entrencontrer nous entrencontrasmes V;PFV;IND;PL;1;PST
racompter racomptent V;IND;PL;3;PRS
cacher cachassiez V;IPFV;SBJV;PL;2;PST
transgloutir transgloutiroys V;COND;SG;1;LGSPEC2
prier prierez V;IND;PL;2;FUT
aerer aererois V;COND;SG;2;LGSPEC1
aler alast V;IPFV;SBJV;SG;3;PST
soulaiger soulaigeas V;PFV;IND;SG;2;PST
coucher coucheriez V;COND;PL;2;LGSPEC1
chercher chercherois V;COND;SG;2;LGSPEC1
protester proteste V;IMP;SG;2
cabasser cabassas V;PFV;IND;SG;2;PST
escryer escryeras V;IND;SG;2;FUT
regarder regarderoys V;COND;SG;2;LGSPEC2
desrobber desrobbes V;SBJV;SG;2;PRS
ymaginer ymaginerent V;PFV;IND;PL;3;PST
quester questerai V;IND;SG;1;FUT;LGSPEC1
buchier buchiez V;IPFV;IND;PL;2;PST;LGSPEC1
adviser advisasse V;IPFV;SBJV;SG;1;PST
courrouchier courrouchasse V;IPFV;SBJV;SG;1;PST
evaporer evaporeriez V;COND;PL;2;LGSPEC1
veigler veigle V;SBJV;SG;1;PRS
ayder ayde V;IMP;SG;2
esmayer esmayoys V;IPFV;IND;SG;1;PST;LGSPEC2
desloger deslogyez V;IPFV;IND;PL;2;PST;LGSPEC2
tromper trompe V;IND;SG;1;PRS
fumer fumois V;IPFV;IND;SG;2;PST;LGSPEC1
esventer esventerions V;COND;PL;1;LGSPEC1
resister resister V;NFIN
recouvrer recouvrois V;IPFV;IND;SG;1;PST;LGSPEC1
apatir apatist V;IPFV;SBJV;SG;3;PST
gaber gabera V;IND;SG;3;FUT
esveigler esveigliez V;IPFV;IND;PL;2;PST;LGSPEC1
reietter reietterent V;PFV;IND;PL;3;PST
aymer aymerez V;IND;PL;2;FUT
voller volleroys V;COND;SG;2;LGSPEC2
adiouster adiousterai V;IND;SG;1;FUT;LGSPEC1
deschainer deschainions V;IPFV;IND;PL;1;PST;LGSPEC1
mectre mectroys V;COND;SG;2;LGSPEC2
chercher chercha V;PFV;IND;SG;3;PST
alimenter alimente V;IND;SG;1;PRS
adiouster adiousteroit V;COND;SG;3;LGSPEC1
abayer abaya V;PFV;IND;SG;3;PST
fouller foulleroient V;COND;PL;3;LGSPEC1
invader invaderoys V;COND;SG;1;LGSPEC2
chercher chercheront V;IND;PL;3;FUT
mescler mescloient V;IPFV;IND;PL;3;PST;LGSPEC1
navrer navrent V;SBJV;PL;3;PRS
houer houoys V;IPFV;IND;SG;1;PST;LGSPEC2
detester detestoys V;IPFV;IND;SG;2;PST;LGSPEC2
condescendre condescendissiens V;IPFV;SBJV;PL;1;PST;LGSPEC2
resider residerons V;IND;PL;1;FUT
cabasser cabassoyt V;IPFV;IND;SG;3;PST;LGSPEC2
assieger assiegeroient V;COND;PL;3;LGSPEC1
abayer abayons V;IND;PL;1;PRS
macter macterois V;COND;SG;2;LGSPEC1
esguarer esguarerois V;COND;SG;2;LGSPEC1
proclamer proclamoys V;IPFV;IND;SG;1;PST;LGSPEC2
enfelonner enfelonneryons V;COND;PL;1;LGSPEC2
amer amer V;NFIN
escarter escartoys V;IPFV;IND;SG;2;PST;LGSPEC2
iecter iecter V;NFIN
estonner estonnassiez V;IPFV;SBJV;PL;2;PST
adviser advisions V;IPFV;IND;PL;1;PST;LGSPEC1
rotter rotterois V;COND;SG;1;LGSPEC1
expuyser expuyses V;SBJV;SG;2;PRS
nouer nouerois V;COND;SG;1;LGSPEC1
enconcher enconcherois V;COND;SG;2;LGSPEC1
destabler destabler V;NFIN
ayder aydoit V;IPFV;IND;SG;3;PST;LGSPEC1
guarder guarderez V;IND;PL;2;FUT
baisler baislasses V;IPFV;SBJV;SG;2;PST
tomber tombyons V;IPFV;IND;PL;1;PST;LGSPEC2
aquitter aquitteroyent V;COND;PL;3;LGSPEC2
proteger proteges V;IND;SG;2;PRS
croniquier croniquie V;IMP;SG;2
entrefaire entreferions V;COND;PL;1
preferer preferoyt V;IPFV;IND;SG;3;PST;LGSPEC2
lescher lesche V;IND;SG;3;PRS
esmerveillier esmerveillyons V;IPFV;IND;PL;1;PST;LGSPEC2
subiuguier subiuguiez V;IND;PL;2;PRS
executer executions V;IPFV;IND;PL;1;PST;LGSPEC1
preter pretois V;IPFV;IND;SG;1;PST;LGSPEC1
eschieller esciellent V;IND;PL;3;PRS
renfler renfleroyent V;COND;PL;3;LGSPEC2
iniurier iniurieras V;IND;SG;2;FUT
desconseiller desconseilloys V;IPFV;IND;SG;2;PST;LGSPEC2
galoper galoperiez V;COND;PL;2;LGSPEC1
soingner soingnerez V;IND;PL;2;FUT
delivrer delivreroys V;COND;SG;2;LGSPEC2
celebrer celebrerions V;COND;PL;1;LGSPEC1
participer participoit V;IPFV;IND;SG;3;PST;LGSPEC1
enorter enorterai V;IND;SG;1;FUT;LGSPEC1
buchier buche V;IND;SG;1;PRS
rappeller rappellez V;SBJV;PL;2;PRS
honnourer honnourerai V;IND;SG;1;FUT;LGSPEC1
viser visasmes V;PFV;IND;PL;1;PST
leicher leicherions V;COND;PL;1;LGSPEC1
espoventer espoventasses V;IPFV;SBJV;SG;2;PST
laidenger laidengeons V;IMP;PL;1
nouer nouent V;SBJV;PL;3;PRS
confermer conferme V;IMP;SG;2
empieger empiegez V;SBJV;PL;2;PRS
alimenter alimentera V;IND;SG;3;FUT
effreer effreast V;IPFV;SBJV;SG;3;PST
ployer ployeroys V;COND;SG;2;LGSPEC2
entreruyner s'entreruynent V;IND;PL;3;PRS
navrer navrons V;SBJV;PL;1;PRS
alimenter alimenteroyent V;COND;PL;3;LGSPEC2
essayer essayois V;IPFV;IND;SG;1;PST;LGSPEC1
enhorter enhortassiez V;IPFV;SBJV;PL;2;PST
merveiller merveillast V;IPFV;SBJV;SG;3;PST
reverer reverez V;IND;PL;2;PRS
participer participyons V;IPFV;IND;PL;1;PST;LGSPEC2
mocquer mocque V;IND;SG;1;PRS
marcher marcherez V;IND;PL;2;FUT
tramper tramperois V;COND;SG;1;LGSPEC1
estourdir estourdira V;IND;SG;3;FUT
rouiller rouilleroyent V;COND;PL;3;LGSPEC2
aloser aloserois V;COND;SG;2;LGSPEC1
estonner estonnasses V;IPFV;SBJV;SG;2;PST
descourager descourageryons V;COND;PL;1;LGSPEC2
racointer racointerions V;COND;PL;1;LGSPEC1
coucher coucheroys V;COND;SG;1;LGSPEC2
courouchier courouchiera V;IND;SG;3;FUT
creancer creance V;IND;SG;1;PRS
ayder ayderent V;PFV;IND;PL;3;PST
derver dervas V;PFV;IND;SG;2;PST
empieger empiege V;SBJV;SG;1;PRS
mucer mucez V;IMP;PL;2
couster coustez V;SBJV;PL;2;PRS
contribuer contribuerons V;IND;PL;1;FUT
gaspiller gaspillois V;IPFV;IND;SG;2;PST;LGSPEC1
esguarer esguareroyt V;COND;SG;3;LGSPEC2
plaider plaidera V;IND;SG;3;FUT
declairer declaireront V;IND;PL;3;FUT
praeparer praepare V;IND;SG;1;PRS
enterrer enterreray V;IND;SG;1;FUT;LGSPEC2
inviter invites V;IND;SG;2;PRS
despossesser despossessyons V;IPFV;IND;PL;1;PST;LGSPEC2
deifier deifiyons V;IPFV;IND;PL;1;PST;LGSPEC2
edifier edifierai V;IND;SG;1;FUT;LGSPEC1
esternuer esternue V;SBJV;SG;1;PRS
buchier buchas V;PFV;IND;SG;2;PST
monstrer monstroyt V;IPFV;IND;SG;3;PST;LGSPEC2
chanter chantoys V;IPFV;IND;SG;2;PST;LGSPEC2
aterminer aterminasse V;IPFV;SBJV;SG;1;PST
soulaiger soulaigeast V;IPFV;SBJV;SG;3;PST
praesenter praesenteroit V;COND;SG;3;LGSPEC1
seeller seellyez V;IPFV;IND;PL;2;PST;LGSPEC2
tumber tumbons V;IMP;PL;1
mehaignier mehaigne V;IND;SG;1;PRS
traicter tracteroyent V;COND;PL;3;LGSPEC2
foetter foettassent V;IPFV;SBJV;PL;3;PST
esquacher esquachez V;IND;PL;2;PRS
fascher faschent V;SBJV;PL;3;PRS
evaporer evaporyons V;IPFV;IND;PL;1;PST;LGSPEC2
faire faisons V;IMP;PL;1
reverer reverois V;IPFV;IND;SG;1;PST;LGSPEC1
escumer escumoient V;IPFV;IND;PL;3;PST;LGSPEC1
desployer desployons V;SBJV;PL;1;PRS
dampner dampner V;NFIN
encharger encharge V;IND;SG;3;PRS
estoffer estoffe V;SBJV;SG;1;PRS
esprouver esprouva V;PFV;IND;SG;3;PST
retirer retireryez V;COND;PL;2;LGSPEC2
iurer iura V;PFV;IND;SG;1;PST
pocher pocheroyent V;COND;PL;3;LGSPEC2
recuperer recuperiez V;IPFV;IND;PL;2;PST;LGSPEC1
picquer picquassiez V;IPFV;SBJV;PL;2;PST
ronfler ronfloys V;IPFV;IND;SG;1;PST;LGSPEC2
habiter habitasse V;IPFV;SBJV;SG;1;PST
mescler mesclons V;IMP;PL;1
pourpenser pourpense V;SBJV;SG;3;PRS
racompter racomptassions V;IPFV;SBJV;PL;1;PST
couster coustyons V;IPFV;IND;PL;1;PST;LGSPEC2
desbaucher desbaucheront V;IND;PL;3;FUT
mesler mesleroient V;COND;PL;3;LGSPEC1
aerer aeras V;PFV;IND;SG;2;PST
pourpenser pourpensoyent V;IPFV;IND;PL;3;PST;LGSPEC2
regarder regardoys V;IPFV;IND;SG;2;PST;LGSPEC2
accointer accointe V;SBJV;SG;1;PRS
fumer fumeray V;IND;SG;1;FUT;LGSPEC2
eschauffer eschauffe V;IND;SG;1;PRS
monstrer monstrer V;NFIN
desnouer desnouent V;IND;PL;3;PRS
laisser laisseray V;IND;SG;1;FUT;LGSPEC2
alonger alongeray V;IND;SG;1;FUT;LGSPEC2
chocquer chocques V;IND;SG;2;PRS
chevauchier chevauchierez V;IND;PL;2;FUT
quitter quittons V;SBJV;PL;1;PRS
trancher trancheryez V;COND;PL;2;LGSPEC2
esveiller esveille V;SBJV;SG;1;PRS
rebarber rebarberoys V;COND;SG;2;LGSPEC2
descourager descouragerons V;IND;PL;1;FUT
desgorger desgorgerez V;IND;PL;2;FUT
commencer commencerai V;IND;SG;1;FUT;LGSPEC1
pausmer pausmois V;IPFV;IND;SG;1;PST;LGSPEC1
enferrer enferrasmes V;PFV;IND;PL;1;PST
entituler entituleras V;IND;SG;2;FUT
esperer esperassiez V;IPFV;SBJV;PL;2;PST
iolyer iolyez V;IMP;PL;2
estinceller estincelleryez V;COND;PL;2;LGSPEC2
trembler tremblons V;IMP;PL;1
trousser troussois V;IPFV;IND;SG;2;PST;LGSPEC1
esguarer esguarasmes V;PFV;IND;PL;1;PST
acquiter acquiteras V;IND;SG;2;FUT
espier espioit V;IPFV;IND;SG;3;PST;LGSPEC1
deschevaucher deschevaucheroit V;COND;SG;3;LGSPEC1
encommencer encommenceroit V;COND;SG;3;LGSPEC1
posseder posseder V;NFIN
surnommer surnommeroient V;COND;PL;3;LGSPEC1
baster bastassiez V;IPFV;SBJV;PL;2;PST
approuvender approuvendoyt V;IPFV;IND;SG;3;PST;LGSPEC2
chanter chantez V;IND;PL;2;PRS
escouter escoute V;SBJV;SG;1;PRS
trembler trembles V;SBJV;SG;2;PRS
approuvender approuvendoient V;IPFV;IND;PL;3;PST;LGSPEC1
destabler destablerions V;COND;PL;1;LGSPEC1
posseder possede V;SBJV;SG;3;PRS
ayder aydoys V;IPFV;IND;SG;2;PST;LGSPEC2
supposer supposasses V;IPFV;SBJV;SG;2;PST
celer celas V;PFV;IND;SG;2;PST
esbaucher esbauchoit V;IPFV;IND;SG;3;PST;LGSPEC1
surnommer surnommeryez V;COND;PL;2;LGSPEC2
amer amoys V;IPFV;IND;SG;2;PST;LGSPEC2
estimer estimez V;SBJV;PL;2;PRS
desadvouer desadvoue V;IND;SG;1;PRS
finer finoyent V;IPFV;IND;PL;3;PST;LGSPEC2
galoper galopasse V;IPFV;SBJV;SG;1;PST
desmonter desmontoys V;IPFV;IND;SG;2;PST;LGSPEC2
prier prier V;NFIN
traitter traitteroyent V;COND;PL;3;LGSPEC2
manouvrer manouvrois V;IPFV;IND;SG;1;PST;LGSPEC1
esclairer esclairyez V;IPFV;IND;PL;2;PST;LGSPEC2
rejecter rejectons V;IMP;PL;1
esbaucher esbauche V;IND;SG;3;PRS
acquiter acquiteray V;IND;SG;1;FUT;LGSPEC2
desrouter desrouterai V;IND;SG;1;FUT;LGSPEC1
aler alas V;PFV;IND;SG;2;PST
deschevaucher deschevaucha V;PFV;IND;SG;1;PST
jecter jectasmes V;PFV;IND;PL;1;PST
separer separez V;SBJV;PL;2;PRS
aracher arachasse V;IPFV;SBJV;SG;1;PST
picquer picquiez V;IPFV;IND;PL;2;PST;LGSPEC1
delaisser delaissons V;IND;PL;1;PRS
proffiter proffitez V;SBJV;PL;2;PRS
humilier humiliions V;IPFV;IND;PL;1;PST;LGSPEC1
poiser poisoient V;IPFV;IND;PL;3;PST;LGSPEC1
destabler destabloyt V;IPFV;IND;SG;3;PST;LGSPEC2
alimenter alimentoient V;IPFV;IND;PL;3;PST;LGSPEC1
saulver saulvions V;IPFV;IND;PL;1;PST;LGSPEC1
arriver arrive V;IND;SG;3;PRS
repraesenter repraesente V;IMP;SG;2
temprer temprent V;IND;PL;3;PRS
recuperer recuperast V;IPFV;SBJV;SG;3;PST
resumer resumois V;IPFV;IND;SG;1;PST;LGSPEC1
desregler desregleray V;IND;SG;1;FUT;LGSPEC2
subiuger subiugeoit V;IPFV;IND;SG;3;PST;LGSPEC1
tesmoigner tesmoigne V;IND;SG;1;PRS
houssepillier houssepillieray V;IND;SG;1;FUT;LGSPEC2
estinceller estincelleras V;IND;SG;2;FUT
delivrer delivreroient V;COND;PL;3;LGSPEC1
picquer picquastes V;PFV;IND;PL;2;PST
cauterizer cauterizyez V;IPFV;IND;PL;2;PST;LGSPEC2
soulaiger soulaigeons V;IMP;PL;1
apuyer apuye V;IND;SG;3;PRS
deifier deifiions V;IPFV;IND;PL;1;PST;LGSPEC1
apuyer apuyasse V;IPFV;SBJV;SG;1;PST
seeller seellez V;IMP;PL;2
contregarder contregarderois V;COND;SG;2;LGSPEC1
avaller avalleroyent V;COND;PL;3;LGSPEC2
soupper souppiez V;IPFV;IND;PL;2;PST;LGSPEC1
mesler meslera V;IND;SG;3;FUT
auser ausons V;IMP;PL;1
ruyner ruynerois V;COND;SG;1;LGSPEC1
foetter foette V;SBJV;SG;3;PRS
oster ostassiez V;IPFV;SBJV;PL;2;PST
esgarer esgara V;PFV;IND;SG;1;PST
escouter escouteras V;IND;SG;2;FUT
contregarder contregarderiez V;COND;PL;2;LGSPEC1
enseignier enseigneront V;IND;PL;3;FUT
advouer advouassions V;IPFV;SBJV;PL;1;PST
desister desista V;PFV;IND;SG;3;PST
heurter heurte V;IMP;SG;2
trousser trousse V;SBJV;SG;3;PRS
communicquer communicquas V;PFV;IND;SG;2;PST
entrehurter nous entrehurtassions V;IPFV;SBJV;PL;1;PST
remonstrer remonstroit V;IPFV;IND;SG;3;PST;LGSPEC1
enferrer enferrent V;IND;PL;3;PRS
compter comptas V;PFV;IND;SG;2;PST
empieger empiegez V;IMP;PL;2
possesser possessois V;IPFV;IND;SG;1;PST;LGSPEC1
expeller expelle V;SBJV;SG;3;PRS
possesser possessoys V;IPFV;IND;SG;2;PST;LGSPEC2
despencer despenceroyent V;COND;PL;3;LGSPEC2
empescher empescheroys V;COND;SG;1;LGSPEC2
baptizer baptiza V;PFV;IND;SG;1;PST
eslancer eslancer V;NFIN
soucyer soucye V;SBJV;SG;1;PRS
gangler ganglassiez V;IPFV;SBJV;PL;2;PST
traveillier traveillierai V;IND;SG;1;FUT;LGSPEC1
empescher empeschoys V;IPFV;IND;SG;1;PST;LGSPEC2
reguarder reguardassions V;IPFV;SBJV;PL;1;PST
expeller expellerons V;IND;PL;1;FUT
tocquer tocquassiez V;IPFV;SBJV;PL;2;PST
confermer confermoys V;IPFV;IND;SG;1;PST;LGSPEC2
inquieter inquietoys V;IPFV;IND;SG;2;PST;LGSPEC2
soingner soingnerai V;IND;SG;1;FUT;LGSPEC1
devourer devoure V;SBJV;SG;3;PRS
delaisser delaissons V;IMP;PL;1
baptiser baptisoyent V;IPFV;IND;PL;3;PST;LGSPEC2
auser ausast V;IPFV;SBJV;SG;3;PST
enconvenencier enconvenenciez V;SBJV;PL;2;PRS
deffier deffient V;SBJV;PL;3;PRS
prester prestasmes V;PFV;IND;PL;1;PST
courroucer courrouçassent V;IPFV;SBJV;PL;3;PST
chevauchier chevauchoyt V;IPFV;IND;SG;3;PST;LGSPEC2
picquier picquasmes V;PFV;IND;PL;1;PST
pasturer pasturerez V;IND;PL;2;FUT
iecter iecterions V;COND;PL;1;LGSPEC1
fortiffier fortiffiois V;IPFV;IND;SG;2;PST;LGSPEC1
asseurer asseurassent V;IPFV;SBJV;PL;3;PST
employer employeras V;IND;SG;2;FUT
presupposer presupposes V;SBJV;SG;2;PRS
enfelonner enfelonne V;SBJV;SG;1;PRS
soucyer soucyoyent V;IPFV;IND;PL;3;PST;LGSPEC2
desver desveroys V;COND;SG;1;LGSPEC2
croniquier croniquieroys V;COND;SG;1;LGSPEC2
sceller scellas V;PFV;IND;SG;2;PST
merveiller merveilloys V;IPFV;IND;SG;1;PST;LGSPEC2
tramper trampyez V;IPFV;IND;PL;2;PST;LGSPEC2
voller vollasse V;IPFV;SBJV;SG;1;PST
marcher marcheroient V;COND;PL;3;LGSPEC1
escouter escouteroys V;COND;SG;2;LGSPEC2
ymaginer ymaginoyent V;IPFV;IND;PL;3;PST;LGSPEC2
aguyser aguyseras V;IND;SG;2;FUT
destabler destable V;SBJV;SG;3;PRS
cesser cesseroys V;COND;SG;1;LGSPEC2
combiner combinasse V;IPFV;SBJV;SG;1;PST
esbaucher esbaucha V;PFV;IND;SG;3;PST
acquiter acquitons V;SBJV;PL;1;PRS
tyrer tyrez V;IND;PL;2;PRS
praesider praesideroys V;COND;SG;1;LGSPEC2
negotier negotiez V;IMP;PL;2
descharger deschargeroyent V;COND;PL;3;LGSPEC2
fouller foulliez V;IPFV;IND;PL;2;PST;LGSPEC1
occuper occupes V;IND;SG;2;PRS
confermer conferme V;IND;SG;1;PRS
tramper trampent V;SBJV;PL;3;PRS
provocquer provocquoys V;IPFV;IND;SG;1;PST;LGSPEC2
recommander recommandez V;IND;PL;2;PRS
approuchier approuchieryons V;COND;PL;1;LGSPEC2
ralier raliasmes V;PFV;IND;PL;1;PST
denunchier denunchions V;IND;PL;1;PRS
occurrer occurreryez V;COND;PL;2;LGSPEC2
mocquer mocquoys V;IPFV;IND;SG;2;PST;LGSPEC2
esmerveillier esmerveillas V;PFV;IND;SG;2;PST
deifier deifioys V;IPFV;IND;SG;1;PST;LGSPEC2
baisler baisle V;IMP;SG;2
houer houerions V;COND;PL;1;LGSPEC1
foetter foetteryons V;COND;PL;1;LGSPEC2
mocquer mocqueras V;IND;SG;2;FUT
hostoier hostoioys V;IPFV;IND;SG;1;PST;LGSPEC2
bransler bransla V;PFV;IND;SG;1;PST
expuyser expuysoit V;IPFV;IND;SG;3;PST;LGSPEC1
preferer preferoyent V;IPFV;IND;PL;3;PST;LGSPEC2
doubter doubtastes V;PFV;IND;PL;2;PST
payer payent V;SBJV;PL;3;PRS
iolyer iolyoient V;IPFV;IND;PL;3;PST;LGSPEC1
praesenter praesente V;IMP;SG;2
cuyder cuydois V;IPFV;IND;SG;1;PST;LGSPEC1
gangler ganglois V;IPFV;IND;SG;1;PST;LGSPEC1
finer finast V;IPFV;SBJV;SG;3;PST
bayser baysasse V;IPFV;SBJV;SG;1;PST
excuser excusastes V;PFV;IND;PL;2;PST
uriner urinoit V;IPFV;IND;SG;3;PST;LGSPEC1
soingner soingne V;IND;SG;1;PRS
vuider vuida V;PFV;IND;SG;3;PST
effreer effreeriez V;COND;PL;2;LGSPEC1
espoventer espoventois V;IPFV;IND;SG;1;PST;LGSPEC1
esparpiller esparpillasses V;IPFV;SBJV;SG;2;PST
baiser baisassions V;IPFV;SBJV;PL;1;PST
estinceller estincelleriez V;COND;PL;2;LGSPEC1
payer payeroyt V;COND;SG;3;LGSPEC2
aloser aloseryez V;COND;PL;2;LGSPEC2
subiuger subiuge V;IND;SG;3;PRS
trancher trancheriez V;COND;PL;2;LGSPEC1
embausmer embausmasse V;IPFV;SBJV;SG;1;PST
deschainer deschainerions V;COND;PL;1;LGSPEC1
accomplir accomplisse V;SBJV;SG;3;PRS
presenter presenta V;PFV;IND;SG;3;PST
cesser cessons V;SBJV;PL;1;PRS
esloigner esloignyez V;IPFV;IND;PL;2;PST;LGSPEC2
tourmenter tourmenteras V;IND;SG;2;FUT
jecter jectent V;IND;PL;3;PRS
descouchier descouchoys V;IPFV;IND;SG;2;PST;LGSPEC2
verifier verifie V;SBJV;SG;3;PRS
despossesser despossesse V;IMP;SG;2
deschirer deschiryons V;IPFV;IND;PL;1;PST;LGSPEC2
remonstrer remonstreroyt V;COND;SG;3;LGSPEC2
viser visoys V;IPFV;IND;SG;1;PST;LGSPEC2
desregler desregleriez V;COND;PL;2;LGSPEC1
gaster gastons V;IMP;PL;1
approuchier approuchierez V;IND;PL;2;FUT
accepter acceptoient V;IPFV;IND;PL;3;PST;LGSPEC1
esprouver esprouverois V;COND;SG;1;LGSPEC1
transgloutir transgloutis V;PFV;IND;SG;2;PST
faire facions V;SBJV;PL;1;PRS
iurer iuryez V;IPFV;IND;PL;2;PST;LGSPEC2
mescler mesclast V;IPFV;SBJV;SG;3;PST
eslever esleverez V;IND;PL;2;FUT
entrer entrent V;IND;PL;3;PRS
desrouter desroutez V;SBJV;PL;2;PRS
esveiller esveillions V;IPFV;IND;PL;1;PST;LGSPEC1
reverer reverasse V;IPFV;SBJV;SG;1;PST
chevauchier chevauchiera V;IND;SG;3;FUT
pisser pissastes V;PFV;IND;PL;2;PST
expuyser expuysons V;SBJV;PL;1;PRS
desguiser desguiseroys V;COND;SG;1;LGSPEC2
guarder guarderas V;IND;SG;2;FUT
empoizonner empoizonnerons V;IND;PL;1;FUT
diviner divinassiez V;IPFV;SBJV;PL;2;PST
moderer modereras V;IND;SG;2;FUT
auser auseroyent V;COND;PL;3;LGSPEC2
engroisser engroisse V;SBJV;SG;3;PRS
racompter racompteroys V;COND;SG;2;LGSPEC2
transgloutir transgloutiroit V;COND;SG;3;LGSPEC1
baptizer baptizerois V;COND;SG;1;LGSPEC1
chevauchier chevauchiez V;SBJV;PL;2;PRS
guarder guardent V;SBJV;PL;3;PRS
celebrer celebroit V;IPFV;IND;SG;3;PST;LGSPEC1
racompter racompterai V;IND;SG;1;FUT;LGSPEC1
baisler baislerois V;COND;SG;2;LGSPEC1
soumectre soumectoyt V;IPFV;IND;SG;3;PST;LGSPEC2
sçavoir sceussent V;IPFV;SBJV;PL;3;PST
entredonner s'entredonneront V;IND;PL;3;FUT
herrier herrie V;IMP;SG;2
uriner urinast V;IPFV;SBJV;SG;3;PST
revencher revenchoyent V;IPFV;IND;PL;3;PST;LGSPEC2
porter portiez V;IPFV;IND;PL;2;PST;LGSPEC1
estirer estire V;SBJV;SG;3;PRS
encommencer encommenças V;PFV;IND;SG;2;PST
desmettre desmettras V;IND;SG;2;FUT
bancqueter bancquete V;IND;SG;3;PRS
praesenter praesentyez V;IPFV;IND;PL;2;PST;LGSPEC2
evaporer evaporeras V;IND;SG;2;FUT
cabasser cabasseriez V;COND;PL;2;LGSPEC1
detranchier detranchent V;SBJV;PL;3;PRS
eschieller esciellyons V;IPFV;IND;PL;1;PST;LGSPEC2
trouver trouva V;PFV;IND;SG;3;PST
contreroller contrerolloyent V;IPFV;IND;PL;3;PST;LGSPEC2
deschirer deschirons V;SBJV;PL;1;PRS
desfaire desfaisois V;IPFV;IND;SG;2;PST;LGSPEC1
monter montyez V;IPFV;IND;PL;2;PST;LGSPEC2
estudier estudions V;IND;PL;1;PRS
cesser cesserent V;PFV;IND;PL;3;PST
delivrer delivrez V;IMP;PL;2
esclairer esclairez V;IND;PL;2;PRS
rouller roulleriez V;COND;PL;2;LGSPEC1
affier affie V;SBJV;SG;3;PRS
preferer preferas V;PFV;IND;SG;2;PST
soulaiger soulaigerois V;COND;SG;1;LGSPEC1
desister desisterai V;IND;SG;1;FUT;LGSPEC1
entredonner s'entredonnent V;IND;PL;3;PRS
desconseiller desconseilloys V;IPFV;IND;SG;1;PST;LGSPEC2
remonstrer remonstrer V;NFIN
prosperer prosperes V;IND;SG;2;PRS
preceder precedyons V;IPFV;IND;PL;1;PST;LGSPEC2
seeller seelleroyt V;COND;SG;3;LGSPEC2
debaracer debaraçassiez V;IPFV;SBJV;PL;2;PST
escorcher escorchons V;IND;PL;1;PRS
eriger erigeast V;IPFV;SBJV;SG;3;PST
remercyer remercyoit V;IPFV;IND;SG;3;PST;LGSPEC1
confesser confessez V;IMP;PL;2
donner donnions V;IPFV;IND;PL;1;PST;LGSPEC1
cerchier cerche V;IMP;SG;2
alterer alterois V;IPFV;IND;SG;1;PST;LGSPEC1
escrier escriez V;IND;PL;2;PRS
galoper galopois V;IPFV;IND;SG;2;PST;LGSPEC1
gaimenter gaimenterions V;COND;PL;1;LGSPEC1
oster ostes V;IND;SG;2;PRS
desyrer desyrons V;SBJV;PL;1;PRS
rejecter rejecterons V;IND;PL;1;FUT
bayser baysons V;IND;PL;1;PRS
renommer renommyez V;IPFV;IND;PL;2;PST;LGSPEC2
parler parlastes V;PFV;IND;PL;2;PST
conquester conquesteras V;IND;SG;2;FUT
deshonnourer deshonnourasmes V;PFV;IND;PL;1;PST
renfler renflasmes V;PFV;IND;PL;1;PST
escarter escarta V;PFV;IND;SG;1;PST
disner disneray V;IND;SG;1;FUT;LGSPEC2
entrefrapper vous entrefrappez V;SBJV;PL;2;PRS
eschever eschever V;NFIN
arroier arroieroyt V;COND;SG;3;LGSPEC2
veigler veigleras V;IND;SG;2;FUT
bobeliner bobelineray V;IND;SG;1;FUT;LGSPEC2
estinceller estincelleray V;IND;SG;1;FUT;LGSPEC2
estrangler estranglasmes V;PFV;IND;PL;1;PST
repraesenter repraesentoys V;IPFV;IND;SG;2;PST;LGSPEC2
deschirer deschirois V;IPFV;IND;SG;2;PST;LGSPEC1
adviser advisent V;IND;PL;3;PRS
resigner resigneroient V;COND;PL;3;LGSPEC1
despouiller despouillerois V;COND;SG;2;LGSPEC1
abiurer abiurerent V;PFV;IND;PL;3;PST
subiuger subiugeons V;IMP;PL;1
practicquer practicquerez V;IND;PL;2;FUT
appeller appelle V;SBJV;SG;1;PRS
rejecter rejecterions V;COND;PL;1;LGSPEC1
enyvrer enyvrasse V;IPFV;SBJV;SG;1;PST
expeller expelleroyent V;COND;PL;3;LGSPEC2
cryer cryerois V;COND;SG;2;LGSPEC1
debaracer debaraçassions V;IPFV;SBJV;PL;1;PST
esvanter esvanteront V;IND;PL;3;FUT
gangler gangleray V;IND;SG;1;FUT;LGSPEC2
affier affiasses V;IPFV;SBJV;SG;2;PST
inquieter inquietoient V;IPFV;IND;PL;3;PST;LGSPEC1
escumer escume V;IND;SG;1;PRS
mectre mections V;SBJV;PL;1;PRS
appareiller appareillassiez V;IPFV;SBJV;PL;2;PST
passer passois V;IPFV;IND;SG;2;PST;LGSPEC1
effreer effreez V;SBJV;PL;2;PRS
affermer afferma V;PFV;IND;SG;1;PST
conquester conquestasse V;IPFV;SBJV;SG;1;PST
enyvrer enyvrons V;IND;PL;1;PRS
logier logeoyt V;IPFV;IND;SG;3;PST;LGSPEC2
considerer considererois V;COND;SG;1;LGSPEC1
pourchasser pourchassastes V;PFV;IND;PL;2;PST
tirer tire V;SBJV;SG;1;PRS
sembler sembla V;PFV;IND;SG;3;PST
empoizonner empoizonnerez V;IND;PL;2;FUT
desconseiller desconseilleroys V;COND;SG;2;LGSPEC2
diviner divinez V;IND;PL;2;PRS
esveiller esveillera V;IND;SG;3;FUT
bobeliner bobelineront V;IND;PL;3;FUT
encliner enclinent V;SBJV;PL;3;PRS
gaspiller gaspilloys V;IPFV;IND;SG;1;PST;LGSPEC2
picquier picquierions V;COND;PL;1;LGSPEC1
reserver reserverons V;IND;PL;1;FUT
trousser troussons V;SBJV;PL;1;PRS
esmerveillier esmerveillierons V;IND;PL;1;FUT
effronter effrontasses V;IPFV;SBJV;SG;2;PST
affier affioient V;IPFV;IND;PL;3;PST;LGSPEC1
destourner destourneroit V;COND;SG;3;LGSPEC1
descharger deschargeroient V;COND;PL;3;LGSPEC1
finer finerons V;IND;PL;1;FUT
acoustrer acoustroyent V;IPFV;IND;PL;3;PST;LGSPEC2
desmonter desmontast V;IPFV;SBJV;SG;3;PST
piller pilleroyt V;COND;SG;3;LGSPEC2
desplacer desplacerez V;IND;PL;2;FUT
remercyer remercya V;PFV;IND;SG;1;PST
trouver trouvasse V;IPFV;SBJV;SG;1;PST
leicher leicheras V;IND;SG;2;FUT
baster basterent V;PFV;IND;PL;3;PST
presumer presumerois V;COND;SG;2;LGSPEC1
confermer confermeras V;IND;SG;2;FUT
trancher trancherois V;COND;SG;1;LGSPEC1
piller pillerois V;COND;SG;2;LGSPEC1
desadvouer desadvoueroyent V;COND;PL;3;LGSPEC2
enconvenencier enconvenence V;SBJV;SG;3;PRS
merveiller merveillerai V;IND;SG;1;FUT;LGSPEC1
tesmoigner tesmoignent V;SBJV;PL;3;PRS
pausmer pausmerez V;IND;PL;2;FUT
houssepillier houssepillieroys V;COND;SG;2;LGSPEC2
picquer picquerions V;COND;PL;1;LGSPEC1
desploier desploieroient V;COND;PL;3;LGSPEC1
desarmer desarmerois V;COND;SG;2;LGSPEC1
r'asseurer r'asseuroys V;IPFV;IND;SG;1;PST;LGSPEC2
ralier ralie V;IND;SG;1;PRS
tuer tuez V;IMP;PL;2
diviner divine V;SBJV;SG;1;PRS
desployer desployassiez V;IPFV;SBJV;PL;2;PST
regratier regratiiez V;IPFV;IND;PL;2;PST;LGSPEC1
haster hastassions V;IPFV;SBJV;PL;1;PST
delaisser delaisseryons V;COND;PL;1;LGSPEC2
ruyner ruynez V;IND;PL;2;PRS
redoubter redoubtons V;SBJV;PL;1;PRS
enpoisonner enpoisonnions V;IPFV;IND;PL;1;PST;LGSPEC1
esveigler esveiglerai V;IND;SG;1;FUT;LGSPEC1
travailler travailleroys V;COND;SG;2;LGSPEC2
despossesser despossessoys V;IPFV;IND;SG;2;PST;LGSPEC2
raenchonner raenchonnoys V;IPFV;IND;SG;2;PST;LGSPEC2
affier affioys V;IPFV;IND;SG;1;PST;LGSPEC2
lyer lyes V;IND;SG;2;PRS
atacher atacher V;NFIN
sceller scellerions V;COND;PL;1;LGSPEC1
excuser excuseryez V;COND;PL;2;LGSPEC2
alimenter alimenterois V;COND;SG;1;LGSPEC1
soulaiger soulaigeoyt V;IPFV;IND;SG;3;PST;LGSPEC2
recuperer recupere V;IND;SG;1;PRS
monstrer monstreray V;IND;SG;1;FUT;LGSPEC2
redrechier redreche V;SBJV;SG;1;PRS
tourner tourniez V;IPFV;IND;PL;2;PST;LGSPEC1
conquester conquestast V;IPFV;SBJV;SG;3;PST
esperer esperions V;IPFV;IND;PL;1;PST;LGSPEC1
preceder precederoyent V;COND;PL;3;LGSPEC2
esgarer esgare V;SBJV;SG;3;PRS
tournoyer tournoyoyt V;IPFV;IND;SG;3;PST;LGSPEC2
leicher leichions V;IPFV;IND;PL;1;PST;LGSPEC1
robber robbyez V;IPFV;IND;PL;2;PST;LGSPEC2
demourer demourer V;NFIN
esvanter esvantassiez V;IPFV;SBJV;PL;2;PST
tocquer tocque V;SBJV;SG;1;PRS
fortifier fortifieroyent V;COND;PL;3;LGSPEC2
chercher cherchastes V;PFV;IND;PL;2;PST
translater translatoys V;IPFV;IND;SG;1;PST;LGSPEC2
emerger emergeons V;IND;PL;1;PRS
entreruyner nous entreruynons V;SBJV;PL;1;PRS
empescher empeschas V;PFV;IND;SG;2;PST
estiquier estiquieront V;IND;PL;3;FUT
essilier essila V;PFV;IND;SG;3;PST
deslacer delacerez V;IND;PL;2;FUT
iecter iecte V;IMP;SG;2
veigler veigleroyent V;COND;PL;3;LGSPEC2
redoubter redoubtyez V;IPFV;IND;PL;2;PST;LGSPEC2
oultrager oultrage V;IMP;SG;2
contrepoiser contrepoisasmes V;PFV;IND;PL;1;PST
nommer nommions V;IPFV;IND;PL;1;PST;LGSPEC1
mescler mescles V;IND;SG;2;PRS
achever achevons V;IND;PL;1;PRS
demonstrer demonstreroit V;COND;SG;3;LGSPEC1
ayder ayderay V;IND;SG;1;FUT;LGSPEC2
confesser confessyons V;IPFV;IND;PL;1;PST;LGSPEC2
logier logierai V;IND;SG;1;FUT;LGSPEC1
flotter flottois V;IPFV;IND;SG;1;PST;LGSPEC1
provocquer provocques V;IND;SG;2;PRS
toucher toucha V;PFV;IND;SG;1;PST
debaracer debaraceroys V;COND;SG;2;LGSPEC2
commencer commençons V;IMP;PL;1
grapper grappe V;IND;SG;3;PRS
recorder recordyez V;IPFV;IND;PL;2;PST;LGSPEC2
esparpiller esparpillassions V;IPFV;SBJV;PL;1;PST
deslyer deslyerai V;IND;SG;1;FUT;LGSPEC1
revencher revenchons V;SBJV;PL;1;PRS
affamer affama V;PFV;IND;SG;3;PST
despossesser despossessa V;PFV;IND;SG;3;PST
fumer fument V;SBJV;PL;3;PRS
tournoyer tournoyerent V;PFV;IND;PL;3;PST
quitter quittoyt V;IPFV;IND;SG;3;PST;LGSPEC2
ieuner ieunois V;IPFV;IND;SG;1;PST;LGSPEC1
acoustrer acoustreras V;IND;SG;2;FUT
impugner impugnent V;SBJV;PL;3;PRS
tumber tumberyez V;COND;PL;2;LGSPEC2
solliciter sollicitast V;IPFV;SBJV;SG;3;PST
expeller expelloit V;IPFV;IND;SG;3;PST;LGSPEC1
r'asseurer r'asseurent V;SBJV;PL;3;PRS
escryer escryeroyt V;COND;SG;3;LGSPEC2
conquester conquestes V;SBJV;SG;2;PRS
desconseiller desconseille V;IND;SG;1;PRS
mucer muceras V;IND;SG;2;FUT
arrengier arrengieront V;IND;PL;3;FUT
reverer revere V;SBJV;SG;1;PRS
esclairer esclairas V;PFV;IND;SG;2;PST
confesser confessastes V;PFV;IND;PL;2;PST
accorder accorderoyent V;COND;PL;3;LGSPEC2
rotter rottiez V;IPFV;IND;PL;2;PST;LGSPEC1
aterminer aterminassent V;IPFV;SBJV;PL;3;PST
estoffer estoffons V;IMP;PL;1
escouter escouteroient V;COND;PL;3;LGSPEC1
pocher pocherois V;COND;SG;1;LGSPEC1
vuider vuidoyent V;IPFV;IND;PL;3;PST;LGSPEC2
iniurier iniuriera V;IND;SG;3;FUT
aloser aloses V;IND;SG;2;PRS
praeparer praepareroyent V;COND;PL;3;LGSPEC2
desmeler desmelerez V;IND;PL;2;FUT
gaimenter gaimentassent V;IPFV;SBJV;PL;3;PST
descharger deschargera V;IND;SG;3;FUT
accompaigner accompaignastes V;PFV;IND;PL;2;PST
esclairer esclairassions V;IPFV;SBJV;PL;1;PST
demourer demourast V;IPFV;SBJV;SG;3;PST
contribuer contribueront V;IND;PL;3;FUT
honnourer honnourent V;IND;PL;3;PRS
representer representeroyent V;COND;PL;3;LGSPEC2
riffler riffler V;NFIN
rouller roullois V;IPFV;IND;SG;1;PST;LGSPEC1
alonger alongea V;PFV;IND;SG;3;PST
transporter transporter V;NFIN
encharger enchargeassions V;IPFV;SBJV;PL;1;PST
effectuer effectuasmes V;PFV;IND;PL;1;PST
verifier verifiassent V;IPFV;SBJV;PL;3;PST
ieusner ieusnassions V;IPFV;SBJV;PL;1;PST
iurer iurastes V;PFV;IND;PL;2;PST
oultrager oultrageoit V;IPFV;IND;SG;3;PST;LGSPEC1
seiourner seiournerons V;IND;PL;1;FUT
laidenger laidengions V;IPFV;IND;PL;1;PST;LGSPEC1
doubter doubterons V;IND;PL;1;FUT
eviter eviteryez V;COND;PL;2;LGSPEC2
arroier arroioys V;IPFV;IND;SG;2;PST;LGSPEC2
detester detestasse V;IPFV;SBJV;SG;1;PST
logier logeoit V;IPFV;IND;SG;3;PST;LGSPEC1
effreer effrea V;PFV;IND;SG;1;PST
esmayer esmayons V;IND;PL;1;PRS
atourner atourneryons V;COND;PL;1;LGSPEC2
esmerveillier esmerveillions V;IPFV;IND;PL;1;PST;LGSPEC1
fiancer fianceroient V;COND;PL;3;LGSPEC1
desancrer desancre V;IMP;SG;2
estacher estache V;SBJV;SG;3;PRS
gaimenter gaimentyez V;IPFV;IND;PL;2;PST;LGSPEC2
desploier desploie V;IMP;SG;2
subiecter subiecte V;IND;SG;1;PRS
avaller avallerent V;PFV;IND;PL;3;PST
eslever esleveroit V;COND;SG;3;LGSPEC1
demonstrer demonstroyent V;IPFV;IND;PL;3;PST;LGSPEC2
quiter quitiez V;IPFV;IND;PL;2;PST;LGSPEC1
accorder accordoys V;IPFV;IND;SG;2;PST;LGSPEC2
desancrer desancres V;IND;SG;2;PRS
laisser laisseroys V;COND;SG;2;LGSPEC2
rappeller rappellerez V;IND;PL;2;FUT
supposer supposoyent V;IPFV;IND;PL;3;PST;LGSPEC2
sçavoir sçaurez V;IND;PL;2;FUT
entrefrapper vous entrefrapperez V;IND;PL;2;FUT
preceder precedassiez V;IPFV;SBJV;PL;2;PST
enfelonner enfelonnoys V;IPFV;IND;SG;2;PST;LGSPEC2
conseiller conseillyez V;IPFV;IND;PL;2;PST;LGSPEC2
affier affie V;IND;SG;1;PRS
eschever escheveroit V;COND;SG;3;LGSPEC1
robber robberons V;IND;PL;1;FUT
bayser bayserez V;IND;PL;2;FUT
tuer tueras V;IND;SG;2;FUT
espoventer espoventassions V;IPFV;SBJV;PL;1;PST
despossesser despossesseront V;IND;PL;3;FUT
souspirer souspireray V;IND;SG;1;FUT;LGSPEC2
hacher hacheroys V;COND;SG;2;LGSPEC2
gouster goustons V;SBJV;PL;1;PRS
seiourner seiournassiez V;IPFV;SBJV;PL;2;PST
adapter adaptiez V;IPFV;IND;PL;2;PST;LGSPEC1
deslacer delaçassions V;IPFV;SBJV;PL;1;PST
quereler querelerois V;COND;SG;2;LGSPEC1
esvanter esvantoys V;IPFV;IND;SG;1;PST;LGSPEC2
desplacer desplaceroys V;COND;SG;1;LGSPEC2
soulaiger soulaigeriez V;COND;PL;2;LGSPEC1
diviner divineroys V;COND;SG;2;LGSPEC2
dilater dilates V;SBJV;SG;2;PRS
esclairer esclairois V;IPFV;IND;SG;1;PST;LGSPEC1
creancer creançoys V;IPFV;IND;SG;1;PST;LGSPEC2
arriver arrivoit V;IPFV;IND;SG;3;PST;LGSPEC1
tesmoigner tesmoigneroys V;COND;SG;1;LGSPEC2
sceller scellera V;IND;SG;3;FUT
fouragier fouragieroyent V;COND;PL;3;LGSPEC2
iouer iouoyt V;IPFV;IND;SG;3;PST;LGSPEC2
proclamer proclamerons V;IND;PL;1;FUT
consyderer consyderiez V;IPFV;IND;PL;2;PST;LGSPEC1
robber robbons V;IMP;PL;1
renger rengeriez V;COND;PL;2;LGSPEC1
achapter achaptyons V;IPFV;IND;PL;1;PST;LGSPEC2
eschapper eschappyez V;IPFV;IND;PL;2;PST;LGSPEC2
flatter flatteray V;IND;SG;1;FUT;LGSPEC2
compter compta V;PFV;IND;SG;3;PST
enchasser enchasseray V;IND;SG;1;FUT;LGSPEC2
fortiffier fortiffiyons V;IPFV;IND;PL;1;PST;LGSPEC2
entrempescher entrempeschyez V;IPFV;IND;PL;2;PST;LGSPEC2
traicter tractoyent V;IPFV;IND;PL;3;PST;LGSPEC2
fascher faschoyent V;IPFV;IND;PL;3;PST;LGSPEC2
traittier traittiez V;IND;PL;2;PRS
manger mangeois V;IPFV;IND;SG;2;PST;LGSPEC1
payer payas V;PFV;IND;SG;2;PST
pocher pochasse V;IPFV;SBJV;SG;1;PST
dampner dampnyez V;IPFV;IND;PL;2;PST;LGSPEC2
tremper trempe V;SBJV;SG;3;PRS
courrouchier courrouchierai V;IND;SG;1;FUT;LGSPEC1
solliciter sollicitoit V;IPFV;IND;SG;3;PST;LGSPEC1
reserver reservasse V;IPFV;SBJV;SG;1;PST
desployer desploya V;PFV;IND;SG;1;PST
caper capes V;SBJV;SG;2;PRS
recorder recordoyent V;IPFV;IND;PL;3;PST;LGSPEC2
soubhaitter soubhaittasses V;IPFV;SBJV;SG;2;PST
deschevaucher deschevauchoit V;IPFV;IND;SG;3;PST;LGSPEC1
escumer escumasmes V;PFV;IND;PL;1;PST
adviser adviseras V;IND;SG;2;FUT
encontrer encontroient V;IPFV;IND;PL;3;PST;LGSPEC1
subiecter subiectois V;IPFV;IND;SG;2;PST;LGSPEC1
disner disne V;SBJV;SG;3;PRS
negotier negotiez V;SBJV;PL;2;PRS
provocquer provocqueroys V;COND;SG;1;LGSPEC2
cuyder cuydoient V;IPFV;IND;PL;3;PST;LGSPEC1
encharger enchargeroyent V;COND;PL;3;LGSPEC2
ozer ozoys V;IPFV;IND;SG;2;PST;LGSPEC2
picquer picquoyt V;IPFV;IND;SG;3;PST;LGSPEC2
rotter rotteryons V;COND;PL;1;LGSPEC2
alimenter alimentasmes V;PFV;IND;PL;1;PST
pisser pissassions V;IPFV;SBJV;PL;1;PST
lever levez V;IND;PL;2;PRS
garder gardas V;PFV;IND;SG;2;PST
mortifier mortifie V;IND;SG;3;PRS
rincer rinçasses V;IPFV;SBJV;SG;2;PST
enpoisonner enpoisonnons V;IND;PL;1;PRS
humilier humilier V;NFIN
dancer dançois V;IPFV;IND;SG;2;PST;LGSPEC1
fascher faschois V;IPFV;IND;SG;1;PST;LGSPEC1
translater translatoit V;IPFV;IND;SG;3;PST;LGSPEC1
emboucher embouchois V;IPFV;IND;SG;2;PST;LGSPEC1
praeparer praeparyez V;IPFV;IND;PL;2;PST;LGSPEC2
esloigner esloigne V;IMP;SG;2
desver desveroit V;COND;SG;3;LGSPEC1
verifier verifient V;SBJV;PL;3;PRS
diviner divinera V;IND;SG;3;FUT
laidenger laidengeroient V;COND;PL;3;LGSPEC1
|
461a670e4a33d4f56d665ca6d41ded40045cd894 | 97135f725c599527ba0fd95a5289373c755daf3b | /Examples/test-suite/scilab/funcptr_runme.sci | 9b87bf278311408b9c3ceb1d8d905cc6408ec227 | [] | no_license | maqalaqil/swag-c- | b8880cfc92424d5bbca1fe15ed98663a41063f27 | 6fd1ba2bf1d353f24c116a3c89a8540292b86a7d | refs/heads/master | 2020-07-06T21:02:08.949652 | 2019-09-01T07:56:55 | 2019-09-01T07:56:55 | 203,137,066 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 172 | sci | funcptr_runme.sci | exec("alaqiltest.start", -1);
if add(7, 9) <> 16 then alaqiltesterror(); end
if do_op(7, 9, funcvar_get()) <> 16 then alaqiltesterror(); end
exec("alaqiltest.quit", -1);
|
325992056db25ea7894710c262fd90a28f748728 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2453/CH1/EX1.3/1_3.sce | b93c7812eb1efe3c23a09fc4f9d067f3ceff7d96 | [] | 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 | 488 | sce | 1_3.sce | //To calculate the bond energy for NaCl molecule
e = 1.602*10^-19;
EA = 3.65; //electron affinity of Cl, eV
IP = 5.14; //ionisation energy of Na, eV
epsilon0 = 8.85*10^-12;
r0 = 236; //equilibrium distance, pm
r0 = r0*10^-12; //equilibrium distance, m
V = (-e^2)/(4*%pi*epsilon0*r0); //potential energy, J
V = V/e; //potential energy, eV
Ue = V;
BE = -Ue - IP + EA; //bond energy, eV
printf("bond energy for NaCl molecule is %5.2f eV",BE);
|
6abf9f446e66a5bd7a44952410db6d7ac92e608d | 449d555969bfd7befe906877abab098c6e63a0e8 | /635/CH14/EX14.2/Ch14Ex2.sci | c55c48c23e62bacfcf8abea6b390383d96a8bab5 | [] | 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 | 643 | sci | Ch14Ex2.sci | // Scilab Code Ex14.2 Calculating dielectric constant from electric polarizability of the atom: Page-464 (2010)
alpha_Kr = 2.18e-040; // Electric polarizability of the Kr-atom, farad-metre square
NA = 6.023e+023; // Avogadro's number
epsilon_0 = 8.85e-012; // Electrical permittivity of free space, coulomb square per newton per metre square
N = NA/(22.4e-03); // Number of Kr atoms per metre cube
epsilon_r = N*alpha_Kr/epsilon_0 + 1; // Relative electrical permittivity of Kr specimen
printf("\nThe diectric constant of Kr specimen = %7.5f", epsilon_r);
// Result
// The diectric constant of Kr specimen = 1.00066
|
2e6567f28a1f53950a0b1c8a662fc263aec682fd | 8fd5474ab7779b552e5f198a3ce4afc4d82cb47f | /bin/libGeo/New_Mesh.sci | 7b25f35f3a85d18b25797284457456695af8676f | [] | no_license | 2-BiAs/UCASI_ALIGNMENT_SCAN | 807353741517c084007cdf978b149f34f8a13dae | 85b8d79f50e23051cbf365385b49e05293827941 | refs/heads/master | 2020-06-21T10:26:29.419281 | 2017-05-19T02:01:27 | 2017-05-19T02:01:27 | 74,790,458 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,007 | sci | New_Mesh.sci | function meshOutput = New_Mesh(varargin)
//Generate New Mesh structure
meshOutput.mVertices = [];
meshOutput.iIndices = [];
select argn(2)
case 1;
iX_Count = varargin(1).iX_Count;
iY_Count = varargin(1).iY_Count;
for i = 0:iY_Count - 1
for j = 1:iX_Count
iTriBuffer($+1, 1) = i * iX_Count + j;
iTriBuffer($, 2) = i * iX_Count + j + 1;
iTriBuffer($, 3) = (i + 1) * iX_Count + j;
iTriBuffer($+1, 1) = (i + 1) * iX_Count + j + 1;
iTriBuffer($, 2) = (i + 1) * iX_Count + j;
iTriBuffer($, 3) = i * iX_Count + j + 1;
end
end
mVertices = GridToList(varargin(1).mX, varargin(1).mY)
meshOutput.mVertices = mVertices;
meshOutput.iIndices = iTriBuffer;
case 2;
meshOutput.mVertices = varargin(1);
meshOutput.iIndices = varargin(2);
case 3;
else
end
endfunction
|
7af44d3de3fddab260d1ac96e6f0709e5f660764 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1418/CH26/EX26.17/EX26_17.sce | d2b11b65017c3461c4c8b115c3e0ab3f34041223 | [] | 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 | 983 | sce | EX26_17.sce | //EXAMPLE 26.17
//4-POLE DC SHUNT GENERATOR
clc;
funcprot(0);
//Variable Initialisation
N=900;.................//Speed of the generator in rpm
P=4;....................//Number of poles
Phi=0.07;..........//Flux per pole in Webers
T=220;.............//Number of turns in armature winding
Rw=0.004;..........//Resistance per turn in Ohms
Al=P;...............//Number of parallel paths in lap wound generator
Ia=50;............//Armature current in Amperes
Z=T*2;.....................//Total number of conductors
E=(Phi*P*N*Z)/(60*Al);.....................//Generated EMF in Volts
disp(E,"Generated EMF in Volts:");
Rtc=T*Rw;.....................//Total resistance of 220 turns in Ohms
Rp=Rtc/Al;...................//Resistance of each path in Ohms
Ra=Rp/Al;...................//Armature resistance in Ohms
Va=Ia*Ra;....................//Armature drop in Volts
V=E-Va;......................//Terminal voltage in Volts
disp(V,"Terminal voltage in Volts:");
|
16cfb29f9e385c6de4faa606baa312406932af1d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1163/CH3/EX3.44/example_3_44.sce | 844801ede16e74b46f3c63a8b142cb95b2f778f4 | [] | 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 | 441 | sce | example_3_44.sce | clear;
clc;
disp("--------------Example 3.44---------------")
bandwidth = 10 ; // 10 MHz
fpm=12000; //frames per second
bits=10000; //bits carried by each frame
throughput=((fpm*bits)/60)*10^-6; //formula for throughput
frac=bandwidth/throughput; // ratio of bandwidth to throughput
printf("The throughput is %d Mbps.\n",throughput);// display result
printf("The throughput is almost 1/%dth of the bandwidth in this case.",frac);
|
269a1f9206a4094ab776dd0c79028e0caae785bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /45/CH7/EX7.5/example_7_5.sce | 276db3903d21d2badf6d258054ac75af5768212c | [] | 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 | 420 | sce | example_7_5.sce | //example 7.5
clc
clear
//Ra = input('Enter the value of the resistance RA in Kohms :');
//Rb = input('Enter the value of the resistance RB in Kohms :');
//C =input('Enter the value of the Capacitance C in micro farads :');
Ra=1 //taking the given input
Rb=1
C= 1 *10^-3
T= (Ra + 2*Rb)*C;
frq = 1.44 * (1/T); //substituting in the eqution
printf('Freqency of oscillation is %f KHz',frq); //displaying result |
cc14ca4b38a207f1ca0993d2966d7bc04ca9d2f0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH3/EX3.36/3_36.sce | d623c8512d907c75fb4ac97de9068510455af9ab | [] | 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 | 171 | sce | 3_36.sce | L=4/1000
R=1000
V=9
iL_0m=V/(2*R)
iL_0p=iL_0m
iL_inf=0
isw_inf=V/R
T=L/R
t=5E-6
iL_5=iL_0p*exp(-t/T)
disp(iL_5)
isw_5=isw_inf*(1-exp(-t/T))
disp(isw_5) |
369a49ade0135a141d12d2d58b5b67431b3d54db | 449d555969bfd7befe906877abab098c6e63a0e8 | /2870/CH4/EX4.5/Ex4_5.sce | b552a048047c9fcdee9af51495ad2334cbeae313 | [] | 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 | 554 | sce | Ex4_5.sce | clc;clear;
//Example 4.5
//given values
m=0.025;
V=120;
I=0.2;
t=300;//total time taken in sec
P1=300;
Qout=3.7;
//from Table A–5
//at P1 the conditon is sat. vap
h1=2724.9;
//Calculations
//Part - a
//therotical proving
//Part - b
We=V*I*t/1000;//electrical work in kJ
//from eqn 4 -18 i.e derived in earler part
//it states it Ein - Eout = Esystem
// it applies as Win - Qout = H = m (h2 - h1)
h2=(We-Qout)/m+h1;
////from Table A–5
//at h2 we get
P2=300;
T=200;
disp(T,'the final temperature of the steam in C')
|
1ec021a08145a290c08de86941539c5362e29cae | 449d555969bfd7befe906877abab098c6e63a0e8 | /3685/CH16/EX16.8/Ex16_8.sce | 1781aa4c93d8391aa56e431820da87a2593b6642 | [] | 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 | 399 | sce | Ex16_8.sce | clc
hf_co2 = -393522 // Enthalpy of reaction in kJ/kg mol
hf_h20 = -285838// Enthalpy of reaction in kJ/kg mol
hf_ch4 = -74874// Enthalpy of reaction in kJ/kg mol
D = hf_co2 + (2*hf_h20) //Heat transfer
QCV = D-hf_ch4 // Q_cv
printf("\n Example 16.8\n")
printf("\n Heat transfer per kg mol of fuel is %d kJ",D)
printf("\n Q_cv is %d kJ",QCV)
//The answers vary due to round off error
|
59bdfd4a8e9088ab20be28a62e5b28f91e87aad6 | 8ad9380384d2751d79937ba5d6d581565596b891 | /macros/plane_projection.sci | 0a9c34e1747d080f43cf815a2dd865ce545abc94 | [
"BSD-3-Clause"
] | permissive | iamAkshayrao/scilab_point_cloud_toolbox | 1d8845f0830ddb623383c8dbfeadc8a3a35e8801 | 5d592a695b7976f4e63f0ae24d0a14937e474642 | refs/heads/master | 2022-12-17T23:14:11.513116 | 2020-09-25T18:57:02 | 2020-09-25T18:57:02 | 290,829,006 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 774 | sci | plane_projection.sci | function plane_projection()
// Estimate surface normals using pcl::NormalEstimation.
//
// Syntax
// PointCloud(inputpointcloudfilename,outputpointcloudfilename,A_value,B_value,C_value,D_value,"plane_projection")
//
// Parameters
// inputpointcloudfilename : The input file in PCD format
// outputpointcloudfilename : the filename where the generated output has to be stored in PCD format
// A, B, C, D : coefficients of plane represented by- Ax+By+Cz+D=0
//
// Description
// Takes in the equation of a plane and the input pointcloud, and finds the surface normals on it
//
// Examples
// PointCloud("bun0.pcd","output_pp.pcd","1","1","1","1","plane_projection")
//
//Authors
//Ankit Kumar
//Akshay S Rao
// Mohammed Rehab Sait
//Aliasgar AV
endfunction
|
32f8e90628b9db55288f2a74228d610f01c227b1 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/replot.man.tst | c619b8090cb9f8d4e521aad43b4e43cd76af2ce8 | [
"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 | 72 | tst | replot.man.tst | clear;lines(0);
x=[0:0.1:2*%pi]';
plot2d(x,sin(x))
replot([-1,-1,10,2])
|
7fd11a99f0b6b7b08676536d68c5db29e9243414 | ac1f8441b0319b4a391cd5a959bd3bb7988edfa7 | /data/news2015/news2015/EnKo/enko11.tst | c453de6967d0750601157c1f5ffb0ba798a4d94a | [
"MIT"
] | permissive | SaeedNajafi/transliterator | 4d58b8604fa31f52ee2dce7845e002a18214fd5e | 523a087b777a5d6eec041165dabb43848f6222e6 | refs/heads/master | 2021-09-18T17:02:59.083727 | 2018-07-17T06:01:21 | 2018-07-17T06:01:21 | 129,796,130 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,603 | tst | enko11.tst | abramov
abramson
abrikosov
adair
adami
adashev
adolph
adolphus
adrien
africanus
aksyonov
al
alden
aleksandrov
alem
alfaro
algernon
alpha
althaus
alu
alun
amram
anatoly
andreasen
andresen
ange
anne-marie
antonioni
argerich
arkady
arnault
avram
awazu
aylmer
aznavour
babington
bader
baines
ballantyne
balthasar
bamba
bancroft
bannister
baran
barbera
barbra
baring
barnabas
bashir
bateman
baturin
becerra
beecher
beers
beilin
benua
bermudez
berneux
betancourt
bhuiyan
bigelow
bikram
bird
birgit
blackman
blasco
blondin
boehmer
bohlen
bolden
bonar
bondarchuk
boniface
boon
boynton
brandeis
brando
branko
brinsley
bronislaw
brother
brun
bruna
brunelleschi
bruton
bunker
burghardt
burley
buthelezi
button
cable
caldera
capecchi
carew
carleton
carstens
carus
cassius
catlett
cecchi
celestin
chalmers
chase
chauvin
chisholm
chita
chodos
christen
clemente
clerides
cobos
coelho
coetzee
coombs
cullum
currie
cyprian
dacko
dakin
dame
dashkova
davison
dawda
day
de jong
de vries
deighton
delay
dell
deming
denham
denney
diamond
dobrynin
dominick
douglass
druon
du bois
du pont
dupond
duran
duras
dwight
eagleton
eban
eco
edmunds
edwina
eigil
einar
eisenman
eisner
eizenshtein
eldon
elert
eliasson
elinor
elwood
emmet
england
engle
erdem
erle
esquivel
ester
evtushenko
eyvind
fairfield
fallon
falwell
fargo
farooq
fawcett
fedotov
fehrenbach
feinstein
fen
fenn
fermi
filho
filley
finley
flake
fleming
flinders
flournoy
fontenelle
forest
fourneyron
frame
frantz
freddy
fuad
fuchs
furman
garfunkel
geddes
geesink
genscher
geoffroy
georgii
georgios
geraldine
gerhart
germaine
gerry
gerty
gian
gilchrist
gilpin
ginzburg
gnesin
godelier
golda
goodall
goodrich
gopal
goss
gostev
gotthard
gotthold
gourmont
gowland
gram
grasso
greenleaf
gregson
grigorii
grishin
groves
grubbs
grubel
gruber
gruberova
guardiola
gucci
guglielmo
guinness
gumilyov
gunilla
gunn
gus
gusev
gustafsson
hage
hajdu
halldor
hamre
hannes
hanning
hardenberg
hartwig
hasbrouck
havelock
heber
hedayat
hedrick
helmuth
heston
hilde
hinckley
hirschfeld
holly
holman
holme
hopwood
hossein
hubbs
humberto
hussain
hutchings
hynek
idrissa
ignacy
ilan
immanuel
ingersoll
innokentii
inouye
iosif
isaak
issa
ivor
janes
janszoon
jarrett
jason
javier
jelinek
jenson
johana
johannsen
joris
junius
junot
justine
justus
jusuf
kagan
kaji
kamel
kamisese
kani
karl-heinz
karlheinz
karpov
katarina
kavan
kaya
kazimierz
keating
keba
kelleher
kengo
kershner
khokhlov
kindler
kingdom
kirilenko
kirkpatrick
kiro
kjell
klima
kofler
kolff
kreiner
krishnan
krohn
kron
kulibin
kullman
la cour
la tour
lagarde
lane
langston
laporte
lara
latouche
latour
lazarus
le
le bon
le brun
le fort
le pen
leena
leibovitz
lejeune
lendvai
lenihan
letitia
levitan
lichtenstein
link
lipman
lipsky
lively
llewellyn
logsdon
loomis
lopes
lorne
love
lovell
maciej
mackinnon
maksimovich
mallory
mandell
manley
manne
mannes
marchese
markova
marks
mather
mathison
matta
maximilien
may
mayers
maynard
mcfarlane
mckinnon
meinong
mercedes
meriam
merrit
mesa
mian
michelin
mie
mikhailovich
mikhailovna
mikhalkov
millington
minton
miranda
mishkin
mondale
monnet
monno
monson
morozov
morrell
mortenson
moynihan
mullen
nadezhda
naidu
natalya
neary
neves
newbold
newby
newsom
nguema
nicanor
nikitin
ninian
niven
noam
nobre
noriega
oberlin
obote
olivero
olsson
orley
ostrom
ould
paget
pak
pandit
papadopoulos
papandreou
papier
papoulias
parks
pascale
pascoal
pat
pau
peabody
pelham
per
perelman
peretz
perov
pesce
petr
petrov
petter
pfaff
pickett
pinochet
pinter
politzer
power
prey
primrose
prokopovich
pynchon
pyotr
qureshi
rabemananjara
rainer
raisa
randal
rankin
rawdon
rawls
redgrave
redi
reeve
rehn
reinhart
reiss
reitz
rennie
rickard
rippon
rocher
roderick
roll
romney
rosenblatt
rozanov
rubenstein
rubinshtein
sadoveanu
safar
safire
sailer
salmond
salton
sandel
sandy
sasso
schafer
schild
schlesinger
schulte
scowcroft
selby
selman
sergius
sessions
shalyapin
sharrock
shashi
shaun
sheehan
shipman
shmidt
shriver
shubin
shukshin
siepi
sima
singye
sisulu
skolimowski
slaughter
solarz
sontag
sorell
sorensen
sorkin
sorman
sorsa
spock
stallone
stanzel
stasov
stearns
stecher
steiger
stepan
stringer
stroganov
struble
strutt
suleiman
sune
susannah
sussman
suvorov
svendsen
svetozar
swinton
taras
tawney
tcherina
teodor
thapa
thulin
thurber
thurman
titov
tombaugh
tong
tor
toussaint
tove
troyanovsky
tue
turberville
ulla
upton
ushakov
uta
vadim
val
varda
vaugelas
veniamin
vere
vonnegut
vsevolod
wadsworth
wakil
way
webber
weissmuller
westmoreland
wigglesworth
wightman
wilkie
willam
wills
win
wing
winslow
woodbury
woodruff
wulff
wyndham
yakov
yakovlev
younger
yoweri
yuk-man
yuli
zabelin
zaha
zahir
zoshchenko
|
a548193ae88d1014c74ea934e77dba3fcb6b2323 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1247/CH6/EX6.9/example6_9.sce | 9a106debd2bc5a1e17fd20943682fb9823508bfb | [] | 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 | 598 | sce | example6_9.sce | clear;
clc;
// Stoichiometry
// Chapter 6
// Stoichiometry and Unit Operations
// Example 6.9
// Page 367
printf("Example 6.9, Page 367 \n \n");
// solution
// basis 100 kg free water
Na2SO4in = 32 //kg
Win = 68 //kg
W1 = (180/142)*32 //kg water with Na2SO4
Wfree1 = Win-W1
GS1 = ((Na2SO4in+W1)*100)/Wfree1 //kg glauber salt present in 100 kg free water
W2 = (180*19.4)/142 // water associated with Na2SO4 in final mother liquor
Wfree2 = 100-W2
GS2 = ((19.4+W2)/Wfree2)*100
Y = GS1-GS2 //kg
p = Y*100/GS1
printf("Percent yield of glauber salt = "+string(p)+".")
|
7baac869aa3373b66f58807b37375602ca2f6777 | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/sosfilt.sci | cff4d589b4c32aed7cf121e6ec82f8a40d40db5a | [] | 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 | 616 | sci | sosfilt.sci | function [y]=sosfilt(sos,x)
// Second order section IIR filtering of x.
// Calling Sequence
// [y]=sosfilt(sos,x)
// Parameters
// sos: Real or complex valued Lx6 vector or matrix
// x: Real or complex valued vector or matrix
// Description
// This is an Octave function
// Second order section digital filter sos is applied to the input vector and the output vector obtained is of the same length.
// Examples
// 1. sosfilt([1 2 3 4 5 6],[-1 10i;1 2])
// ans =[ -0.25000 0.00000; 0.06250 0.50000]
// 2. sosfilt([32 28 84 47 2 29],-1)
// ans = -0.68085
funcprot(0);
y=callOctave("sosfilt",sos,x)
endfunction
|
6b776b0c75bfed3cbc786df5d7d6f4602a5dbf35 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2045/CH2/EX2.7/Ex2_7.sce | 59cbb402e4dea09a6256a81082b03c65ff989269 | [] | 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 | 501 | sce | Ex2_7.sce | //pagenumber 105 example 7
volbar=0.2;//barrier voltage for germanium volt
na=3*10^20;//atoms per metre
//(1) width of depletion layer at 10 and 0.1 volt
for q=[-10 -0.1 0.1]
w=2.42*10^-6*sqrt((0.2-(q)));
disp("width of depletion layer at "+string((q))+" = "+string((w))+"metre");//for -0.1volt correction in the book
end
//(d) capacitance
for q=[-10 -0.1]
capaci=0.05*10^-9/sqrt(0.2-q);
disp("capacitance at "+string((q))+" = "+string((capaci))+"farad");
end
|
ff0408afe443ef60d270fd724c8a828d011fa4ee | 4058f38b392324aa5099819881f3c7d7219a174f | /Flip flops/JK Flipflop/JK Master Slave FF negative edge triggered/JK Master Slave.sce | a90988eb1837ca2ce9faa3bd320ce07df861430b | [] | no_license | anupma-s/Scilab-Xcos-Arduino-Digital-Circuits | 612a033422bf14e2e58bcdce371f15cafb30224f | 2b4bf8e8f155d20a5eda2feb31c5523a51569d73 | refs/heads/master | 2021-01-20T17:20:13.073180 | 2016-07-04T15:25:07 | 2016-07-04T15:25:07 | 62,569,455 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,689 | sce | JK Master Slave.sce | ok=open_serial(1,2,115200);
if ok~=0 then error('Unable to open serial port, please check'); end
J=0;
K=0;
S=0;
R=1;//since we assume initially Qbar=1
pinstate=0;
lastpinstate=0;
Q=0;
Qbar=1;
//we assume initially Q=0 & Qbar=1
pre=0;
clr=0;
temp=0;
JPin=5;
KPin=6;
QPin=9;
QbarPin=10;
prePin=3; //Preset
clrPin=4; //Clear
//Preset and clear are active low inputs, thus both should be ihgh for normal functining of flipflop
clockPin=2;
for i=1:500
if(Q==0)
cmd_digital_out(1,QPin,0)
cmd_digital_out(1,QbarPin,1)
sleep(100)
end
if(Q==1)
cmd_digital_out(1,QPin,1)
cmd_digital_out(1,QbarPin,0)
sleep(100)
end
pre=cmd_digital_in(1,prePin)
clr=cmd_digital_in(1,clrPin)
if(pre==0 & clr==1) //preset is active
Q=1;
end
if (pre==1 & clr==0) //clear is active
Q=0;
end
if (pre==1 & clr==1) //both preset and clear are inactive
pinstate=cmd_digital_in(1,clockPin)
if(pinstate~=lastpinstate)
if(pinstate==1) //master ff is active during positive level. It stores the inputs
//JK FF code
J=cmd_digital_in(1,JPin)
K=cmd_digital_in(1,KPin)
if(J==0 &K==1)
S=0
R=1
end
if(J==1 & K==0)
S=1
R=0
end
if(J==1 & K==1)
temp=S
S=R
R=temp
end
end
if(pinstate==0) //slave FF is active, it shows the output
//JK FF code only for state 01 and 10
if(S==0 & R==1)
Q=0;
end
if(S==1 & R==0)
Q=1;
end
end
sleep(50)
end
lastpinstate=pinstate;
end
end
close_serial(1)
|
0431f34d8e08716a2b04c98e2b228e5e51ef7eb3 | 396bff16c0cb88f37f24b3618aeada3a206e009e | /simss11.tst | 981d2836f6c913c346e8c978f65ca7b58cbabe65 | [] | no_license | jmfranck/workshop_examples | 50a34e4ce8bdc0b807d8814c9887e24406ecf38a | 8e084754d44cff2a01dd062b902298673861bbaf | refs/heads/master | 2016-09-06T01:38:25.427638 | 2015-06-11T15:58:24 | 2015-06-11T15:58:24 | 37,037,942 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 166,092 | tst | simss11.tst | 0
128 1 128 f2 (MHz)
128 1 128 f1 (MHz)
-.1250E+030.1953E+01-.1250E+030.1953E+010.0000E+000.3054E+03
0.2251E+010.2111E+010.1984E+010.1869E+010.1763E+010.1665E+010.1575E+010.1491E+01
0.1412E+010.1338E+010.1269E+010.1203E+010.1141E+010.1082E+010.1026E+010.9721E+00
0.9206E+000.8712E+000.8238E+000.7780E+000.7338E+000.6911E+000.6497E+000.6095E+00
0.5705E+000.5325E+000.4956E+000.4595E+000.4244E+000.3902E+000.3569E+000.3245E+00
0.2931E+000.2629E+000.2340E+000.2070E+000.1823E+000.1609E+000.1441E+000.1338E+00
0.1312E+000.1368E+000.1499E+000.1687E+000.1917E+000.2177E+000.2458E+000.2757E+00
0.3070E+000.3394E+000.3729E+000.4074E+000.4429E+000.4794E+000.5169E+000.5554E+00
0.5949E+000.6351E+000.6759E+000.7164E+000.7548E+000.7865E+000.8002E+000.7733E+00
0.6905E+000.6081E+000.6467E+000.8041E+000.9692E+000.1104E+010.1218E+010.1324E+01
0.1430E+010.1540E+010.1656E+010.1783E+010.1924E+010.2083E+010.2266E+010.2481E+01
0.2739E+010.3059E+010.3465E+010.3994E+010.4672E+010.5408E+010.5848E+010.5718E+01
0.5233E+010.4626E+010.3843E+010.2834E+010.1823E+010.1032E+010.5078E+000.4268E+00
0.7261E+000.1087E+010.1459E+010.1848E+010.2268E+010.2740E+010.3289E+010.3950E+01
0.4773E+010.5816E+010.7091E+010.8415E+010.9351E+010.9663E+010.9621E+010.9555E+01
0.9575E+010.9620E+010.9482E+010.8896E+010.7858E+010.6708E+010.5742E+010.4996E+01
0.4417E+010.3958E+010.3584E+010.3272E+010.3008E+010.2781E+010.2582E+010.2407E+01
0.2409E+010.2259E+010.2123E+010.1999E+010.1885E+010.1780E+010.1683E+010.1593E+01
0.1508E+010.1429E+010.1354E+010.1284E+010.1217E+010.1154E+010.1093E+010.1036E+01
0.9803E+000.9272E+000.8761E+000.8269E+000.7793E+000.7333E+000.6888E+000.6455E+00
0.6035E+000.5626E+000.5228E+000.4840E+000.4462E+000.4093E+000.3735E+000.3387E+00
0.3050E+000.2727E+000.2421E+000.2137E+000.1883E+000.1670E+000.1517E+000.1441E+00
0.1454E+000.1555E+000.1729E+000.1959E+000.2228E+000.2528E+000.2849E+000.3188E+00
0.3542E+000.3911E+000.4293E+000.4689E+000.5100E+000.5525E+000.5968E+000.6429E+00
0.6911E+000.7417E+000.7949E+000.8508E+000.9090E+000.9669E+000.1014E+010.1020E+01
0.9233E+000.7135E+000.5689E+000.6807E+000.8800E+000.1050E+010.1193E+010.1321E+01
0.1444E+010.1569E+010.1700E+010.1840E+010.1994E+010.2167E+010.2364E+010.2595E+01
0.2871E+010.3211E+010.3643E+010.4205E+010.4924E+010.5705E+010.6174E+010.6039E+01
0.5528E+010.4887E+010.4058E+010.2991E+010.1923E+010.1089E+010.5435E+000.4729E+00
0.7903E+000.1172E+010.1567E+010.1981E+010.2429E+010.2931E+010.3516E+010.4221E+01
0.5099E+010.6210E+010.7569E+010.8983E+010.9983E+010.1032E+020.1029E+020.1023E+02
0.1026E+020.1032E+020.1019E+020.9560E+010.8442E+010.7204E+010.6162E+010.5358E+01
0.4736E+010.4242E+010.3840E+010.3505E+010.3222E+010.2978E+010.2765E+010.2577E+01
0.2586E+010.2425E+010.2278E+010.2144E+010.2022E+010.1909E+010.1805E+010.1707E+01
0.1616E+010.1531E+010.1451E+010.1375E+010.1303E+010.1235E+010.1170E+010.1107E+01
0.1048E+010.9906E+000.9356E+000.8825E+000.8313E+000.7817E+000.7336E+000.6870E+00
0.6416E+000.5975E+000.5545E+000.5126E+000.4718E+000.4321E+000.3935E+000.3560E+00
0.3199E+000.2853E+000.2526E+000.2226E+000.1963E+000.1751E+000.1611E+000.1560E+00
0.1609E+000.1750E+000.1965E+000.2234E+000.2544E+000.2882E+000.3244E+000.3625E+00
0.4023E+000.4438E+000.4870E+000.5318E+000.5786E+000.6275E+000.6787E+000.7327E+00
0.7900E+000.8511E+000.9171E+000.9888E+000.1067E+010.1152E+010.1235E+010.1279E+01
0.1191E+010.9056E+000.5817E+000.5788E+000.7983E+000.1004E+010.1174E+010.1324E+01
0.1466E+010.1607E+010.1752E+010.1906E+010.2074E+010.2260E+010.2473E+010.2720E+01
0.3014E+010.3377E+010.3835E+010.4431E+010.5194E+010.6020E+010.6518E+010.6377E+01
0.5837E+010.5158E+010.4280E+010.3151E+010.2021E+010.1143E+010.5808E+000.5325E+00
0.8720E+000.1277E+010.1697E+010.2138E+010.2616E+010.3152E+010.3777E+010.4531E+01
0.5469E+010.6656E+010.8109E+010.9621E+010.1069E+020.1106E+020.1104E+020.1099E+02
0.1104E+020.1112E+020.1099E+020.1032E+020.9107E+010.7765E+010.6637E+010.5768E+01
0.5096E+010.4562E+010.4129E+010.3768E+010.3462E+010.3199E+010.2969E+010.2767E+01
0.2788E+010.2612E+010.2454E+010.2310E+010.2177E+010.2056E+010.1943E+010.1838E+01
0.1739E+010.1647E+010.1560E+010.1479E+010.1401E+010.1327E+010.1257E+010.1189E+01
0.1125E+010.1063E+010.1004E+010.9464E+000.8910E+000.8374E+000.7854E+000.7350E+00
0.6859E+000.6382E+000.5917E+000.5464E+000.5023E+000.4593E+000.4176E+000.3771E+00
0.3381E+000.3008E+000.2659E+000.2340E+000.2064E+000.1850E+000.1719E+000.1691E+00
0.1771E+000.1949E+000.2202E+000.2511E+000.2860E+000.3239E+000.3643E+000.4068E+00
0.4513E+000.4976E+000.5460E+000.5964E+000.6492E+000.7046E+000.7631E+000.8253E+00
0.8919E+000.9640E+000.1043E+010.1131E+010.1230E+010.1342E+010.1462E+010.1547E+01
0.1477E+010.1143E+010.6794E+000.5097E+000.7258E+000.9639E+000.1162E+010.1335E+01
0.1496E+010.1653E+010.1813E+010.1982E+010.2164E+010.2365E+010.2593E+010.2858E+01
0.3172E+010.3557E+010.4044E+010.4676E+010.5482E+010.6357E+010.6883E+010.6733E+01
0.6161E+010.5442E+010.4510E+010.3312E+010.2117E+010.1194E+010.6225E+000.6097E+00
0.9755E+000.1406E+010.1854E+010.2324E+010.2835E+010.3410E+010.4079E+010.4887E+01
0.5892E+010.7166E+010.8723E+010.1035E+020.1150E+020.1191E+020.1189E+020.1186E+02
0.1194E+020.1204E+020.1191E+020.1119E+020.9871E+010.8409E+010.7181E+010.6235E+01
0.5505E+010.4927E+010.4457E+010.4066E+010.3734E+010.3450E+010.3201E+010.2982E+01
0.3018E+010.2828E+010.2656E+010.2499E+010.2356E+010.2224E+010.2101E+010.1987E+01
0.1880E+010.1781E+010.1686E+010.1598E+010.1513E+010.1433E+010.1357E+010.1284E+01
0.1214E+010.1147E+010.1083E+010.1021E+010.9605E+000.9024E+000.8460E+000.7912E+00
0.7380E+000.6862E+000.6358E+000.5866E+000.5387E+000.4921E+000.4467E+000.4028E+00
0.3605E+000.3201E+000.2824E+000.2481E+000.2187E+000.1965E+000.1837E+000.1826E+00
0.1935E+000.2146E+000.2437E+000.2785E+000.3175E+000.3598E+000.4046E+000.4518E+00
0.5012E+000.5527E+000.6066E+000.6629E+000.7221E+000.7844E+000.8506E+000.9213E+00
0.9977E+000.1081E+010.1174E+010.1278E+010.1398E+010.1538E+010.1695E+010.1823E+01
0.1776E+010.1405E+010.8328E+000.4857E+000.6652E+000.9330E+000.1159E+010.1355E+01
0.1535E+010.1710E+010.1886E+010.2070E+010.2267E+010.2484E+010.2729E+010.3011E+01
0.3346E+010.3756E+010.4273E+010.4941E+010.5795E+010.6718E+010.7273E+010.7113E+01
0.6505E+010.5740E+010.4749E+010.3477E+010.2212E+010.1243E+010.6735E+000.7101E+00
0.1106E+010.1566E+010.2043E+010.2547E+010.3095E+010.3712E+010.4431E+010.5300E+01
0.6382E+010.7752E+010.9429E+010.1118E+020.1242E+020.1287E+020.1288E+020.1286E+02
0.1297E+020.1311E+020.1298E+020.1220E+020.1076E+020.9157E+010.7810E+010.6776E+01
0.5978E+010.5347E+010.4834E+010.4408E+010.4048E+010.3738E+010.3468E+010.3230E+01
0.3287E+010.3079E+010.2891E+010.2720E+010.2563E+010.2419E+010.2285E+010.2161E+01
0.2045E+010.1936E+010.1833E+010.1736E+010.1645E+010.1557E+010.1474E+010.1395E+01
0.1319E+010.1246E+010.1176E+010.1108E+010.1042E+010.9789E+000.9175E+000.8579E+00
0.7999E+000.7434E+000.6884E+000.6348E+000.5826E+000.5317E+000.4822E+000.4343E+00
0.3881E+000.3440E+000.3028E+000.2654E+000.2335E+000.2096E+000.1964E+000.1963E+00
0.2093E+000.2336E+000.2664E+000.3053E+000.3487E+000.3955E+000.4452E+000.4975E+00
0.5521E+000.6093E+000.6691E+000.7317E+000.7977E+000.8674E+000.9417E+000.1021E+01
0.1108E+010.1203E+010.1310E+010.1431E+010.1573E+010.1742E+010.1937E+010.2109E+01
0.2085E+010.1682E+010.1017E+010.5118E+000.6197E+000.9130E+000.1168E+010.1387E+01
0.1587E+010.1780E+010.1973E+010.2173E+010.2386E+010.2620E+010.2882E+010.3184E+01
0.3541E+010.3977E+010.4525E+010.5233E+010.6136E+010.7111E+010.7694E+010.7520E+01
0.6872E+010.6056E+010.4999E+010.3645E+010.2304E+010.1292E+010.7420E+000.8415E+00
0.1272E+010.1763E+010.2275E+010.2816E+010.3405E+010.4071E+010.4847E+010.5786E+01
0.6955E+010.8436E+010.1025E+020.1214E+020.1350E+020.1399E+020.1402E+020.1404E+02
0.1419E+020.1437E+020.1425E+020.1340E+020.1181E+020.1004E+020.8551E+010.7410E+01
0.6531E+010.5838E+010.5275E+010.4808E+010.4413E+010.4074E+010.3778E+010.3518E+01
0.3604E+010.3375E+010.3168E+010.2980E+010.2808E+010.2650E+010.2503E+010.2366E+01
0.2239E+010.2119E+010.2007E+010.1901E+010.1800E+010.1704E+010.1613E+010.1526E+01
0.1443E+010.1363E+010.1286E+010.1212E+010.1140E+010.1071E+010.1003E+010.9379E+00
0.8744E+000.8125E+000.7522E+000.6935E+000.6361E+000.5803E+000.5259E+000.4732E+00
0.4224E+000.3738E+000.3282E+000.2868E+000.2513E+000.2245E+000.2097E+000.2094E+00
0.2241E+000.2512E+000.2878E+000.3310E+000.3791E+000.4310E+000.4859E+000.5437E+00
0.6042E+000.6675E+000.7338E+000.8033E+000.8766E+000.9544E+000.1037E+010.1127E+01
0.1224E+010.1332E+010.1453E+010.1592E+010.1757E+010.1955E+010.2188E+010.2405E+01
0.2407E+010.1971E+010.1220E+010.5807E+000.5934E+000.9067E+000.1190E+010.1434E+01
0.1655E+010.1866E+010.2077E+010.2294E+010.2525E+010.2776E+010.3058E+010.3381E+01
0.3762E+010.4225E+010.4807E+010.5558E+010.6512E+010.7541E+010.8152E+010.7962E+01
0.7269E+010.6396E+010.5264E+010.3818E+010.2397E+010.1346E+010.8408E+000.1015E+01
0.1484E+010.2011E+010.2561E+010.3144E+010.3782E+010.4502E+010.5345E+010.6364E+01
0.7634E+010.9243E+010.1121E+020.1327E+020.1476E+020.1532E+020.1538E+020.1544E+02
0.1565E+020.1589E+020.1579E+020.1486E+020.1309E+020.1110E+020.9437E+010.8166E+01
0.7190E+010.6421E+010.5797E+010.5281E+010.4845E+010.4471E+010.4145E+010.3858E+01
0.3985E+010.3731E+010.3502E+010.3294E+010.3103E+010.2927E+010.2765E+010.2613E+01
0.2472E+010.2340E+010.2216E+010.2098E+010.1987E+010.1882E+010.1781E+010.1685E+01
0.1593E+010.1505E+010.1420E+010.1338E+010.1259E+010.1182E+010.1108E+010.1036E+01
0.9656E+000.8974E+000.8308E+000.7659E+000.7026E+000.6408E+000.5806E+000.5222E+00
0.4657E+000.4115E+000.3605E+000.3137E+000.2731E+000.2418E+000.2235E+000.2217E+00
0.2369E+000.2665E+000.3069E+000.3548E+000.4081E+000.4656E+000.5265E+000.5905E+00
0.6575E+000.7276E+000.8010E+000.8782E+000.9596E+000.1046E+010.1138E+010.1238E+01
0.1347E+010.1468E+010.1605E+010.1763E+010.1951E+010.2180E+010.2453E+010.2715E+01
0.2741E+010.2273E+010.1436E+010.6801E+000.5912E+000.9182E+000.1230E+010.1499E+01
0.1742E+010.1974E+010.2203E+010.2439E+010.2689E+010.2960E+010.3262E+010.3608E+01
0.4015E+010.4509E+010.5128E+010.5924E+010.6934E+010.8020E+010.8660E+010.8448E+01
0.7705E+010.6767E+010.5550E+010.4002E+010.2495E+010.1418E+010.9887E+000.1245E+01
0.1758E+010.2326E+010.2919E+010.3552E+010.4245E+010.5030E+010.5950E+010.7064E+01
0.8453E+010.1021E+020.1237E+020.1463E+020.1627E+020.1691E+020.1702E+020.1714E+02
0.1744E+020.1777E+020.1769E+020.1666E+020.1466E+020.1240E+020.1052E+020.9087E+01
0.7990E+010.7127E+010.6430E+010.5853E+010.5367E+010.4950E+010.4587E+010.4268E+01
0.4455E+010.4170E+010.3913E+010.3679E+010.3465E+010.3268E+010.3087E+010.2918E+01
0.2760E+010.2612E+010.2473E+010.2342E+010.2218E+010.2100E+010.1988E+010.1881E+01
0.1779E+010.1680E+010.1585E+010.1494E+010.1406E+010.1321E+010.1238E+010.1158E+01
0.1080E+010.1004E+010.9296E+000.8572E+000.7866E+000.7176E+000.6503E+000.5848E+00
0.5213E+000.4602E+000.4021E+000.3482E+000.3006E+000.2624E+000.2381E+000.2323E+00
0.2465E+000.2780E+000.3223E+000.3753E+000.4345E+000.4984E+000.5662E+000.6373E+00
0.7118E+000.7897E+000.8713E+000.9571E+000.1048E+010.1144E+010.1247E+010.1358E+01
0.1480E+010.1615E+010.1769E+010.1947E+010.2159E+010.2420E+010.2734E+010.3043E+01
0.3093E+010.2589E+010.1663E+010.8014E+000.6186E+000.9535E+000.1293E+010.1589E+01
0.1856E+010.2109E+010.2360E+010.2616E+010.2886E+010.3179E+010.3505E+010.3876E+01
0.4312E+010.4839E+010.5498E+010.6344E+010.7415E+010.8562E+010.9232E+010.8996E+01
0.8194E+010.7183E+010.5869E+010.4207E+010.2611E+010.1529E+010.1213E+010.1557E+01
0.2118E+010.2732E+010.3377E+010.4066E+010.4826E+010.5688E+010.6700E+010.7927E+01
0.9458E+010.1140E+020.1378E+020.1628E+020.1811E+020.1887E+020.1906E+020.1928E+02
0.1970E+020.2015E+020.2012E+020.1897E+020.1666E+020.1405E+020.1188E+020.1024E+02
0.8986E+010.8005E+010.7214E+010.6561E+010.6011E+010.5541E+010.5132E+010.4774E+01
0.5050E+010.4725E+010.4432E+010.4166E+010.3923E+010.3700E+010.3493E+010.3302E+01
0.3123E+010.2956E+010.2799E+010.2650E+010.2510E+010.2377E+010.2250E+010.2129E+01
0.2014E+010.1903E+010.1796E+010.1693E+010.1594E+010.1498E+010.1405E+010.1314E+01
0.1226E+010.1140E+010.1057E+010.9752E+000.8954E+000.8174E+000.7413E+000.6669E+00
0.5945E+000.5245E+000.4573E+000.3941E+000.3367E+000.2884E+000.2543E+000.2406E+00
0.2509E+000.2830E+000.3312E+000.3901E+000.4564E+000.5279E+000.6038E+000.6834E+00
0.7667E+000.8538E+000.9450E+000.1041E+010.1142E+010.1249E+010.1364E+010.1488E+01
0.1625E+010.1776E+010.1948E+010.2148E+010.2387E+010.2681E+010.3038E+010.3395E+01
0.3468E+010.2924E+010.1905E+010.9434E+000.6833E+000.1022E+010.1389E+010.1712E+01
0.2005E+010.2282E+010.2556E+010.2835E+010.3129E+010.3446E+010.3798E+010.4198E+01
0.4667E+010.5232E+010.5936E+010.6838E+010.7977E+010.9193E+010.9896E+010.9632E+01
0.8765E+010.7670E+010.6245E+010.4453E+010.2770E+010.1725E+010.1554E+010.1985E+01
0.2600E+010.3268E+010.3974E+010.4732E+010.5571E+010.6527E+010.7652E+010.9018E+01
0.1072E+020.1289E+020.1555E+020.1836E+020.2044E+020.2136E+020.2168E+020.2205E+02
0.2266E+020.2331E+020.2336E+020.2204E+020.1930E+020.1620E+020.1364E+020.1172E+02
0.1026E+020.9126E+010.8213E+010.7462E+010.6830E+010.6291E+010.5823E+010.5413E+01
0.5824E+010.5447E+010.5107E+010.4799E+010.4518E+010.4260E+010.4021E+010.3800E+01
0.3594E+010.3402E+010.3221E+010.3051E+010.2889E+010.2737E+010.2591E+010.2453E+01
0.2320E+010.2193E+010.2070E+010.1953E+010.1839E+010.1729E+010.1622E+010.1519E+01
0.1418E+010.1320E+010.1225E+010.1131E+010.1040E+010.9503E+000.8627E+000.7770E+00
0.6932E+000.6115E+000.5324E+000.4568E+000.3861E+000.3233E+000.2738E+000.2456E+00
0.2464E+000.2765E+000.3285E+000.3945E+000.4696E+000.5508E+000.6368E+000.7270E+00
0.8212E+000.9196E+000.1022E+010.1130E+010.1244E+010.1365E+010.1494E+010.1633E+01
0.1786E+010.1955E+010.2148E+010.2372E+010.2641E+010.2972E+010.3376E+010.3784E+01
0.3881E+010.3292E+010.2173E+010.1115E+010.7986E+000.1137E+010.1531E+010.1884E+01
0.2204E+010.2508E+010.2808E+010.3114E+010.3434E+010.3780E+010.4163E+010.4597E+01
0.5103E+010.5712E+010.6469E+010.7436E+010.8654E+010.9951E+010.1070E+020.1040E+02
0.9467E+010.8279E+010.6728E+010.4792E+010.3037E+010.2083E+010.2074E+010.2587E+01
0.3262E+010.3994E+010.4773E+010.5616E+010.6554E+010.7627E+010.8893E+010.1043E+02
0.1236E+020.1482E+020.1784E+020.2105E+020.2349E+020.2466E+020.2519E+020.2582E+02
0.2675E+020.2771E+020.2790E+020.2634E+020.2296E+020.1914E+020.1601E+020.1369E+02
0.1195E+020.1060E+020.9526E+010.8641E+010.7901E+010.7270E+010.6724E+010.6247E+01
0.6841E+010.6394E+010.5993E+010.5629E+010.5297E+010.4993E+010.4713E+010.4454E+01
0.4212E+010.3986E+010.3774E+010.3575E+010.3387E+010.3208E+010.3038E+010.2876E+01
0.2722E+010.2573E+010.2431E+010.2294E+010.2162E+010.2034E+010.1910E+010.1790E+01
0.1673E+010.1558E+010.1447E+010.1338E+010.1232E+010.1128E+010.1025E+010.9248E+00
0.8262E+000.7295E+000.6349E+000.5429E+000.4546E+000.3719E+000.2994E+000.2459E+00
0.2258E+000.2479E+000.3038E+000.3798E+000.4670E+000.5614E+000.6609E+000.7649E+00
0.8731E+000.9856E+000.1103E+010.1226E+010.1355E+010.1492E+010.1638E+010.1796E+01
0.1968E+010.2159E+010.2376E+010.2629E+010.2931E+010.3304E+010.3760E+010.4226E+01
0.4353E+010.3718E+010.2493E+010.1345E+010.9882E+000.1319E+010.1737E+010.2119E+01
0.2470E+010.2804E+010.3134E+010.3470E+010.3823E+010.4203E+010.4621E+010.5095E+01
0.5647E+010.6309E+010.7130E+010.8176E+010.9492E+010.1089E+020.1170E+020.1140E+02
0.1040E+020.9114E+010.7426E+010.5339E+010.3542E+010.2730E+010.2865E+010.3451E+01
0.4189E+010.4995E+010.5862E+010.6810E+010.7872E+010.9095E+010.1054E+020.1231E+02
0.1453E+020.1736E+020.2088E+020.2465E+020.2763E+020.2922E+020.3016E+020.3127E+02
0.3275E+020.3425E+020.3469E+020.3269E+020.2822E+020.2322E+020.1925E+020.1636E+02
0.1422E+020.1257E+020.1127E+020.1020E+020.9315E+010.8561E+010.7911E+010.7343E+01
0.8082E+010.7550E+010.7073E+010.6641E+010.6248E+010.5888E+010.5557E+010.5250E+01
0.4965E+010.4699E+010.4449E+010.4214E+010.3993E+010.3783E+010.3583E+010.3393E+01
0.3212E+010.3038E+010.2871E+010.2711E+010.2556E+010.2406E+010.2261E+010.2121E+01
0.1984E+010.1850E+010.1720E+010.1593E+010.1468E+010.1346E+010.1226E+010.1108E+01
0.9911E+000.8762E+000.7629E+000.6514E+000.5417E+000.4349E+000.3331E+000.2422E+00
0.1798E+000.1794E+000.2425E+000.3360E+000.4423E+000.5552E+000.6728E+000.7945E+00
0.9203E+000.1051E+010.1186E+010.1327E+010.1475E+010.1631E+010.1797E+010.1976E+01
0.2172E+010.2388E+010.2634E+010.2919E+010.3260E+010.3682E+010.4201E+010.4739E+01
0.4911E+010.4241E+010.2914E+010.1681E+010.1282E+010.1584E+010.2014E+010.2422E+01
0.2803E+010.3169E+010.3532E+010.3903E+010.4292E+010.4710E+010.5172E+010.5693E+01
0.6299E+010.7024E+010.7923E+010.9069E+010.1051E+020.1207E+020.1300E+020.1273E+02
0.1170E+020.1034E+020.8526E+010.6293E+010.4486E+010.3803E+010.4023E+010.4654E+01
0.5448E+010.6331E+010.7298E+010.8370E+010.9583E+010.1099E+020.1267E+020.1473E+02
0.1733E+020.2068E+020.2487E+020.2949E+020.3333E+020.3570E+020.3741E+020.3939E+02
0.4188E+020.4428E+020.4496E+020.4191E+020.3535E+020.2848E+020.2331E+020.1966E+02
0.1701E+020.1499E+020.1340E+020.1212E+020.1104E+020.1014E+020.9359E+010.8680E+01
0.9258E+010.8646E+010.8098E+010.7603E+010.7152E+010.6740E+010.6360E+010.6009E+01
0.5683E+010.5378E+010.5093E+010.4825E+010.4572E+010.4332E+010.4104E+010.3888E+01
0.3681E+010.3483E+010.3293E+010.3110E+010.2933E+010.2763E+010.2598E+010.2437E+01
0.2282E+010.2130E+010.1982E+010.1837E+010.1695E+010.1555E+010.1418E+010.1283E+01
0.1150E+010.1018E+010.8872E+000.7577E+000.6290E+000.5011E+000.3737E+000.2475E+00
0.1256E+000.5893E-010.1578E+000.2845E+000.4157E+000.5498E+000.6866E+000.8266E+00
0.9702E+000.1118E+010.1271E+010.1430E+010.1597E+010.1772E+010.1959E+010.2160E+01
0.2379E+010.2621E+010.2896E+010.3216E+010.3600E+010.4077E+010.4670E+010.5301E+01
0.5550E+010.4877E+010.3469E+010.2152E+010.1672E+010.1904E+010.2320E+010.2741E+01
0.3145E+010.3538E+010.3931E+010.4334E+010.4758E+010.5215E+010.5719E+010.6288E+01
0.6950E+010.7745E+010.8731E+010.9994E+010.1160E+020.1337E+020.1451E+020.1437E+02
0.1339E+020.1202E+020.1011E+020.7749E+010.5924E+010.5278E+010.5490E+010.6114E+01
0.6933E+010.7876E+010.8935E+010.1013E+020.1150E+020.1311E+020.1505E+020.1745E+02
0.2051E+020.2450E+020.2960E+020.3541E+020.4058E+020.4426E+020.4728E+020.5071E+02
0.5465E+020.5800E+020.5807E+020.5228E+020.4241E+020.3339E+020.2705E+020.2271E+02
0.1960E+020.1725E+020.1540E+020.1391E+020.1267E+020.1163E+020.1073E+020.9946E+01
0.9989E+010.9332E+010.8742E+010.8209E+010.7724E+010.7280E+010.6872E+010.6493E+01
0.6142E+010.5814E+010.5506E+010.5217E+010.4944E+010.4686E+010.4440E+010.4207E+01
0.3984E+010.3770E+010.3565E+010.3367E+010.3177E+010.2993E+010.2815E+010.2643E+01
0.2474E+010.2311E+010.2151E+010.1995E+010.1842E+010.1691E+010.1544E+010.1398E+01
0.1254E+010.1112E+010.9720E+000.8328E+000.6948E+000.5578E+000.4221E+000.2891E+00
0.1653E+000.9807E-010.1764E+000.3047E+000.4430E+000.5859E+000.7325E+000.8828E+00
0.1037E+010.1196E+010.1361E+010.1533E+010.1713E+010.1903E+010.2105E+010.2322E+01
0.2560E+010.2825E+010.3125E+010.3476E+010.3900E+010.4432E+010.5103E+010.5841E+01
0.6198E+010.5562E+010.4102E+010.2696E+010.2095E+010.2216E+010.2586E+010.2998E+01
0.3408E+010.3816E+010.4228E+010.4653E+010.5103E+010.5588E+010.6125E+010.6734E+01
0.7445E+010.8301E+010.9369E+010.1075E+020.1254E+020.1456E+020.1599E+020.1607E+02
0.1522E+020.1388E+020.1190E+020.9462E+010.7596E+010.6887E+010.7015E+010.7580E+01
0.8382E+010.9348E+010.1047E+020.1176E+020.1327E+020.1506E+020.1725E+020.2000E+02
0.2354E+020.2824E+020.3439E+020.4168E+020.4862E+020.5409E+020.5886E+020.6395E+02
0.6903E+020.7191E+020.6890E+020.5878E+020.4605E+020.3585E+020.2900E+020.2437E+02
0.2105E+020.1854E+020.1657E+020.1497E+020.1365E+020.1253E+020.1157E+020.1073E+02
0.1024E+020.9574E+010.8975E+010.8432E+010.7938E+010.7485E+010.7067E+010.6681E+01
0.6321E+010.5985E+010.5670E+010.5373E+010.5093E+010.4828E+010.4576E+010.4336E+01
0.4107E+010.3887E+010.3676E+010.3473E+010.3277E+010.3088E+010.2905E+010.2727E+01
0.2555E+010.2386E+010.2222E+010.2061E+010.1904E+010.1750E+010.1599E+010.1450E+01
0.1303E+010.1159E+010.1017E+010.8771E+000.7402E+000.6070E+000.4803E+000.3662E+00
0.2807E+000.2551E+000.3061E+000.4073E+000.5322E+000.6694E+000.8143E+000.9656E+00
0.1123E+010.1286E+010.1456E+010.1633E+010.1820E+010.2018E+010.2230E+010.2458E+01
0.2709E+010.2989E+010.3309E+010.3685E+010.4144E+010.4726E+010.5473E+010.6321E+01
0.6798E+010.6224E+010.4733E+010.3237E+010.2501E+010.2494E+010.2794E+010.3178E+01
0.3580E+010.3989E+010.4408E+010.4844E+010.5308E+010.5812E+010.6371E+010.7008E+01
0.7754E+010.8659E+010.9798E+010.1129E+020.1324E+020.1553E+020.1728E+020.1762E+02
0.1691E+020.1561E+020.1362E+020.1116E+020.9237E+010.8421E+010.8435E+010.8916E+01
0.9676E+010.1064E+020.1179E+020.1316E+020.1477E+020.1673E+020.1915E+020.2222E+02
0.2625E+020.3168E+020.3897E+020.4792E+020.5688E+020.6435E+020.7081E+020.7684E+02
0.8114E+020.8055E+020.7264E+020.5930E+020.4582E+020.3577E+020.2910E+020.2457E+02
0.2130E+020.1882E+020.1686E+020.1527E+020.1394E+020.1281E+020.1184E+020.1099E+02
0.1027E+020.9607E+010.9013E+010.8475E+010.7983E+010.7532E+010.7115E+010.6729E+01
0.6369E+010.6033E+010.5717E+010.5420E+010.5139E+010.4873E+010.4619E+010.4378E+01
0.4147E+010.3926E+010.3714E+010.3510E+010.3313E+010.3123E+010.2938E+010.2759E+01
0.2585E+010.2416E+010.2251E+010.2089E+010.1932E+010.1777E+010.1626E+010.1477E+01
0.1332E+010.1189E+010.1050E+010.9148E+000.7845E+000.6615E+000.5503E+000.4592E+00
0.4022E+000.3950E+000.4411E+000.5278E+000.6404E+000.7691E+000.9089E+000.1057E+01
0.1213E+010.1377E+010.1548E+010.1729E+010.1919E+010.2122E+010.2339E+010.2576E+01
0.2836E+010.3129E+010.3465E+010.3863E+010.4353E+010.4981E+010.5800E+010.6758E+01
0.7361E+010.6858E+010.5348E+010.3765E+010.2901E+010.2767E+010.2989E+010.3331E+01
0.3715E+010.4116E+010.4534E+010.4974E+010.5446E+010.5960E+010.6534E+010.7191E+01
0.7966E+010.8912E+010.1011E+020.1170E+020.1382E+020.1637E+020.1844E+020.1905E+02
0.1847E+020.1721E+020.1525E+020.1282E+020.1084E+020.9917E+010.9822E+010.1022E+02
0.1094E+020.1190E+020.1308E+020.1450E+020.1623E+020.1835E+020.2100E+020.2441E+02
0.2894E+020.3516E+020.4368E+020.5442E+020.6551E+020.7481E+020.8210E+020.8705E+02
0.8759E+020.8176E+020.7027E+020.5631E+020.4367E+020.3447E+020.2831E+020.2408E+02
0.2098E+020.1861E+020.1673E+020.1519E+020.1389E+020.1279E+020.1184E+020.1101E+02
0.1028E+020.9631E+010.9043E+010.8509E+010.8021E+010.7573E+010.7158E+010.6773E+01
0.6414E+010.6078E+010.5763E+010.5465E+010.5184E+010.4917E+010.4663E+010.4421E+01
0.4190E+010.3968E+010.3755E+010.3550E+010.3352E+010.3161E+010.2976E+010.2797E+01
0.2622E+010.2452E+010.2287E+010.2126E+010.1968E+010.1814E+010.1664E+010.1517E+01
0.1373E+010.1234E+010.1099E+010.9687E+000.8460E+000.7333E+000.6358E+000.5611E+00
0.5193E+000.5189E+000.5611E+000.6384E+000.7414E+000.8625E+000.9968E+000.1142E+01
0.1296E+010.1458E+010.1630E+010.1812E+010.2005E+010.2211E+010.2434E+010.2676E+01
0.2945E+010.3248E+010.3599E+010.4018E+010.4538E+010.5211E+010.6103E+010.7174E+01
0.7912E+010.7495E+010.5977E+010.4315E+010.3333E+010.3076E+010.3209E+010.3501E+01
0.3855E+010.4241E+010.4652E+010.5090E+010.5563E+010.6084E+010.6668E+010.7341E+01
0.8139E+010.9120E+010.1038E+020.1206E+020.1435E+020.1716E+020.1957E+020.2045E+02
0.1999E+020.1881E+020.1697E+020.1458E+020.1255E+020.1153E+020.1133E+020.1167E+02
0.1235E+020.1330E+020.1452E+020.1602E+020.1786E+020.2015E+020.2305E+020.2683E+02
0.3192E+020.3900E+020.4885E+020.6147E+020.7454E+020.8487E+020.9108E+020.9224E+02
0.8751E+020.7783E+020.6542E+020.5250E+020.4127E+020.3305E+020.2745E+020.2352E+02
0.2062E+020.1837E+020.1657E+020.1508E+020.1383E+020.1276E+020.1183E+020.1101E+02
0.1035E+020.9701E+010.9117E+010.8586E+010.8099E+010.7651E+010.7236E+010.6851E+01
0.6492E+010.6155E+010.5838E+010.5540E+010.5257E+010.4989E+010.4734E+010.4491E+01
0.4259E+010.4036E+010.3822E+010.3616E+010.3418E+010.3226E+010.3040E+010.2860E+01
0.2685E+010.2515E+010.2350E+010.2189E+010.2032E+010.1879E+010.1730E+010.1585E+01
0.1444E+010.1307E+010.1176E+010.1051E+010.9354E+000.8308E+000.7423E+000.6760E+00
0.6390E+000.6369E+000.6708E+000.7368E+000.8285E+000.9400E+000.1067E+010.1206E+01
0.1356E+010.1516E+010.1686E+010.1868E+010.2061E+010.2269E+010.2495E+010.2742E+01
0.3017E+010.3329E+010.3692E+010.4130E+010.4678E+010.5396E+010.6363E+010.7556E+01
0.8449E+010.8145E+010.6642E+010.4915E+010.3819E+010.3435E+010.3467E+010.3690E+01
0.4001E+010.4358E+010.4751E+010.5177E+010.5643E+010.6160E+010.6745E+010.7425E+01
0.8238E+010.9246E+010.1055E+020.1233E+020.1478E+020.1789E+020.2066E+020.2183E+02
0.2153E+020.2052E+020.1886E+020.1655E+020.1448E+020.1336E+020.1307E+020.1334E+02
0.1398E+020.1494E+020.1619E+020.1776E+020.1972E+020.2219E+020.2535E+020.2951E+02
0.3517E+020.4311E+020.5428E+020.6858E+020.8289E+020.9250E+020.9522E+020.9136E+02
0.8277E+020.7190E+020.6035E+020.4905E+020.3924E+020.3190E+020.2679E+020.2314E+02
0.2039E+020.1825E+020.1651E+020.1506E+020.1384E+020.1279E+020.1187E+020.1107E+02
0.1035E+020.9711E+010.9133E+010.8606E+010.8124E+010.7679E+010.7267E+010.6884E+01
0.6527E+010.6192E+010.5877E+010.5581E+010.5300E+010.5034E+010.4780E+010.4539E+01
0.4308E+010.4087E+010.3874E+010.3670E+010.3473E+010.3283E+010.3100E+010.2922E+01
0.2750E+010.2582E+010.2420E+010.2262E+010.2108E+010.1959E+010.1814E+010.1673E+01
0.1537E+010.1406E+010.1281E+010.1163E+010.1054E+010.9567E+000.8742E+000.8111E+00
0.7722E+000.7617E+000.7813E+000.8298E+000.9037E+000.9987E+000.1111E+010.1238E+01
0.1378E+010.1529E+010.1692E+010.1867E+010.2056E+010.2260E+010.2483E+010.2728E+01
0.3004E+010.3319E+010.3689E+010.4139E+010.4709E+010.5467E+010.6508E+010.7829E+01
0.8902E+010.8754E+010.7310E+010.5540E+010.4332E+010.3808E+010.3713E+010.3840E+01
0.4081E+010.4387E+010.4739E+010.5133E+010.5573E+010.6068E+010.6635E+010.7301E+01
0.8107E+010.9122E+010.1046E+020.1230E+020.1491E+020.1831E+020.2147E+020.2297E+02
0.2294E+020.2222E+020.2082E+020.1865E+020.1656E+020.1534E+020.1495E+020.1512E+02
0.1570E+020.1663E+020.1788E+020.1948E+020.2152E+020.2411E+020.2746E+020.3191E+02
0.3800E+020.4658E+020.5864E+020.7376E+020.8763E+020.9436E+020.9262E+020.8522E+02
0.7546E+020.6534E+020.5542E+020.4585E+020.3737E+020.3083E+020.2614E+020.2272E+02
0.2012E+020.1806E+020.1638E+020.1498E+020.1379E+020.1276E+020.1186E+020.1106E+02
0.9956E+010.9346E+010.8794E+010.8291E+010.7830E+010.7405E+010.7012E+010.6646E+01
0.6305E+010.5986E+010.5686E+010.5404E+010.5137E+010.4883E+010.4643E+010.4414E+01
0.4195E+010.3986E+010.3785E+010.3592E+010.3407E+010.3228E+010.3055E+010.2889E+01
0.2728E+010.2571E+010.2420E+010.2273E+010.2131E+010.1994E+010.1861E+010.1732E+01
0.1609E+010.1490E+010.1378E+010.1273E+010.1177E+010.1091E+010.1017E+010.9583E+00
0.9181E+000.8989E+000.9024E+000.9291E+000.9780E+000.1047E+010.1135E+010.1238E+01
0.1356E+010.1487E+010.1631E+010.1788E+010.1961E+010.2149E+010.2358E+010.2591E+01
0.2855E+010.3161E+010.3525E+010.3975E+010.4554E+010.5338E+010.6437E+010.7874E+01
0.9128E+010.9167E+010.7829E+010.6050E+010.4735E+010.4058E+010.3810E+010.3807E+01
0.3943E+010.4163E+010.4443E+010.4774E+010.5157E+010.5599E+010.6116E+010.6735E+01
0.7500E+010.8483E+010.9807E+010.1168E+020.1440E+020.1803E+020.2154E+020.2341E+02
0.2375E+020.2341E+020.2236E+020.2039E+020.1831E+020.1698E+020.1644E+020.1648E+02
0.1693E+020.1775E+020.1890E+020.2043E+020.2240E+020.2494E+020.2826E+020.3269E+02
0.3877E+020.4732E+020.5917E+020.7333E+020.8466E+020.8764E+020.8298E+020.7479E+02
0.6598E+020.5763E+020.4966E+020.4186E+020.3471E+020.2898E+020.2476E+020.2162E+02
0.1920E+020.1727E+020.1569E+020.1436E+020.1323E+020.1225E+020.1139E+020.1063E+02
0.8909E+010.8365E+010.7872E+010.7424E+010.7013E+010.6636E+010.6287E+010.5963E+01
0.5661E+010.5378E+010.5114E+010.4864E+010.4629E+010.4407E+010.4196E+010.3995E+01
0.3804E+010.3621E+010.3447E+010.3279E+010.3119E+010.2965E+010.2816E+010.2673E+01
0.2535E+010.2402E+010.2274E+010.2150E+010.2031E+010.1916E+010.1806E+010.1700E+01
0.1599E+010.1503E+010.1414E+010.1330E+010.1254E+010.1187E+010.1129E+010.1083E+01
0.1049E+010.1030E+010.1026E+010.1037E+010.1066E+010.1110E+010.1170E+010.1244E+01
0.1332E+010.1434E+010.1550E+010.1680E+010.1826E+010.1989E+010.2173E+010.2383E+01
0.2625E+010.2912E+010.3260E+010.3697E+010.4272E+010.5064E+010.6194E+010.7703E+01
0.9081E+010.9264E+010.8028E+010.6256E+010.4853E+010.4030E+010.3626E+010.3478E+01
0.3488E+010.3601E+010.3787E+010.4034E+010.4339E+010.4707E+010.5155E+010.5709E+01
0.6415E+010.7348E+010.8639E+010.1051E+020.1328E+020.1703E+020.2075E+020.2292E+02
0.2360E+020.2361E+020.2289E+020.2114E+020.1908E+020.1762E+020.1690E+020.1674E+02
0.1700E+020.1760E+020.1854E+020.1984E+020.2155E+020.2380E+020.2675E+020.3071E+02
0.3615E+020.4373E+020.5396E+020.6545E+020.7335E+020.7378E+020.6863E+020.6161E+02
0.5471E+020.4841E+020.4242E+020.3636E+020.3056E+020.2572E+020.2207E+020.1931E+02
0.1717E+020.1545E+020.1403E+020.1285E+020.1184E+020.1096E+020.1019E+020.9514E+01
0.7485E+010.7026E+010.6613E+010.6237E+010.5893E+010.5577E+010.5286E+010.5017E+01
0.4766E+010.4532E+010.4314E+010.4108E+010.3915E+010.3732E+010.3560E+010.3396E+01
0.3241E+010.3093E+010.2951E+010.2817E+010.2688E+010.2565E+010.2447E+010.2334E+01
0.2225E+010.2121E+010.2022E+010.1926E+010.1835E+010.1748E+010.1666E+010.1587E+01
0.1514E+010.1445E+010.1382E+010.1324E+010.1273E+010.1228E+010.1191E+010.1162E+01
0.1142E+010.1132E+010.1132E+010.1143E+010.1165E+010.1198E+010.1243E+010.1299E+01
0.1367E+010.1448E+010.1541E+010.1648E+010.1771E+010.1913E+010.2075E+010.2265E+01
0.2489E+010.2759E+010.3093E+010.3521E+010.4091E+010.4885E+010.6028E+010.7561E+01
0.8973E+010.9195E+010.7983E+010.6192E+010.4711E+010.3772E+010.3238E+010.2965E+01
0.2864E+010.2883E+010.2990E+010.3170E+010.3417E+010.3736E+010.4142E+010.4663E+01
0.5346E+010.6269E+010.7565E+010.9457E+010.1226E+020.1605E+020.1985E+020.2214E+02
0.2299E+020.2319E+020.2266E+020.2102E+020.1893E+020.1733E+020.1642E+020.1604E+02
0.1607E+020.1643E+020.1709E+020.1808E+020.1943E+020.2123E+020.2364E+020.2688E+02
0.3131E+020.3743E+020.4547E+020.5403E+020.5927E+020.5873E+020.5437E+020.4898E+02
0.4391E+020.3934E+020.3494E+020.3032E+020.2570E+020.2172E+020.1865E+020.1631E+02
0.1449E+020.1303E+020.1183E+020.1082E+020.9961E+010.9218E+010.8568E+010.7995E+01
0.6145E+010.5767E+010.5426E+010.5118E+010.4836E+010.4578E+010.4341E+010.4122E+01
0.3919E+010.3731E+010.3554E+010.3389E+010.3235E+010.3089E+010.2952E+010.2822E+01
0.2700E+010.2584E+010.2473E+010.2369E+010.2269E+010.2175E+010.2085E+010.1999E+01
0.1918E+010.1840E+010.1767E+010.1698E+010.1632E+010.1571E+010.1513E+010.1460E+01
0.1411E+010.1367E+010.1327E+010.1293E+010.1264E+010.1240E+010.1223E+010.1212E+01
0.1207E+010.1210E+010.1221E+010.1239E+010.1265E+010.1300E+010.1343E+010.1396E+01
0.1459E+010.1533E+010.1618E+010.1717E+010.1832E+010.1964E+010.2119E+010.2301E+01
0.2519E+010.2785E+010.3117E+010.3546E+010.4121E+010.4925E+010.6080E+010.7619E+01
0.9014E+010.9189E+010.7918E+010.6060E+010.4498E+010.3464E+010.2832E+010.2469E+01
0.2293E+010.2257E+010.2329E+010.2490E+010.2732E+010.3059E+010.3482E+010.4031E+01
0.4753E+010.5725E+010.7081E+010.9039E+010.1190E+020.1573E+020.1952E+020.2180E+02
0.2266E+020.2288E+020.2239E+020.2074E+020.1854E+020.1678E+020.1569E+020.1512E+02
0.1493E+020.1506E+020.1548E+020.1617E+020.1719E+020.1858E+020.2047E+020.2303E+02
0.2654E+020.3135E+020.3754E+020.4393E+020.4757E+020.4682E+020.4333E+020.3923E+02
0.3544E+020.3206E+020.2874E+020.2513E+020.2139E+020.1808E+020.1550E+020.1354E+02
0.1200E+020.1077E+020.9764E+010.8920E+010.8202E+010.7583E+010.7043E+010.6567E+01
0.5070E+010.4756E+010.4473E+010.4218E+010.3987E+010.3775E+010.3581E+010.3403E+01
0.3238E+010.3085E+010.2942E+010.2810E+010.2686E+010.2570E+010.2461E+010.2359E+01
0.2262E+010.2172E+010.2086E+010.2006E+010.1930E+010.1858E+010.1791E+010.1727E+01
0.1668E+010.1612E+010.1560E+010.1512E+010.1467E+010.1427E+010.1390E+010.1357E+01
0.1328E+010.1304E+010.1283E+010.1268E+010.1256E+010.1250E+010.1249E+010.1253E+01
0.1263E+010.1279E+010.1300E+010.1328E+010.1363E+010.1405E+010.1454E+010.1512E+01
0.1578E+010.1655E+010.1742E+010.1843E+010.1959E+010.2094E+010.2251E+010.2437E+01
0.2660E+010.2932E+010.3273E+010.3713E+010.4303E+010.5127E+010.6304E+010.7856E+01
0.9225E+010.9320E+010.7940E+010.5978E+010.4323E+010.3207E+010.2499E+010.2073E+01
0.1857E+010.1811E+010.1900E+010.2098E+010.2389E+010.2770E+010.3254E+010.3868E+01
0.4659E+010.5709E+010.7151E+010.9203E+010.1216E+020.1605E+020.1984E+020.2206E+02
0.2285E+020.2303E+020.2248E+020.2073E+020.1837E+020.1643E+020.1516E+020.1441E+02
0.1405E+020.1399E+020.1420E+020.1467E+020.1541E+020.1648E+020.1797E+020.2001E+02
0.2282E+020.2665E+020.3154E+020.3649E+020.3917E+020.3841E+020.3556E+020.3230E+02
0.2934E+020.2671E+020.2408E+020.2114E+020.1801E+020.1520E+020.1300E+020.1132E+02
0.1001E+020.8964E+010.8109E+010.7396E+010.6791E+010.6271E+010.5818E+010.5421E+01
0.4235E+010.3970E+010.3733E+010.3520E+010.3327E+010.3151E+010.2990E+010.2843E+01
0.2707E+010.2582E+010.2466E+010.2359E+010.2259E+010.2166E+010.2079E+010.1998E+01
0.1922E+010.1851E+010.1785E+010.1724E+010.1667E+010.1613E+010.1564E+010.1518E+01
0.1476E+010.1438E+010.1403E+010.1372E+010.1344E+010.1321E+010.1300E+010.1284E+01
0.1271E+010.1263E+010.1258E+010.1257E+010.1261E+010.1269E+010.1281E+010.1298E+01
0.1320E+010.1347E+010.1380E+010.1418E+010.1462E+010.1512E+010.1570E+010.1635E+01
0.1709E+010.1792E+010.1887E+010.1995E+010.2118E+010.2261E+010.2426E+010.2621E+01
0.2855E+010.3140E+010.3496E+010.3955E+010.4568E+010.5420E+010.6630E+010.8208E+01
0.9559E+010.9565E+010.8053E+010.5964E+010.4207E+010.3011E+010.2241E+010.1774E+01
0.1553E+010.1543E+010.1697E+010.1971E+010.2336E+010.2790E+010.3345E+010.4031E+01
0.4900E+010.6035E+010.7573E+010.9736E+010.1282E+020.1682E+020.2065E+020.2282E+02
0.2353E+020.2363E+020.2298E+020.2106E+020.1850E+020.1636E+020.1491E+020.1401E+02
0.1349E+020.1328E+020.1332E+020.1360E+020.1414E+020.1496E+020.1615E+020.1780E+02
0.2009E+020.2323E+020.2721E+020.3118E+020.3325E+020.3249E+020.3007E+020.2738E+02
0.2495E+020.2279E+020.2062E+020.1812E+020.1542E+020.1298E+020.1106E+020.9598E+01
0.8465E+010.7562E+010.6826E+010.6214E+010.5696E+010.5253E+010.4868E+010.4532E+01
0.3577E+010.3352E+010.3151E+010.2970E+010.2807E+010.2659E+010.2524E+010.2402E+01
0.2289E+010.2186E+010.2090E+010.2002E+010.1921E+010.1846E+010.1777E+010.1713E+01
0.1654E+010.1599E+010.1549E+010.1503E+010.1461E+010.1423E+010.1388E+010.1357E+01
0.1330E+010.1306E+010.1286E+010.1269E+010.1255E+010.1246E+010.1239E+010.1236E+01
0.1237E+010.1242E+010.1250E+010.1262E+010.1278E+010.1298E+010.1322E+010.1351E+01
0.1383E+010.1421E+010.1463E+010.1511E+010.1564E+010.1624E+010.1690E+010.1765E+01
0.1847E+010.1940E+010.2044E+010.2161E+010.2295E+010.2448E+010.2625E+010.2833E+01
0.3081E+010.3382E+010.3757E+010.4239E+010.4880E+010.5767E+010.7019E+010.8635E+01
0.9979E+010.9895E+010.8238E+010.6006E+010.4139E+010.2865E+010.2041E+010.1554E+01
0.1365E+010.1436E+010.1686E+010.2047E+010.2489E+010.3013E+010.3638E+010.4396E+01
0.5343E+010.6568E+010.8213E+010.1051E+020.1375E+020.1791E+020.2184E+020.2399E+02
0.2462E+020.2463E+020.2386E+020.2174E+020.1894E+020.1658E+020.1495E+020.1388E+02
0.1323E+020.1287E+020.1277E+020.1291E+020.1328E+020.1391E+020.1485E+020.1621E+02
0.1812E+020.2074E+020.2406E+020.2734E+020.2897E+020.2821E+020.2609E+020.2377E+02
0.2170E+020.1986E+020.1798E+020.1580E+020.1340E+020.1124E+020.9539E+010.8248E+01
0.7251E+010.6460E+010.5817E+010.5284E+010.4835E+010.4452E+010.4121E+010.3832E+01
0.3047E+010.2853E+010.2680E+010.2525E+010.2386E+010.2261E+010.2147E+010.2044E+01
0.1950E+010.1864E+010.1785E+010.1713E+010.1647E+010.1587E+010.1532E+010.1482E+01
0.1437E+010.1396E+010.1359E+010.1326E+010.1297E+010.1271E+010.1249E+010.1231E+01
0.1216E+010.1205E+010.1197E+010.1193E+010.1192E+010.1195E+010.1200E+010.1210E+01
0.1222E+010.1239E+010.1258E+010.1282E+010.1308E+010.1339E+010.1374E+010.1412E+01
0.1455E+010.1502E+010.1554E+010.1611E+010.1674E+010.1743E+010.1819E+010.1903E+01
0.1995E+010.2098E+010.2212E+010.2341E+010.2486E+010.2651E+010.2842E+010.3064E+01
0.3329E+010.3649E+010.4046E+010.4554E+010.5228E+010.6155E+010.7457E+010.9120E+01
0.1047E+020.1029E+020.8479E+010.6090E+010.4105E+010.2752E+010.1884E+010.1402E+01
0.1290E+010.1475E+010.1826E+010.2268E+010.2781E+010.3371E+010.4063E+010.4894E+01
0.5924E+010.7247E+010.9014E+010.1146E+020.1490E+020.1928E+020.2335E+020.2551E+02
0.2608E+020.2601E+020.2511E+020.2276E+020.1967E+020.1706E+020.1523E+020.1400E+02
0.1321E+020.1272E+020.1250E+020.1250E+020.1272E+020.1319E+020.1395E+020.1507E+02
0.1668E+020.1891E+020.2173E+020.2449E+020.2579E+020.2502E+020.2310E+020.2104E+02
0.1922E+020.1759E+020.1592E+020.1396E+020.1180E+020.9845E+010.8317E+010.7162E+01
0.6274E+010.5572E+010.5004E+010.4535E+010.4141E+010.3806E+010.3518E+010.3267E+01
0.2609E+010.2440E+010.2291E+010.2157E+010.2038E+010.1930E+010.1833E+010.1746E+01
0.1667E+010.1595E+010.1530E+010.1471E+010.1418E+010.1370E+010.1327E+010.1289E+01
0.1255E+010.1226E+010.1200E+010.1179E+010.1161E+010.1147E+010.1137E+010.1131E+01
0.1127E+010.1128E+010.1131E+010.1139E+010.1149E+010.1163E+010.1180E+010.1200E+01
0.1223E+010.1250E+010.1280E+010.1314E+010.1351E+010.1392E+010.1436E+010.1484E+01
0.1537E+010.1594E+010.1655E+010.1722E+010.1795E+010.1873E+010.1959E+010.2053E+01
0.2156E+010.2269E+010.2395E+010.2535E+010.2693E+010.2872E+010.3078E+010.3317E+01
0.3600E+010.3941E+010.4363E+010.4900E+010.5609E+010.6582E+010.7940E+010.9658E+01
0.1101E+020.1075E+020.8765E+010.6205E+010.4095E+010.2662E+010.1763E+010.1323E+01
0.1332E+010.1640E+010.2083E+010.2599E+010.3177E+010.3833E+010.4594E+010.5503E+01
0.6625E+010.8060E+010.9967E+010.1260E+020.1627E+020.2092E+020.2520E+020.2741E+02
0.2793E+020.2778E+020.2674E+020.2412E+020.2070E+020.1780E+020.1575E+020.1435E+02
0.1341E+020.1279E+020.1245E+020.1233E+020.1242E+020.1275E+020.1335E+020.1428E+02
0.1565E+020.1756E+020.2000E+020.2235E+020.2338E+020.2259E+020.2081E+020.1893E+02
0.1728E+020.1580E+020.1427E+020.1247E+020.1049E+020.8702E+010.7313E+010.6269E+01
0.5470E+010.4841E+010.4334E+010.3918E+010.3570E+010.3274E+010.3021E+010.2801E+01
0.2243E+010.2095E+010.1964E+010.1847E+010.1744E+010.1651E+010.1567E+010.1493E+01
0.1426E+010.1365E+010.1311E+010.1263E+010.1221E+010.1183E+010.1151E+010.1123E+01
0.1099E+010.1080E+010.1065E+010.1054E+010.1047E+010.1044E+010.1044E+010.1049E+01
0.1057E+010.1068E+010.1083E+010.1101E+010.1122E+010.1146E+010.1174E+010.1205E+01
0.1239E+010.1276E+010.1316E+010.1360E+010.1406E+010.1457E+010.1511E+010.1569E+01
0.1631E+010.1698E+010.1769E+010.1846E+010.1928E+010.2017E+010.2114E+010.2219E+01
0.2333E+010.2458E+010.2596E+010.2750E+010.2922E+010.3116E+010.3338E+010.3595E+01
0.3899E+010.4263E+010.4712E+010.5281E+010.6030E+010.7052E+010.8472E+010.1025E+02
0.1162E+020.1126E+020.9092E+010.6347E+010.4101E+010.2591E+010.1681E+010.1332E+01
0.1492E+010.1915E+010.2441E+010.3025E+010.3669E+010.4394E+010.5231E+010.6227E+01
0.7453E+010.9017E+010.1109E+020.1394E+020.1790E+020.2288E+020.2743E+020.2972E+02
0.3022E+020.3001E+020.2881E+020.2588E+020.2206E+020.1882E+020.1652E+020.1492E+02
0.1382E+020.1307E+020.1260E+020.1236E+020.1234E+020.1255E+020.1300E+020.1377E+02
0.1494E+020.1659E+020.1870E+020.2072E+020.2154E+020.2072E+020.1903E+020.1728E+02
0.1575E+020.1437E+020.1294E+020.1124E+020.9399E+010.7748E+010.6473E+010.5521E+01
0.4797E+010.4229E+010.3775E+010.3402E+010.3092E+010.2830E+010.2605E+010.2412E+01
0.1938E+010.1806E+010.1690E+010.1587E+010.1496E+010.1414E+010.1341E+010.1276E+01
0.1218E+010.1166E+010.1121E+010.1081E+010.1047E+010.1018E+010.9936E+000.9744E+00
0.9600E+000.9502E+000.9449E+000.9440E+000.9473E+000.9546E+000.9659E+000.9810E+00
0.9997E+000.1022E+010.1048E+010.1076E+010.1109E+010.1144E+010.1182E+010.1223E+01
0.1267E+010.1315E+010.1365E+010.1419E+010.1476E+010.1536E+010.1600E+010.1669E+01
0.1741E+010.1818E+010.1900E+010.1987E+010.2080E+010.2181E+010.2288E+010.2405E+01
0.2532E+010.2670E+010.2822E+010.2990E+010.3177E+010.3388E+010.3629E+010.3906E+01
0.4232E+010.4622E+010.5101E+010.5705E+010.6498E+010.7575E+010.9063E+010.1091E+02
0.1229E+020.1182E+020.9460E+010.6511E+010.4121E+010.2541E+010.1656E+010.1455E+01
0.1772E+010.2298E+010.2900E+010.3553E+010.4268E+010.5069E+010.5992E+010.7089E+01
0.8436E+010.1015E+020.1242E+020.1553E+020.1983E+020.2523E+020.3012E+020.3255E+02
0.3304E+020.3279E+020.3143E+020.2813E+020.2383E+020.2018E+020.1757E+020.1575E+02
0.1447E+020.1358E+020.1297E+020.1261E+020.1247E+020.1255E+020.1288E+020.1350E+02
0.1449E+020.1592E+020.1777E+020.1951E+020.2015E+020.1928E+020.1765E+020.1599E+02
0.1453E+020.1322E+020.1184E+020.1023E+020.8489E+010.6946E+010.5766E+010.4892E+01
0.4231E+010.3717E+010.3306E+010.2972E+010.2694E+010.2460E+010.2260E+010.2087E+01
0.1696E+010.1577E+010.1472E+010.1378E+010.1295E+010.1221E+010.1154E+010.1095E+01
0.1042E+010.9954E+000.9550E+000.9205E+000.8918E+000.8687E+000.8511E+000.8391E+00
0.8325E+000.8312E+000.8350E+000.8438E+000.8573E+000.8752E+000.8974E+000.9236E+00
0.9536E+000.9871E+000.1024E+010.1064E+010.1107E+010.1154E+010.1203E+010.1255E+01
0.1310E+010.1368E+010.1430E+010.1494E+010.1562E+010.1633E+010.1708E+010.1787E+01
0.1870E+010.1958E+010.2051E+010.2151E+010.2256E+010.2369E+010.2489E+010.2619E+01
0.2760E+010.2913E+010.3080E+010.3265E+010.3469E+010.3699E+010.3960E+010.4261E+01
0.4612E+010.5030E+010.5542E+010.6186E+010.7027E+010.8165E+010.9729E+010.1166E+02
0.1305E+020.1246E+020.9876E+010.6701E+010.4158E+010.2523E+010.1721E+010.1716E+01
0.2180E+010.2800E+010.3479E+010.4207E+010.5001E+010.5889E+010.6913E+010.8128E+01
0.9619E+010.1151E+020.1402E+020.1744E+020.2217E+020.2808E+020.3340E+020.3604E+02
0.3657E+020.3629E+020.3475E+020.3100E+020.2611E+020.2195E+020.1898E+020.1688E+02
0.1539E+020.1433E+020.1357E+020.1308E+020.1282E+020.1278E+020.1298E+020.1346E+02
0.1429E+020.1553E+020.1715E+020.1865E+020.1912E+020.1821E+020.1661E+020.1500E+02
0.1358E+020.1230E+020.1096E+020.9399E+010.7732E+010.6277E+010.5177E+010.4370E+01
0.3765E+010.3298E+010.2927E+010.2625E+010.2375E+010.2165E+010.1985E+010.1831E+01
0.1535E+010.1425E+010.1326E+010.1237E+010.1157E+010.1084E+010.1018E+010.9589E+00
0.9059E+000.8592E+000.8186E+000.7843E+000.7565E+000.7353E+000.7209E+000.7133E+00
0.7125E+000.7183E+000.7305E+000.7488E+000.7726E+000.8017E+000.8355E+000.8736E+00
0.9156E+000.9614E+000.1010E+010.1063E+010.1118E+010.1176E+010.1238E+010.1302E+01
0.1369E+010.1439E+010.1512E+010.1588E+010.1668E+010.1751E+010.1838E+010.1929E+01
0.2025E+010.2126E+010.2232E+010.2345E+010.2464E+010.2591E+010.2726E+010.2872E+01
0.3028E+010.3198E+010.3383E+010.3586E+010.3811E+010.4063E+010.4348E+010.4674E+01
0.5054E+010.5505E+010.6055E+010.6744E+010.7639E+010.8845E+010.1049E+020.1251E+02
0.1392E+020.1320E+020.1035E+020.6925E+010.4224E+010.2572E+010.1933E+010.2145E+01
0.2742E+010.3453E+010.4215E+010.5028E+010.5914E+010.6907E+010.8051E+010.9410E+01
0.1108E+020.1319E+020.1598E+020.1979E+020.2504E+020.3159E+020.3749E+020.4042E+02
0.4104E+020.4078E+020.3905E+020.3474E+020.2909E+020.2428E+020.2084E+020.1841E+02
0.1666E+020.1539E+020.1446E+020.1382E+020.1342E+020.1325E+020.1332E+020.1366E+02
0.1434E+020.1541E+020.1682E+020.1812E+020.1843E+020.1746E+020.1587E+020.1428E+02
0.1289E+020.1162E+020.1028E+020.8741E+010.7126E+010.5741E+010.4712E+010.3966E+01
0.3412E+010.2988E+010.2652E+010.2380E+010.2154E+010.1964E+010.1801E+010.1660E+01
0.1498E+010.1390E+010.1291E+010.1200E+010.1115E+010.1037E+010.9647E+000.8978E+00
0.8364E+000.7808E+000.7313E+000.6885E+000.6531E+000.6258E+000.6074E+000.5983E+00
0.5988E+000.6087E+000.6276E+000.6547E+000.6891E+000.7300E+000.7765E+000.8278E+00
0.8835E+000.9429E+000.1006E+010.1072E+010.1141E+010.1213E+010.1288E+010.1366E+01
0.1446E+010.1530E+010.1616E+010.1706E+010.1800E+010.1897E+010.1999E+010.2104E+01
0.2215E+010.2331E+010.2453E+010.2581E+010.2716E+010.2860E+010.3013E+010.3177E+01
0.3353E+010.3542E+010.3749E+010.3974E+010.4223E+010.4501E+010.4813E+010.5170E+01
0.5584E+010.6073E+010.6667E+010.7408E+010.8366E+010.9651E+010.1140E+020.1351E+02
0.1494E+020.1406E+020.1092E+020.7212E+010.4359E+010.2757E+010.2364E+010.2789E+01
0.3509E+010.4317E+010.5173E+010.6086E+010.7084E+010.8204E+010.9497E+010.1103E+02
0.1292E+020.1531E+020.1847E+020.2277E+020.2868E+020.3606E+020.4271E+020.4607E+02
0.4690E+020.4673E+020.4480E+020.3975E+020.3308E+020.2740E+020.2334E+020.2047E+02
0.1840E+020.1686E+020.1573E+020.1490E+020.1434E+020.1402E+020.1395E+020.1415E+02
0.1467E+020.1558E+020.1680E+020.1792E+020.1809E+020.1705E+020.1544E+020.1386E+02
0.1246E+020.1118E+020.9821E+010.8280E+010.6698E+010.5372E+010.4406E+010.3718E+01
0.3214E+010.2830E+010.2527E+010.2282E+010.2077E+010.1903E+010.1752E+010.1618E+01
0.1645E+010.1530E+010.1422E+010.1321E+010.1224E+010.1132E+010.1045E+010.9614E+00
0.8823E+000.8076E+000.7381E+000.6745E+000.6181E+000.5705E+000.5336E+000.5094E+00
0.4996E+000.5048E+000.5248E+000.5579E+000.6022E+000.6555E+000.7162E+000.7829E+00
0.8544E+000.9300E+000.1009E+010.1092E+010.1177E+010.1266E+010.1357E+010.1451E+01
0.1548E+010.1648E+010.1752E+010.1858E+010.1969E+010.2083E+010.2202E+010.2326E+01
0.2455E+010.2589E+010.2730E+010.2878E+010.3034E+010.3198E+010.3373E+010.3559E+01
0.3758E+010.3973E+010.4205E+010.4458E+010.4737E+010.5046E+010.5392E+010.5786E+01
0.6241E+010.6777E+010.7423E+010.8227E+010.9260E+010.1064E+020.1250E+020.1473E+02
0.1619E+020.1513E+020.1166E+020.7628E+010.4652E+010.3209E+010.3117E+010.3732E+01
0.4574E+010.5490E+010.6459E+010.7497E+010.8636E+010.9918E+010.1140E+020.1317E+02
0.1534E+020.1809E+020.2171E+020.2665E+020.3345E+020.4193E+020.4964E+020.5367E+02
0.5488E+020.5496E+020.5282E+020.4675E+020.3862E+020.3172E+020.2680E+020.2333E+02
0.2081E+020.1894E+020.1753E+020.1647E+020.1571E+020.1521E+020.1497E+020.1501E+02
0.1537E+020.1611E+020.1716E+020.1811E+020.1815E+020.1704E+020.1540E+020.1379E+02
0.1237E+020.1105E+020.9651E+010.8088E+010.6523E+010.5248E+010.4345E+010.3714E+01
0.3257E+010.2910E+010.2635E+010.2409E+010.2217E+010.2051E+010.1902E+010.1768E+01
0.2042E+010.1909E+010.1781E+010.1658E+010.1540E+010.1425E+010.1314E+010.1205E+01
0.1101E+010.9989E+000.9008E+000.8068E+000.7178E+000.6353E+000.5615E+000.5000E+00
0.4552E+000.4322E+000.4345E+000.4615E+000.5097E+000.5739E+000.6498E+000.7341E+00
0.8246E+000.9201E+000.1020E+010.1122E+010.1228E+010.1338E+010.1450E+010.1565E+01
0.1683E+010.1804E+010.1929E+010.2057E+010.2190E+010.2326E+010.2468E+010.2614E+01
0.2767E+010.2925E+010.3091E+010.3264E+010.3446E+010.3638E+010.3840E+010.4056E+01
0.4285E+010.4531E+010.4797E+010.5086E+010.5401E+010.5750E+010.6140E+010.6581E+01
0.7088E+010.7682E+010.8395E+010.9276E+010.1040E+020.1190E+020.1391E+020.1629E+02
0.1781E+020.1657E+020.1271E+020.8340E+010.5313E+010.4149E+010.4349E+010.5133E+01
0.6101E+010.7146E+010.8256E+010.9453E+010.1078E+020.1227E+020.1401E+020.1608E+02
0.1863E+020.2187E+020.2613E+020.3194E+020.3994E+020.4998E+020.5927E+020.6443E+02
0.6644E+020.6709E+020.6475E+020.5712E+020.4669E+020.3791E+020.3172E+020.2739E+02
0.2425E+020.2190E+020.2011E+020.1874E+020.1771E+020.1698E+020.1653E+020.1637E+02
0.1655E+020.1711E+020.1800E+020.1880E+020.1873E+020.1755E+020.1587E+020.1422E+02
0.1275E+020.1137E+020.9922E+010.8323E+010.6766E+010.5537E+010.4689E+010.4104E+01
0.3680E+010.3354E+010.3089E+010.2865E+010.2669E+010.2493E+010.2333E+010.2183E+01
0.2759E+010.2589E+010.2425E+010.2266E+010.2113E+010.1963E+010.1817E+010.1675E+01
0.1535E+010.1399E+010.1266E+010.1136E+010.1009E+010.8869E+000.7698E+000.6601E+00
0.5612E+000.4795E+000.4244E+000.4067E+000.4310E+000.4913E+000.5768E+000.6784E+00
0.7905E+000.9097E+000.1034E+010.1163E+010.1295E+010.1431E+010.1570E+010.1712E+01
0.1857E+010.2006E+010.2159E+010.2316E+010.2477E+010.2643E+010.2815E+010.2992E+01
0.3175E+010.3365E+010.3564E+010.3770E+010.3987E+010.4214E+010.4453E+010.4707E+01
0.4976E+010.5264E+010.5574E+010.5908E+010.6273E+010.6674E+010.7120E+010.7623E+01
0.8197E+010.8867E+010.9666E+010.1065E+020.1190E+020.1355E+020.1576E+020.1839E+02
0.2006E+020.1869E+020.1443E+020.9727E+010.6749E+010.5894E+010.6315E+010.7236E+01
0.8336E+010.9532E+010.1082E+020.1222E+020.1379E+020.1558E+020.1766E+020.2015E+02
0.2323E+020.2714E+020.3229E+020.3933E+020.4908E+020.6148E+020.7333E+020.8063E+02
0.8436E+020.8629E+020.8369E+020.7314E+020.5862E+020.4678E+020.3870E+020.3311E+02
0.2908E+020.2606E+020.2374E+020.2194E+020.2055E+020.1950E+020.1878E+020.1838E+02
0.1833E+020.1869E+020.1942E+020.2011E+020.1998E+020.1877E+020.1706E+020.1537E+02
0.1385E+020.1242E+020.1091E+020.9271E+010.7707E+010.6496E+010.5665E+010.5085E+01
0.4652E+010.4306E+010.4014E+010.3760E+010.3530E+010.3319E+010.3122E+010.2936E+01
0.3776E+010.3553E+010.3337E+010.3129E+010.2927E+010.2731E+010.2540E+010.2353E+01
0.2171E+010.1993E+010.1818E+010.1647E+010.1480E+010.1316E+010.1157E+010.1003E+01
0.8561E+000.7193E+000.5990E+000.5061E+000.4570E+000.4657E+000.5295E+000.6322E+00
0.7588E+000.8997E+000.1050E+010.1207E+010.1369E+010.1535E+010.1705E+010.1880E+01
0.2058E+010.2240E+010.2426E+010.2617E+010.2813E+010.3014E+010.3221E+010.3434E+01
0.3655E+010.3884E+010.4121E+010.4368E+010.4625E+010.4895E+010.5179E+010.5478E+01
0.5795E+010.6133E+010.6494E+010.6884E+010.7307E+010.7770E+010.8283E+010.8858E+01
0.9513E+010.1027E+020.1118E+020.1228E+020.1369E+020.1555E+020.1805E+020.2108E+02
0.2313E+020.2183E+020.1729E+020.1230E+020.9384E+010.8687E+010.9187E+010.1018E+02
0.1139E+020.1274E+020.1423E+020.1588E+020.1774E+020.1989E+020.2241E+020.2545E+02
0.2921E+020.3401E+020.4038E+020.4914E+020.6142E+020.7745E+020.9368E+020.1051E+03
0.1123E+030.1164E+030.1121E+030.9493E+020.7348E+020.5748E+020.4703E+020.3993E+02
0.3483E+020.3100E+020.2805E+020.2573E+020.2391E+020.2249E+020.2144E+020.2074E+02
0.2044E+020.2059E+020.2117E+020.2183E+020.2177E+020.2064E+020.1897E+020.1729E+02
0.1576E+020.1431E+020.1278E+020.1112E+020.9505E+010.8236E+010.7342E+010.6693E+01
0.6188E+010.5769E+010.5407E+010.5083E+010.4787E+010.4512E+010.4254E+010.4010E+01
0.4821E+010.4541E+010.4272E+010.4013E+010.3763E+010.3521E+010.3285E+010.3056E+01
0.2832E+010.2614E+010.2400E+010.2191E+010.1987E+010.1787E+010.1592E+010.1403E+01
0.1220E+010.1045E+010.8823E+000.7391E+000.6274E+000.5655E+000.5696E+000.6384E+00
0.7549E+000.9013E+000.1066E+010.1243E+010.1428E+010.1619E+010.1816E+010.2018E+01
0.2224E+010.2435E+010.2651E+010.2873E+010.3099E+010.3332E+010.3571E+010.3817E+01
0.4071E+010.4334E+010.4606E+010.4889E+010.5184E+010.5492E+010.5815E+010.6155E+01
0.6514E+010.6896E+010.7303E+010.7742E+010.8216E+010.8735E+010.9307E+010.9947E+01
0.1067E+020.1152E+020.1252E+020.1375E+020.1532E+020.1740E+020.2026E+020.2384E+02
0.2657E+020.2569E+020.2110E+020.1594E+020.1295E+020.1216E+020.1257E+020.1353E+02
0.1479E+020.1624E+020.1790E+020.1977E+020.2192E+020.2443E+020.2740E+020.3102E+02
0.3553E+020.4134E+020.4911E+020.5996E+020.7549E+020.9654E+020.1193E+030.1371E+03
0.1488E+030.1530E+030.1411E+030.1128E+030.8459E+020.6553E+020.5340E+020.4521E+02
0.3931E+020.3487E+020.3141E+020.2867E+020.2648E+020.2474E+020.2339E+020.2243E+02
0.2188E+020.2184E+020.2232E+020.2304E+020.2320E+020.2232E+020.2083E+020.1928E+02
0.1785E+020.1646E+020.1497E+020.1328E+020.1158E+020.1021E+020.9204E+010.8445E+01
0.7836E+010.7321E+010.6870E+010.6464E+010.6091E+010.5745E+010.5420E+010.5113E+01
0.5602E+010.5281E+010.4973E+010.4677E+010.4391E+010.4115E+010.3847E+010.3587E+01
0.3334E+010.3087E+010.2846E+010.2611E+010.2381E+010.2156E+010.1937E+010.1724E+01
0.1517E+010.1318E+010.1131E+010.9601E+000.8146E+000.7092E+000.6628E+000.6872E+00
0.7760E+000.9109E+000.1075E+010.1259E+010.1454E+010.1660E+010.1872E+010.2090E+01
0.2314E+010.2543E+010.2778E+010.3019E+010.3265E+010.3518E+010.3778E+010.4045E+01
0.4320E+010.4605E+010.4899E+010.5205E+010.5523E+010.5855E+010.6202E+010.6567E+01
0.6953E+010.7362E+010.7798E+010.8266E+010.8772E+010.9324E+010.9933E+010.1061E+02
0.1139E+020.1228E+020.1335E+020.1467E+020.1636E+020.1865E+020.2185E+020.2603E+02
0.2961E+020.2940E+020.2501E+020.1980E+020.1665E+020.1565E+020.1586E+020.1671E+02
0.1793E+020.1942E+020.2117E+020.2320E+020.2558E+020.2838E+020.3175E+020.3588E+02
0.4109E+020.4786E+020.5705E+020.7008E+020.8918E+020.1160E+030.1463E+030.1704E+03
0.1829E+030.1789E+030.1538E+030.1177E+030.8762E+020.6818E+020.5579E+020.4733E+02
0.4118E+020.3651E+020.3283E+020.2989E+020.2750E+020.2556E+020.2402E+020.2286E+02
0.2213E+020.2193E+020.2234E+020.2315E+020.2360E+020.2308E+020.2191E+020.2058E+02
0.1930E+020.1801E+020.1656E+020.1487E+020.1315E+020.1171E+020.1062E+020.9776E+01
0.9085E+010.8494E+010.7972E+010.7501E+010.7070E+010.6669E+010.6293E+010.5939E+01
0.6151E+010.5801E+010.5467E+010.5145E+010.4836E+010.4537E+010.4248E+010.3967E+01
0.3694E+010.3428E+010.3168E+010.2915E+010.2668E+010.2427E+010.2191E+010.1961E+01
0.1738E+010.1523E+010.1319E+010.1128E+010.9589E+000.8232E+000.7387E+000.7230E+00
0.7802E+000.8968E+000.1054E+010.1237E+010.1436E+010.1648E+010.1868E+010.2095E+01
0.2329E+010.2569E+010.2814E+010.3066E+010.3323E+010.3587E+010.3859E+010.4137E+01
0.4424E+010.4720E+010.5026E+010.5344E+010.5674E+010.6017E+010.6377E+010.6754E+01
0.7152E+010.7573E+010.8021E+010.8501E+010.9020E+010.9586E+010.1021E+020.1090E+02
0.1170E+020.1262E+020.1372E+020.1508E+020.1686E+020.1929E+020.2280E+020.2758E+02
0.3207E+020.3269E+020.2873E+020.2361E+020.2030E+020.1905E+020.1904E+020.1974E+02
0.2088E+020.2236E+020.2417E+020.2631E+020.2886E+020.3191E+020.3561E+020.4020E+02
0.4604E+020.5372E+020.6425E+020.7941E+020.1021E+030.1345E+030.1712E+030.1969E+03
0.2013E+030.1834E+030.1500E+030.1138E+030.8582E+020.6764E+020.5580E+020.4757E+02
0.4149E+020.3681E+020.3309E+020.3007E+020.2759E+020.2554E+020.2387E+020.2257E+02
0.2168E+020.2132E+020.2164E+020.2254E+020.2327E+020.2313E+020.2227E+020.2115E+02
0.1999E+020.1878E+020.1741E+020.1581E+020.1415E+020.1271E+020.1159E+020.1069E+02
0.9948E+010.9307E+010.8738E+010.8224E+010.7752E+010.7314E+010.6904E+010.6518E+01
0.6515E+010.6149E+010.5799E+010.5463E+010.5140E+010.4828E+010.4527E+010.4234E+01
0.3950E+010.3673E+010.3404E+010.3141E+010.2884E+010.2634E+010.2388E+010.2149E+01
0.1916E+010.1690E+010.1473E+010.1267E+010.1078E+010.9143E+000.7907E+000.7272E+00
0.7390E+000.8230E+000.9609E+000.1134E+010.1329E+010.1539E+010.1759E+010.1987E+01
0.2222E+010.2463E+010.2711E+010.2963E+010.3222E+010.3488E+010.3759E+010.4039E+01
0.4326E+010.4622E+010.4927E+010.5243E+010.5571E+010.5912E+010.6267E+010.6640E+01
0.7032E+010.7446E+010.7886E+010.8357E+010.8864E+010.9416E+010.1002E+020.1070E+02
0.1147E+020.1237E+020.1346E+020.1482E+020.1661E+020.1913E+020.2288E+020.2822E+02
0.3367E+020.3533E+020.3211E+020.2726E+020.2384E+020.2232E+020.2207E+020.2257E+02
0.2358E+020.2500E+020.2678E+020.2896E+020.3159E+020.3478E+020.3870E+020.4360E+02
0.4989E+020.5823E+020.6977E+020.8654E+020.1118E+030.1479E+030.1860E+030.2052E+03
0.1969E+030.1708E+030.1380E+030.1064E+030.8192E+020.6550E+020.5449E+020.4667E+02
0.4080E+020.3622E+020.3254E+020.2952E+020.2700E+020.2488E+020.2312E+020.2169E+02
0.2064E+020.2011E+020.2030E+020.2122E+020.2221E+020.2241E+020.2183E+020.2090E+02
0.1988E+020.1882E+020.1763E+020.1622E+020.1469E+020.1331E+020.1218E+020.1127E+02
0.1050E+020.9828E+010.9232E+010.8693E+010.8197E+010.7737E+010.7306E+010.6900E+01
0.6455E+010.6098E+010.5757E+010.5430E+010.5117E+010.4814E+010.4522E+010.4239E+01
0.3964E+010.3697E+010.3438E+010.3184E+010.2937E+010.2695E+010.2459E+010.2228E+01
0.2003E+010.1783E+010.1570E+010.1366E+010.1172E+010.9943E+000.8413E+000.7278E+00
0.6732E+000.6912E+000.7769E+000.9117E+000.1078E+010.1264E+010.1463E+010.1672E+01
0.1888E+010.2110E+010.2338E+010.2571E+010.2809E+010.3053E+010.3303E+010.3559E+01
0.3822E+010.4092E+010.4371E+010.4658E+010.4955E+010.5264E+010.5585E+010.5920E+01
0.6271E+010.6642E+010.7034E+010.7453E+010.7903E+010.8392E+010.8930E+010.9532E+01
0.1022E+020.1103E+020.1201E+020.1327E+020.1498E+020.1746E+020.2130E+020.2704E+02
0.3334E+020.3615E+020.3399E+020.2964E+020.2619E+020.2441E+020.2385E+020.2407E+02
0.2483E+020.2602E+020.2762E+020.2963E+020.3210E+020.3515E+020.3894E+020.4372E+02
0.4988E+020.5810E+020.6952E+020.8615E+020.1111E+030.1453E+030.1770E+030.1856E+03
0.1708E+030.1462E+030.1197E+030.9450E+020.7422E+020.6003E+020.5022E+020.4312E+02
0.3772E+020.3346E+020.3000E+020.2713E+020.2471E+020.2264E+020.2088E+020.1940E+02
0.1825E+020.1756E+020.1760E+020.1848E+020.1963E+020.2013E+020.1985E+020.1920E+02
0.1845E+020.1767E+020.1677E+020.1563E+020.1431E+020.1306E+020.1199E+020.1111E+02
0.1036E+020.9704E+010.9119E+010.8589E+010.8102E+010.7650E+010.7228E+010.6831E+01
0.5801E+010.5486E+010.5187E+010.4900E+010.4626E+010.4362E+010.4107E+010.3861E+01
0.3623E+010.3392E+010.3167E+010.2949E+010.2735E+010.2527E+010.2324E+010.2126E+01
0.1932E+010.1743E+010.1559E+010.1380E+010.1209E+010.1046E+010.8965E+000.7660E+00
0.6651E+000.6080E+000.6069E+000.6619E+000.7612E+000.8905E+000.1039E+010.1201E+01
0.1371E+010.1549E+010.1732E+010.1920E+010.2113E+010.2310E+010.2512E+010.2719E+01
0.2931E+010.3148E+010.3372E+010.3602E+010.3839E+010.4085E+010.4340E+010.4605E+01
0.4883E+010.5175E+010.5484E+010.5814E+010.6168E+010.6554E+010.6981E+010.7464E+01
0.8022E+010.8692E+010.9531E+010.1064E+020.1220E+020.1458E+020.1838E+020.2425E+02
0.3100E+020.3469E+020.3347E+020.2965E+020.2622E+020.2420E+020.2331E+020.2318E+02
0.2358E+020.2441E+020.2562E+020.2723E+020.2926E+020.3182E+020.3502E+020.3910E+02
0.4438E+020.5145E+020.6125E+020.7543E+020.9624E+020.1232E+030.1449E+030.1471E+03
0.1338E+030.1155E+030.9649E+020.7779E+020.6195E+020.5041E+020.4226E+020.3626E+02
0.3167E+020.2802E+020.2504E+020.2254E+020.2041E+020.1857E+020.1697E+020.1558E+02
0.1445E+020.1370E+020.1362E+020.1444E+020.1567E+020.1641E+020.1646E+020.1613E+02
0.1569E+020.1521E+020.1462E+020.1379E+020.1274E+020.1167E+020.1074E+020.9955E+01
0.9282E+010.8694E+010.8170E+010.7696E+010.7261E+010.6859E+010.6485E+010.6133E+01
0.4903E+010.4642E+010.4396E+010.4161E+010.3936E+010.3721E+010.3513E+010.3314E+01
0.3121E+010.2935E+010.2754E+010.2579E+010.2408E+010.2242E+010.2080E+010.1922E+01
0.1769E+010.1619E+010.1473E+010.1332E+010.1196E+010.1065E+010.9418E+000.8284E+00
0.7285E+000.6478E+000.5935E+000.5728E+000.5891E+000.6397E+000.7175E+000.8151E+00
0.9268E+000.1048E+010.1178E+010.1313E+010.1453E+010.1597E+010.1746E+010.1898E+01
0.2055E+010.2215E+010.2381E+010.2551E+010.2727E+010.2909E+010.3098E+010.3295E+01
0.3501E+010.3719E+010.3950E+010.4199E+010.4469E+010.4768E+010.5105E+010.5496E+01
0.5963E+010.6543E+010.7300E+010.8341E+010.9860E+010.1221E+020.1602E+020.2190E+02
0.2873E+020.3273E+020.3193E+020.2833E+020.2485E+020.2261E+020.2143E+020.2097E+02
0.2102E+020.2147E+020.2227E+020.2341E+020.2493E+020.2688E+020.2936E+020.3254E+02
0.3669E+020.4223E+020.4991E+020.6089E+020.7662E+020.9608E+020.1106E+030.1111E+03
0.1013E+030.8858E+020.7524E+020.6150E+020.4932E+020.4018E+020.3362E+020.2877E+02
0.2504E+020.2207E+020.1962E+020.1757E+020.1580E+020.1425E+020.1288E+020.1168E+02
0.1066E+020.9955E+010.9866E+010.1066E+020.1194E+020.1283E+020.1310E+020.1301E+02
0.1280E+020.1254E+020.1218E+020.1159E+020.1076E+020.9871E+010.9080E+010.8409E+01
0.7834E+010.7333E+010.6888E+010.6487E+010.6121E+010.5784E+010.5471E+010.5178E+01
0.4126E+010.3912E+010.3710E+010.3518E+010.3336E+010.3161E+010.2994E+010.2834E+01
0.2679E+010.2530E+010.2386E+010.2247E+010.2112E+010.1981E+010.1854E+010.1731E+01
0.1611E+010.1495E+010.1383E+010.1274E+010.1170E+010.1070E+010.9750E+000.8867E+00
0.8064E+000.7360E+000.6782E+000.6361E+000.6128E+000.6103E+000.6287E+000.6665E+00
0.7208E+000.7886E+000.8669E+000.9538E+000.1047E+010.1147E+010.1251E+010.1360E+01
0.1474E+010.1591E+010.1713E+010.1840E+010.1972E+010.2110E+010.2254E+010.2406E+01
0.2568E+010.2741E+010.2929E+010.3135E+010.3365E+010.3627E+010.3932E+010.4299E+01
0.4752E+010.5335E+010.6114E+010.7201E+010.8793E+010.1124E+020.1513E+020.2104E+02
0.2782E+020.3176E+020.3092E+020.2725E+020.2359E+020.2113E+020.1969E+020.1896E+02
0.1873E+020.1888E+020.1935E+020.2012E+020.2121E+020.2267E+020.2456E+020.2701E+02
0.3023E+020.3454E+020.4049E+020.4895E+020.6088E+020.7531E+020.8578E+020.8596E+02
0.7878E+020.6957E+020.5972E+020.4917E+020.3950E+020.3211E+020.2678E+020.2283E+02
0.1978E+020.1735E+020.1535E+020.1365E+020.1219E+020.1090E+020.9744E+010.8710E+01
0.7826E+010.7220E+010.7201E+010.8047E+010.9347E+010.1029E+020.1065E+020.1068E+02
0.1059E+020.1045E+020.1022E+020.9775E+010.9095E+010.8341E+010.7661E+010.7083E+01
0.6590E+010.6163E+010.5785E+010.5446E+010.5139E+010.4857E+010.4596E+010.4353E+01
0.3540E+010.3361E+010.3192E+010.3033E+010.2882E+010.2738E+010.2601E+010.2470E+01
0.2344E+010.2223E+010.2107E+010.1995E+010.1887E+010.1783E+010.1682E+010.1585E+01
0.1491E+010.1401E+010.1314E+010.1231E+010.1151E+010.1075E+010.1004E+010.9380E+00
0.8776E+000.8239E+000.7779E+000.7408E+000.7138E+000.6981E+000.6943E+000.7028E+00
0.7231E+000.7547E+000.7963E+000.8470E+000.9056E+000.9713E+000.1043E+010.1121E+01
0.1204E+010.1293E+010.1388E+010.1488E+010.1595E+010.1708E+010.1830E+010.1962E+01
0.2105E+010.2263E+010.2439E+010.2637E+010.2865E+010.3132E+010.3451E+010.3843E+01
0.4335E+010.4973E+010.5825E+010.7005E+010.8709E+010.1128E+020.1531E+020.2129E+02
0.2804E+020.3182E+020.3075E+020.2682E+020.2291E+020.2020E+020.1854E+020.1759E+02
0.1714E+020.1705E+020.1728E+020.1778E+020.1856E+020.1966E+020.2112E+020.2305E+02
0.2561E+020.2905E+020.3380E+020.4053E+020.4996E+020.6123E+020.6933E+020.6941E+02
0.6383E+020.5672E+020.4897E+020.4044E+020.3246E+020.2631E+020.2185E+020.1854E+02
0.1599E+020.1396E+020.1228E+020.1086E+020.9621E+010.8526E+010.7539E+010.6649E+01
0.5887E+010.5392E+010.5481E+010.6399E+010.7694E+010.8620E+010.9005E+010.9083E+01
0.9048E+010.8970E+010.8805E+010.8440E+010.7853E+010.7190E+010.6590E+010.6082E+01
0.5651E+010.5279E+010.4952E+010.4660E+010.4397E+010.4156E+010.3935E+010.3731E+01
0.3098E+010.2945E+010.2802E+010.2668E+010.2541E+010.2420E+010.2306E+010.2197E+01
0.2093E+010.1994E+010.1898E+010.1807E+010.1720E+010.1636E+010.1556E+010.1479E+01
0.1406E+010.1335E+010.1268E+010.1205E+010.1144E+010.1088E+010.1036E+010.9878E+00
0.9445E+000.9064E+000.8741E+000.8479E+000.8284E+000.8161E+000.8114E+000.8144E+00
0.8252E+000.8438E+000.8701E+000.9037E+000.9443E+000.9917E+000.1046E+010.1106E+01
0.1173E+010.1246E+010.1327E+010.1414E+010.1510E+010.1615E+010.1731E+010.1859E+01
0.2001E+010.2162E+010.2345E+010.2556E+010.2802E+010.3095E+010.3448E+010.3882E+01
0.4429E+010.5133E+010.6067E+010.7346E+010.9170E+010.1189E+020.1607E+020.2221E+02
0.2901E+020.3264E+020.3126E+020.2697E+020.2275E+020.1978E+020.1791E+020.1676E+02
0.1613E+020.1586E+020.1589E+020.1618E+020.1674E+020.1757E+020.1872E+020.2027E+02
0.2235E+020.2518E+020.2909E+020.3463E+020.4235E+020.5154E+020.5809E+020.5809E+02
0.5352E+020.4771E+020.4133E+020.3416E+020.2735E+020.2208E+020.1825E+020.1542E+02
0.1324E+020.1150E+020.1006E+020.8839E+010.7776E+010.6831E+010.5974E+010.5201E+01
0.4548E+010.4167E+010.4379E+010.5359E+010.6622E+010.7497E+010.7865E+010.7953E+01
0.7941E+010.7891E+010.7761E+010.7443E+010.6918E+010.6321E+010.5780E+010.5325E+01
0.4940E+010.4610E+010.4322E+010.4067E+010.3837E+010.3628E+010.3437E+010.3261E+01
0.2755E+010.2623E+010.2500E+010.2385E+010.2277E+010.2175E+010.2079E+010.1988E+01
0.1901E+010.1819E+010.1741E+010.1666E+010.1596E+010.1529E+010.1465E+010.1404E+01
0.1347E+010.1293E+010.1242E+010.1194E+010.1150E+010.1110E+010.1073E+010.1040E+01
0.1012E+010.9877E+000.9682E+000.9536E+000.9442E+000.9402E+000.9417E+000.9489E+00
0.9620E+000.9810E+000.1006E+010.1037E+010.1074E+010.1117E+010.1166E+010.1222E+01
0.1285E+010.1355E+010.1433E+010.1519E+010.1615E+010.1722E+010.1842E+010.1977E+01
0.2129E+010.2302E+010.2502E+010.2734E+010.3006E+010.3331E+010.3723E+010.4204E+01
0.4807E+010.5580E+010.6596E+010.7977E+010.9928E+010.1281E+020.1720E+020.2357E+02
0.3050E+020.3402E+020.3231E+020.2760E+020.2301E+020.1977E+020.1767E+020.1635E+02
0.1554E+020.1511E+020.1498E+020.1511E+020.1548E+020.1611E+020.1702E+020.1829E+02
0.2002E+020.2239E+020.2569E+020.3037E+020.3688E+020.4459E+020.5004E+020.4995E+02
0.4604E+020.4112E+020.3566E+020.2945E+020.2350E+020.1889E+020.1555E+020.1307E+02
0.1117E+020.9652E+010.8398E+010.7332E+010.6404E+010.5576E+010.4825E+010.4150E+01
0.3598E+010.3333E+010.3666E+010.4688E+010.5896E+010.6703E+010.7037E+010.7118E+01
0.7111E+010.7071E+010.6957E+010.6669E+010.6187E+010.5640E+010.5146E+010.4732E+01
0.4385E+010.4088E+010.3831E+010.3604E+010.3401E+010.3217E+010.3050E+010.2897E+01
0.2479E+010.2365E+010.2259E+010.2160E+010.2067E+010.1981E+010.1899E+010.1823E+01
0.1751E+010.1683E+010.1619E+010.1559E+010.1502E+010.1449E+010.1399E+010.1353E+01
0.1309E+010.1269E+010.1232E+010.1199E+010.1168E+010.1142E+010.1119E+010.1099E+01
0.1083E+010.1072E+010.1064E+010.1061E+010.1062E+010.1068E+010.1078E+010.1093E+01
0.1113E+010.1138E+010.1168E+010.1204E+010.1245E+010.1292E+010.1345E+010.1405E+01
0.1472E+010.1546E+010.1630E+010.1723E+010.1826E+010.1943E+010.2074E+010.2221E+01
0.2389E+010.2581E+010.2802E+010.3060E+010.3362E+010.3722E+010.4156E+010.4687E+01
0.5349E+010.6193E+010.7297E+010.8788E+010.1088E+020.1395E+020.1859E+020.2526E+02
0.3242E+020.3589E+020.3382E+020.2864E+020.2364E+020.2009E+020.1776E+020.1625E+02
0.1528E+020.1471E+020.1444E+020.1442E+020.1464E+020.1510E+020.1582E+020.1687E+02
0.1832E+020.2034E+020.2317E+020.2720E+020.3280E+020.3941E+020.4403E+020.4386E+02
0.4041E+020.3610E+020.3130E+020.2579E+020.2051E+020.1640E+020.1344E+020.1124E+02
0.9560E+010.8216E+010.7108E+010.6167E+010.5346E+010.4614E+010.3953E+010.3365E+01
0.2910E+010.2764E+010.3208E+010.4245E+010.5382E+010.6115E+010.6407E+010.6471E+01
0.6460E+010.6421E+010.6314E+010.6044E+010.5595E+010.5087E+010.4631E+010.4251E+01
0.3934E+010.3665E+010.3433E+010.3229E+010.3048E+010.2886E+010.2738E+010.2603E+01
0.2251E+010.2152E+010.2060E+010.1975E+010.1896E+010.1822E+010.1754E+010.1691E+01
0.1631E+010.1576E+010.1525E+010.1477E+010.1433E+010.1392E+010.1355E+010.1321E+01
0.1290E+010.1262E+010.1238E+010.1217E+010.1199E+010.1185E+010.1174E+010.1167E+01
0.1163E+010.1163E+010.1167E+010.1174E+010.1186E+010.1202E+010.1222E+010.1246E+01
0.1275E+010.1308E+010.1347E+010.1391E+010.1440E+010.1495E+010.1557E+010.1625E+01
0.1701E+010.1785E+010.1879E+010.1983E+010.2100E+010.2230E+010.2376E+010.2542E+01
0.2729E+010.2944E+010.3191E+010.3478E+010.3814E+010.4213E+010.4693E+010.5278E+01
0.6004E+010.6927E+010.8128E+010.9742E+010.1200E+020.1528E+020.2023E+020.2729E+02
0.3477E+020.3823E+020.3579E+020.3008E+020.2460E+020.2070E+020.1812E+020.1642E+02
0.1529E+020.1457E+020.1417E+020.1402E+020.1410E+020.1442E+020.1498E+020.1584E+02
0.1708E+020.1881E+020.2127E+020.2478E+020.2968E+020.3545E+020.3941E+020.3915E+02
0.3602E+020.3215E+020.2784E+020.2287E+020.1811E+020.1441E+020.1174E+020.9772E+01
0.8265E+010.7065E+010.6076E+010.5238E+010.4507E+010.3857E+010.3275E+010.2769E+01
0.2411E+010.2386E+010.2922E+010.3949E+010.5006E+010.5663E+010.5909E+010.5952E+01
0.5931E+010.5888E+010.5781E+010.5522E+010.5099E+010.4623E+010.4199E+010.3848E+01
0.3557E+010.3312E+010.3101E+010.2918E+010.2755E+010.2610E+010.2479E+010.2360E+01
0.2058E+010.1971E+010.1892E+010.1819E+010.1752E+010.1691E+010.1635E+010.1583E+01
0.1535E+010.1492E+010.1452E+010.1416E+010.1383E+010.1354E+010.1328E+010.1306E+01
0.1287E+010.1271E+010.1258E+010.1249E+010.1243E+010.1241E+010.1241E+010.1246E+01
0.1253E+010.1264E+010.1279E+010.1298E+010.1320E+010.1346E+010.1377E+010.1411E+01
0.1450E+010.1494E+010.1543E+010.1597E+010.1656E+010.1722E+010.1795E+010.1875E+01
0.1963E+010.2060E+010.2167E+010.2287E+010.2419E+010.2567E+010.2732E+010.2919E+01
0.3130E+010.3371E+010.3648E+010.3968E+010.4343E+010.4786E+010.5318E+010.5963E+01
0.6763E+010.7773E+010.9085E+010.1084E+020.1328E+020.1683E+020.2214E+020.2968E+02
0.3759E+020.4110E+020.3825E+020.3193E+020.2591E+020.2162E+020.1876E+020.1684E+02
0.1554E+020.1467E+020.1414E+020.1386E+020.1382E+020.1401E+020.1443E+020.1513E+02
0.1617E+020.1768E+020.1983E+020.2293E+020.2726E+020.3234E+020.3578E+020.3542E+02
0.3252E+020.2898E+020.2504E+020.2049E+020.1613E+020.1276E+020.1034E+020.8559E+01
0.7199E+010.6118E+010.5230E+010.4479E+010.3827E+010.3250E+010.2741E+010.2317E+01
0.2062E+010.2155E+010.2756E+010.3752E+010.4726E+010.5307E+010.5507E+010.5526E+01
0.5491E+010.5439E+010.5328E+010.5076E+010.4672E+010.4224E+010.3828E+010.3502E+01
0.3234E+010.3009E+010.2817E+010.2650E+010.2504E+010.2374E+010.2258E+010.2153E+01
0.1890E+010.1815E+010.1747E+010.1686E+010.1631E+010.1581E+010.1535E+010.1495E+01
0.1458E+010.1426E+010.1397E+010.1372E+010.1351E+010.1333E+010.1319E+010.1308E+01
0.1300E+010.1296E+010.1295E+010.1297E+010.1303E+010.1312E+010.1324E+010.1339E+01
0.1358E+010.1381E+010.1407E+010.1437E+010.1470E+010.1507E+010.1549E+010.1595E+01
0.1645E+010.1700E+010.1760E+010.1826E+010.1898E+010.1977E+010.2062E+010.2156E+01
0.2259E+010.2372E+010.2496E+010.2633E+010.2784E+010.2953E+010.3141E+010.3353E+01
0.3592E+010.3863E+010.4174E+010.4534E+010.4952E+010.5446E+010.6037E+010.6752E+01
0.7635E+010.8748E+010.1019E+020.1211E+020.1477E+020.1863E+020.2438E+020.3250E+02
0.4094E+020.4456E+020.4128E+020.3426E+020.2760E+020.2285E+020.1966E+020.1751E+02
0.1602E+020.1500E+020.1432E+020.1392E+020.1376E+020.1382E+020.1412E+020.1467E+02
0.1555E+020.1686E+020.1876E+020.2151E+020.2537E+020.2989E+020.3289E+020.3243E+02
0.2969E+020.2639E+020.2272E+020.1850E+020.1447E+020.1138E+020.9160E+010.7539E+01
0.6304E+010.5326E+010.4525E+010.3851E+010.3269E+010.2762E+010.2325E+010.1987E+01
0.1839E+010.2038E+010.2678E+010.3628E+010.4518E+010.5024E+010.5178E+010.5170E+01
0.5118E+010.5054E+010.4935E+010.4686E+010.4298E+010.3873E+010.3501E+010.3197E+01
0.2949E+010.2742E+010.2567E+010.2416E+010.2284E+010.2168E+010.2065E+010.1973E+01
0.1741E+010.1677E+010.1621E+010.1570E+010.1526E+010.1487E+010.1452E+010.1423E+01
0.1397E+010.1376E+010.1359E+010.1345E+010.1335E+010.1329E+010.1326E+010.1327E+01
0.1331E+010.1339E+010.1349E+010.1363E+010.1381E+010.1401E+010.1425E+010.1452E+01
0.1483E+010.1517E+010.1555E+010.1597E+010.1642E+010.1691E+010.1745E+010.1803E+01
0.1866E+010.1934E+010.2008E+010.2087E+010.2173E+010.2267E+010.2368E+010.2478E+01
0.2598E+010.2729E+010.2873E+010.3031E+010.3205E+010.3398E+010.3613E+010.3854E+01
0.4125E+010.4432E+010.4783E+010.5188E+010.5658E+010.6211E+010.6870E+010.7667E+01
0.8648E+010.9880E+010.1147E+020.1359E+020.1651E+020.2074E+020.2702E+020.3586E+02
0.4498E+020.4877E+020.4500E+020.3715E+020.2974E+020.2445E+020.2089E+020.1846E+02
0.1676E+020.1556E+020.1474E+020.1420E+020.1392E+020.1386E+020.1403E+020.1445E+02
0.1518E+020.1630E+020.1798E+020.2044E+020.2391E+020.2796E+020.3057E+020.3001E+02
0.2738E+020.2425E+020.2078E+020.1682E+020.1307E+020.1020E+020.8155E+010.6669E+01
0.5543E+010.4655E+010.3933E+010.3330E+010.2816E+010.2378E+010.2018E+010.1773E+01
0.1734E+010.2018E+010.2669E+010.3564E+010.4368E+010.4801E+010.4908E+010.4871E+01
0.4800E+010.4720E+010.4591E+010.4340E+010.3964E+010.3559E+010.3208E+010.2924E+01
0.2694E+010.2503E+010.2343E+010.2206E+010.2088E+010.1984E+010.1893E+010.1812E+01
0.1606E+010.1553E+010.1508E+010.1468E+010.1435E+010.1407E+010.1384E+010.1365E+01
0.1351E+010.1342E+010.1336E+010.1335E+010.1337E+010.1343E+010.1353E+010.1366E+01
0.1382E+010.1402E+010.1425E+010.1452E+010.1481E+010.1514E+010.1551E+010.1591E+01
0.1634E+010.1681E+010.1732E+010.1786E+010.1845E+010.1907E+010.1975E+010.2047E+01
0.2124E+010.2207E+010.2296E+010.2391E+010.2494E+010.2605E+010.2724E+010.2854E+01
0.2994E+010.3147E+010.3314E+010.3496E+010.3697E+010.3919E+010.4166E+010.4442E+01
0.4751E+010.5101E+010.5499E+010.5957E+010.6489E+010.7112E+010.7853E+010.8747E+01
0.9845E+010.1122E+020.1299E+020.1534E+020.1859E+020.2326E+020.3019E+020.3991E+02
0.4989E+020.5393E+020.4960E+020.4077E+020.3245E+020.2651E+020.2250E+020.1974E+02
0.1779E+020.1639E+020.1540E+020.1472E+020.1430E+020.1411E+020.1416E+020.1445E+02
0.1504E+020.1600E+020.1748E+020.1969E+020.2281E+020.2645E+020.2873E+020.2806E+02
0.2549E+020.2248E+020.1916E+020.1539E+020.1186E+020.9183E+010.7292E+010.5926E+01
0.4897E+010.4094E+010.3446E+010.2912E+010.2467E+010.2102E+010.1827E+010.1681E+01
0.1739E+010.2079E+010.2721E+010.3553E+010.4274E+010.4634E+010.4692E+010.4624E+01
0.4530E+010.4432E+010.4288E+010.4032E+010.3663E+010.3275E+010.2942E+010.2676E+01
0.2461E+010.2285E+010.2139E+010.2014E+010.1908E+010.1816E+010.1736E+010.1667E+01
0.1482E+010.1440E+010.1405E+010.1377E+010.1355E+010.1339E+010.1328E+010.1322E+01
0.1321E+010.1324E+010.1332E+010.1343E+010.1359E+010.1378E+010.1401E+010.1428E+01
0.1458E+010.1491E+010.1528E+010.1568E+010.1612E+010.1659E+010.1709E+010.1763E+01
0.1821E+010.1882E+010.1947E+010.2016E+010.2090E+010.2168E+010.2251E+010.2340E+01
0.2434E+010.2534E+010.2641E+010.2756E+010.2878E+010.3010E+010.3151E+010.3303E+01
0.3468E+010.3647E+010.3842E+010.4054E+010.4288E+010.4545E+010.4830E+010.5147E+01
0.5503E+010.5904E+010.6361E+010.6884E+010.7489E+010.8198E+010.9039E+010.1005E+02
0.1129E+020.1284E+020.1484E+020.1748E+020.2111E+020.2634E+020.3407E+020.4489E+02
0.5596E+020.6036E+020.5538E+020.4535E+020.3591E+020.2916E+020.2459E+020.2144E+02
0.1919E+020.1756E+020.1637E+020.1552E+020.1495E+020.1462E+020.1454E+020.1470E+02
0.1514E+020.1595E+020.1724E+020.1922E+020.2205E+020.2533E+020.2732E+020.2652E+02
0.2398E+020.2103E+020.1781E+020.1419E+020.1083E+020.8318E+010.6561E+010.5304E+01
0.4368E+010.3646E+010.3073E+010.2612E+010.2242E+010.1958E+010.1772E+010.1720E+01
0.1851E+010.2217E+010.2833E+010.3598E+010.4237E+010.4525E+010.4532E+010.4429E+01
0.4309E+010.4187E+010.4024E+010.3757E+010.3392E+010.3016E+010.2699E+010.2447E+01
0.2246E+010.2083E+010.1949E+010.1836E+010.1741E+010.1660E+010.1590E+010.1532E+01
0.1364E+010.1334E+010.1311E+010.1295E+010.1286E+010.1283E+010.1285E+010.1293E+01
0.1306E+010.1324E+010.1347E+010.1374E+010.1404E+010.1439E+010.1478E+010.1520E+01
0.1566E+010.1615E+010.1667E+010.1723E+010.1783E+010.1846E+010.1912E+010.1983E+01
0.2057E+010.2135E+010.2218E+010.2304E+010.2396E+010.2493E+010.2595E+010.2703E+01
0.2818E+010.2939E+010.3068E+010.3206E+010.3353E+010.3509E+010.3678E+010.3858E+01
0.4054E+010.4265E+010.4494E+010.4744E+010.5017E+010.5318E+010.5650E+010.6020E+01
0.6433E+010.6898E+010.7426E+010.8031E+010.8729E+010.9545E+010.1051E+020.1167E+02
0.1309E+020.1486E+020.1713E+020.2014E+020.2427E+020.3019E+020.3894E+020.5116E+02
0.6366E+020.6858E+020.6282E+020.5127E+020.4040E+020.3262E+020.2735E+020.2370E+02
0.2107E+020.1915E+020.1772E+020.1667E+020.1593E+020.1545E+020.1521E+020.1522E+02
0.1552E+020.1618E+020.1729E+020.1906E+020.2162E+020.2459E+020.2630E+020.2538E+02
0.2282E+020.1990E+020.1672E+020.1320E+020.9983E+010.7610E+010.5977E+010.4826E+01
0.3983E+010.3346E+010.2855E+010.2473E+010.2185E+010.1984E+010.1881E+010.1899E+01
0.2071E+010.2437E+010.3014E+010.3711E+010.4268E+010.4484E+010.4437E+010.4294E+01
0.4142E+010.3991E+010.3802E+010.3519E+010.3151E+010.2782E+010.2477E+010.2237E+01
0.2048E+010.1896E+010.1771E+010.1668E+010.1583E+010.1511E+010.1452E+010.1404E+01
0.1251E+010.1231E+010.1221E+010.1219E+010.1225E+010.1237E+010.1256E+010.1281E+01
0.1312E+010.1347E+010.1388E+010.1433E+010.1482E+010.1535E+010.1593E+010.1653E+01
0.1718E+010.1786E+010.1857E+010.1932E+010.2011E+010.2094E+010.2180E+010.2271E+01
0.2365E+010.2464E+010.2568E+010.2677E+010.2791E+010.2911E+010.3037E+010.3170E+01
0.3310E+010.3458E+010.3615E+010.3782E+010.3959E+010.4148E+010.4351E+010.4568E+01
0.4801E+010.5054E+010.5327E+010.5624E+010.5949E+010.6306E+010.6699E+010.7136E+01
0.7623E+010.8170E+010.8790E+010.9499E+010.1032E+020.1127E+020.1240E+020.1375E+02
0.1540E+020.1746E+020.2009E+020.2357E+020.2833E+020.3516E+020.4524E+020.5931E+02
0.7372E+020.7941E+020.7268E+020.5915E+020.4638E+020.3725E+020.3106E+020.2675E+02
0.2364E+020.2135E+020.1962E+020.1832E+020.1735E+020.1668E+020.1627E+020.1612E+02
0.1626E+020.1674E+020.1768E+020.1924E+020.2157E+020.2426E+020.2573E+020.2467E+02
0.2206E+020.1912E+020.1593E+020.1246E+020.9353E+010.7109E+010.5598E+010.4558E+01
0.3816E+010.3272E+010.2867E+010.2567E+010.2355E+010.2223E+010.2177E+010.2230E+01
0.2411E+010.2756E+010.3284E+010.3912E+010.4389E+010.4531E+010.4426E+010.4238E+01
0.4047E+010.3859E+010.3637E+010.3328E+010.2949E+010.2581E+010.2283E+010.2051E+01
0.1869E+010.1724E+010.1607E+010.1511E+010.1432E+010.1369E+010.1318E+010.1279E+01
0.1137E+010.1130E+010.1134E+010.1148E+010.1172E+010.1204E+010.1243E+010.1290E+01
0.1343E+010.1401E+010.1464E+010.1533E+010.1605E+010.1682E+010.1762E+010.1847E+01
0.1935E+010.2027E+010.2122E+010.2222E+010.2325E+010.2433E+010.2544E+010.2661E+01
0.2782E+010.2908E+010.3039E+010.3176E+010.3320E+010.3470E+010.3627E+010.3793E+01
0.3967E+010.4150E+010.4344E+010.4549E+010.4767E+010.5000E+010.5247E+010.5512E+01
0.5797E+010.6104E+010.6436E+010.6797E+010.7190E+010.7621E+010.8095E+010.8621E+01
0.9207E+010.9864E+010.1061E+020.1146E+020.1243E+020.1357E+020.1491E+020.1652E+02
0.1848E+020.2092E+020.2404E+020.2815E+020.3378E+020.4183E+020.5371E+020.7030E+02
0.8738E+020.9424E+020.8628E+020.7003E+020.5464E+020.4364E+020.3618E+020.3099E+02
0.2723E+020.2443E+020.2230E+020.2067E+020.1942E+020.1851E+020.1788E+020.1752E+02
0.1747E+020.1777E+020.1852E+020.1988E+020.2197E+020.2443E+020.2568E+020.2447E+02
0.2179E+020.1878E+020.1555E+020.1208E+020.9057E+010.6940E+010.5559E+010.4638E+01
0.4002E+010.3548E+010.3220E+010.2983E+010.2820E+010.2722E+010.2693E+010.2746E+01
0.2907E+010.3212E+010.3684E+010.4242E+010.4640E+010.4708E+010.4540E+010.4300E+01
0.4062E+010.3828E+010.3560E+010.3214E+010.2812E+010.2437E+010.2137E+010.1906E+01
0.1725E+010.1580E+010.1463E+010.1368E+010.1292E+010.1232E+010.1187E+010.1155E+01
0.1018E+010.1022E+010.1043E+010.1077E+010.1124E+010.1183E+010.1250E+010.1326E+01
0.1409E+010.1498E+010.1592E+010.1692E+010.1795E+010.1903E+010.2015E+010.2131E+01
0.2251E+010.2375E+010.2503E+010.2636E+010.2773E+010.2914E+010.3060E+010.3212E+01
0.3369E+010.3532E+010.3701E+010.3877E+010.4061E+010.4253E+010.4454E+010.4664E+01
0.4885E+010.5117E+010.5362E+010.5621E+010.5895E+010.6187E+010.6498E+010.6830E+01
0.7186E+010.7569E+010.7983E+010.8431E+010.8920E+010.9455E+010.1004E+020.1069E+02
0.1142E+020.1223E+020.1314E+020.1419E+020.1539E+020.1678E+020.1843E+020.2039E+02
0.2278E+020.2576E+020.2956E+020.3456E+020.4140E+020.5118E+020.6560E+020.8584E+02
0.1069E+030.1156E+030.1061E+030.8584E+020.6657E+020.5283E+020.4355E+020.3709E+02
0.3241E+020.2890E+020.2620E+020.2411E+020.2248E+020.2123E+020.2030E+020.1969E+02
0.1939E+020.1946E+020.1999E+020.2112E+020.2300E+020.2525E+020.2634E+020.2501E+02
0.2222E+020.1912E+020.1580E+020.1231E+020.9354E+010.7363E+010.6111E+010.5297E+01
0.4741E+010.4343E+010.4049E+010.3828E+010.3665E+010.3555E+010.3501E+010.3518E+01
0.3630E+010.3876E+010.4281E+010.4767E+010.5092E+010.5087E+010.4854E+010.4555E+01
0.4259E+010.3967E+010.3640E+010.3242E+010.2804E+010.2408E+010.2095E+010.1852E+01
0.1659E+010.1501E+010.1372E+010.1265E+010.1178E+010.1110E+010.1062E+010.1031E+01
0.8955E+000.9031E+000.9385E+000.9982E+000.1078E+010.1173E+010.1281E+010.1399E+01
0.1525E+010.1658E+010.1796E+010.1939E+010.2087E+010.2239E+010.2395E+010.2556E+01
0.2721E+010.2891E+010.3065E+010.3244E+010.3428E+010.3618E+010.3814E+010.4016E+01
0.4224E+010.4440E+010.4664E+010.4897E+010.5139E+010.5391E+010.5654E+010.5930E+01
0.6218E+010.6521E+010.6840E+010.7177E+010.7533E+010.7911E+010.8313E+010.8742E+01
0.9202E+010.9696E+010.1023E+020.1080E+020.1143E+020.1212E+020.1287E+020.1370E+02
0.1463E+020.1566E+020.1683E+020.1815E+020.1968E+020.2145E+020.2353E+020.2602E+02
0.2905E+020.3281E+020.3760E+020.4390E+020.5253E+020.6485E+020.8309E+020.1089E+03
0.1363E+030.1484E+030.1365E+030.1099E+030.8443E+020.6647E+020.5445E+020.4611E+02
0.4006E+020.3550E+020.3199E+020.2923E+020.2704E+020.2531E+020.2396E+020.2298E+02
0.2234E+020.2210E+020.2235E+020.2322E+020.2489E+020.2700E+020.2802E+020.2665E+02
0.2380E+020.2060E+020.1718E+020.1364E+020.1073E+020.8825E+010.7638E+010.6855E+01
0.6297E+010.5875E+010.5539E+010.5266E+010.5043E+010.4867E+010.4741E+010.4680E+01
0.4708E+010.4866E+010.5186E+010.5597E+010.5859E+010.5792E+010.5496E+010.5133E+01
0.4772E+010.4413E+010.4016E+010.3551E+010.3061E+010.2627E+010.2283E+010.2008E+01
0.1780E+010.1586E+010.1419E+010.1273E+010.1149E+010.1047E+010.9685E+000.9174E+00
0.7951E+000.7706E+000.8047E+000.8896E+000.1012E+010.1161E+010.1327E+010.1505E+01
0.1692E+010.1886E+010.2086E+010.2291E+010.2501E+010.2715E+010.2934E+010.3158E+01
0.3386E+010.3620E+010.3859E+010.4105E+010.4356E+010.4614E+010.4880E+010.5154E+01
0.5436E+010.5727E+010.6029E+010.6341E+010.6666E+010.7004E+010.7356E+010.7723E+01
0.8108E+010.8512E+010.8936E+010.9383E+010.9856E+010.1036E+020.1089E+020.1146E+02
0.1206E+020.1271E+020.1342E+020.1418E+020.1500E+020.1590E+020.1689E+020.1798E+02
0.1919E+020.2054E+020.2207E+020.2380E+020.2579E+020.2810E+020.3081E+020.3405E+02
0.3799E+020.4288E+020.4911E+020.5732E+020.6856E+020.8468E+020.1087E+030.1433E+03
0.1812E+030.1993E+030.1831E+030.1452E+030.1099E+030.8567E+020.6974E+020.5874E+02
0.5076E+020.4475E+020.4008E+020.3638E+020.3341E+020.3100E+020.2908E+020.2757E+02
0.2646E+020.2579E+020.2564E+020.2619E+020.2763E+020.2973E+020.3093E+020.2976E+02
0.2700E+020.2381E+020.2035E+020.1675E+020.1378E+020.1180E+020.1051E+020.9607E+01
0.8917E+010.8359E+010.7887E+010.7479E+010.7123E+010.6814E+010.6557E+010.6363E+01
0.6257E+010.6282E+010.6482E+010.6813E+010.7032E+010.6934E+010.6597E+010.6180E+01
0.5757E+010.5330E+010.4863E+010.4328E+010.3773E+010.3281E+010.2878E+010.2543E+01
0.2252E+010.1991E+010.1754E+010.1535E+010.1335E+010.1154E+010.9983E+000.8746E+00
0.7951E+000.6563E+000.6238E+000.7102E+000.8802E+000.1095E+010.1334E+010.1587E+01
0.1848E+010.2116E+010.2389E+010.2667E+010.2950E+010.3237E+010.3529E+010.3826E+01
0.4129E+010.4438E+010.4753E+010.5076E+010.5406E+010.5744E+010.6091E+010.6448E+01
0.6816E+010.7196E+010.7588E+010.7994E+010.8415E+010.8852E+010.9308E+010.9783E+01
0.1028E+020.1080E+020.1135E+020.1192E+020.1253E+020.1318E+020.1386E+020.1459E+02
0.1537E+020.1620E+020.1710E+020.1807E+020.1913E+020.2028E+020.2154E+020.2293E+02
0.2448E+020.2620E+020.2815E+020.3036E+020.3290E+020.3584E+020.3930E+020.4344E+02
0.4847E+020.5472E+020.6271E+020.7325E+020.8775E+020.1087E+030.1404E+030.1871E+03
0.2398E+030.2643E+030.2377E+030.1831E+030.1365E+030.1059E+030.8589E+020.7214E+02
0.6214E+020.5457E+020.4866E+020.4393E+020.4008E+020.3692E+020.3432E+020.3220E+02
0.3053E+020.2932E+020.2868E+020.2880E+020.2998E+020.3219E+020.3396E+020.3347E+02
0.3120E+020.2830E+020.2497E+020.2132E+020.1816E+020.1592E+020.1436E+020.1320E+02
0.1226E+020.1148E+020.1079E+020.1018E+020.9636E+010.9142E+010.8702E+010.8324E+01
0.8030E+010.7868E+010.7902E+010.8131E+010.8337E+010.8266E+010.7942E+010.7512E+01
0.7059E+010.6594E+010.6085E+010.5503E+010.4890E+010.4327E+010.3845E+010.3427E+01
0.3051E+010.2706E+010.2381E+010.2074E+010.1781E+010.1502E+010.1240E+010.9993E+00
0.9036E+000.6184E+000.4142E+000.4227E+000.6329E+000.9142E+000.1218E+010.1532E+01
0.1852E+010.2176E+010.2503E+010.2835E+010.3170E+010.3510E+010.3854E+010.4203E+01
0.4559E+010.4920E+010.5289E+010.5665E+010.6050E+010.6444E+010.6848E+010.7263E+01
0.7690E+010.8130E+010.8584E+010.9054E+010.9541E+010.1005E+020.1057E+020.1112E+02
0.1170E+020.1230E+020.1293E+020.1359E+020.1429E+020.1503E+020.1582E+020.1666E+02
0.1755E+020.1851E+020.1954E+020.2066E+020.2187E+020.2319E+020.2464E+020.2624E+02
0.2801E+020.2999E+020.3223E+020.3477E+020.3768E+020.4107E+020.4505E+020.4982E+02
0.5563E+020.6286E+020.7213E+020.8442E+020.1014E+030.1263E+030.1643E+030.2211E+03
0.2837E+030.3054E+030.2642E+030.1993E+030.1483E+030.1153E+030.9373E+020.7872E+02
0.6774E+020.5936E+020.5277E+020.4745E+020.4307E+020.3943E+020.3636E+020.3378E+02
0.3165E+020.2997E+020.2883E+020.2847E+020.2931E+020.3163E+020.3420E+020.3481E+02
0.3344E+020.3116E+020.2826E+020.2483E+020.2163E+020.1919E+020.1740E+020.1600E+02
0.1484E+020.1385E+020.1298E+020.1219E+020.1147E+020.1081E+020.1020E+020.9647E+01
0.9165E+010.8799E+010.8634E+010.8730E+010.8933E+010.8946E+010.8709E+010.8338E+01
0.7923E+010.7485E+010.7001E+010.6437E+010.5816E+010.5218E+010.4682E+010.4203E+01
0.3764E+010.3354E+010.2965E+010.2592E+010.2232E+010.1884E+010.1545E+010.1217E+01
0.1008E+010.6777E+000.3534E+000.8271E-010.3177E+000.6364E+000.9583E+000.1281E+01
0.1605E+010.1931E+010.2259E+010.2589E+010.2922E+010.3259E+010.3599E+010.3944E+01
0.4295E+010.4651E+010.5014E+010.5384E+010.5762E+010.6149E+010.6546E+010.6952E+01
0.7371E+010.7802E+010.8246E+010.8706E+010.9182E+010.9676E+010.1019E+020.1073E+02
0.1129E+020.1187E+020.1249E+020.1313E+020.1381E+020.1454E+020.1530E+020.1612E+02
0.1699E+020.1792E+020.1893E+020.2001E+020.2119E+020.2247E+020.2388E+020.2543E+02
0.2716E+020.2908E+020.3126E+020.3373E+020.3656E+020.3986E+020.4374E+020.4839E+02
0.5407E+020.6115E+020.7024E+020.8232E+020.9912E+020.1237E+030.1615E+030.2171E+03
0.2730E+030.2831E+030.2392E+030.1808E+030.1359E+030.1064E+030.8672E+020.7292E+02
0.6272E+020.5488E+020.4866E+020.4360E+020.3939E+020.3584E+020.3280E+020.3018E+02
0.2792E+020.2603E+020.2458E+020.2380E+020.2424E+020.2648E+020.2961E+020.3125E+02
0.3091E+020.2954E+020.2746E+020.2468E+020.2184E+020.1951E+020.1771E+020.1627E+02
0.1506E+020.1402E+020.1309E+020.1225E+020.1148E+020.1076E+020.1008E+020.9440E+01
0.8851E+010.8346E+010.8014E+010.7973E+010.8161E+010.8278E+010.8179E+010.7933E+01
0.7625E+010.7287E+010.6906E+010.6442E+010.5900E+010.5346E+010.4832E+010.4361E+01
0.3925E+010.3514E+010.3124E+010.2748E+010.2384E+010.2030E+010.1683E+010.1343E+01
0.1035E+010.7568E+000.4865E+000.2428E+000.1889E+000.4058E+000.6668E+000.9358E+00
0.1208E+010.1482E+010.1758E+010.2036E+010.2317E+010.2601E+010.2888E+010.3178E+01
0.3473E+010.3773E+010.4078E+010.4389E+010.4707E+010.5031E+010.5364E+010.5705E+01
0.6055E+010.6416E+010.6788E+010.7173E+010.7571E+010.7984E+010.8414E+010.8861E+01
0.9328E+010.9816E+010.1033E+020.1087E+020.1144E+020.1204E+020.1267E+020.1335E+02
0.1408E+020.1485E+020.1569E+020.1659E+020.1757E+020.1863E+020.1980E+020.2109E+02
0.2252E+020.2412E+020.2592E+020.2796E+020.3032E+020.3305E+020.3626E+020.4012E+02
0.4481E+020.5068E+020.5820E+020.6821E+020.8210E+020.1024E+030.1331E+030.1765E+03
0.2163E+030.2198E+030.1860E+030.1425E+030.1082E+030.8515E+020.6955E+020.5848E+02
0.5025E+020.4387E+020.3878E+020.3461E+020.3111E+020.2811E+020.2551E+020.2322E+02
0.2119E+020.1940E+020.1791E+020.1695E+020.1709E+020.1913E+020.2242E+020.2466E+02
0.2514E+020.2462E+020.2339E+020.2139E+020.1910E+020.1710E+020.1551E+020.1421E+02
0.1312E+020.1218E+020.1133E+020.1057E+020.9859E+010.9194E+010.8560E+010.7952E+01
0.7368E+010.6832E+010.6425E+010.6297E+010.6469E+010.6669E+010.6701E+010.6590E+01
0.6408E+010.6195E+010.5942E+010.5612E+010.5195E+010.4744E+010.4310E+010.3909E+01
0.3534E+010.3181E+010.2845E+010.2522E+010.2210E+010.1906E+010.1610E+010.1320E+01
0.9981E+000.7820E+000.5773E+000.3969E+000.2853E+000.3206E+000.4696E+000.6590E+00
0.8626E+000.1073E+010.1287E+010.1504E+010.1724E+010.1947E+010.2173E+010.2401E+01
0.2633E+010.2869E+010.3109E+010.3354E+010.3603E+010.3858E+010.4119E+010.4387E+01
0.4662E+010.4946E+010.5237E+010.5539E+010.5851E+010.6174E+010.6510E+010.6860E+01
0.7225E+010.7607E+010.8007E+010.8428E+010.8871E+010.9340E+010.9836E+010.1036E+02
0.1093E+020.1153E+020.1218E+020.1288E+020.1364E+020.1447E+020.1537E+020.1637E+02
0.1748E+020.1872E+020.2011E+020.2169E+020.2351E+020.2562E+020.2810E+020.3107E+02
0.3468E+020.3919E+020.4496E+020.5262E+020.6319E+020.7852E+020.1014E+030.1327E+03
0.1605E+030.1628E+030.1391E+030.1078E+030.8232E+020.6488E+020.5298E+020.4448E+02
0.3813E+020.3319E+020.2923E+020.2597E+020.2321E+020.2082E+020.1873E+020.1685E+02
0.1513E+020.1358E+020.1222E+020.1127E+020.1135E+020.1333E+020.1662E+020.1905E+02
0.1992E+020.1987E+020.1916E+020.1769E+020.1584E+020.1417E+020.1281E+020.1170E+02
0.1077E+020.9957E+010.9237E+010.8582E+010.7976E+010.7404E+010.6855E+010.6320E+01
0.5795E+010.5293E+010.4884E+010.4730E+010.4900E+010.5150E+010.5264E+010.5245E+01
0.5155E+010.5033E+010.4876E+010.4649E+010.4336E+010.3981E+010.3633E+010.3307E+01
0.3002E+010.2716E+010.2444E+010.2183E+010.1932E+010.1688E+010.1452E+010.1222E+01
0.9361E+000.7641E+000.6021E+000.4575E+000.3493E+000.3144E+000.3725E+000.4912E+00
0.6373E+000.7962E+000.9619E+000.1132E+010.1305E+010.1481E+010.1660E+010.1842E+01
0.2026E+010.2214E+010.2405E+010.2600E+010.2798E+010.3001E+010.3209E+010.3422E+01
0.3640E+010.3865E+010.4097E+010.4336E+010.4584E+010.4840E+010.5107E+010.5384E+01
0.5673E+010.5975E+010.6292E+010.6624E+010.6975E+010.7345E+010.7737E+010.8154E+01
0.8598E+010.9074E+010.9585E+010.1014E+020.1073E+020.1138E+020.1210E+020.1288E+02
0.1375E+020.1472E+020.1581E+020.1705E+020.1847E+020.2012E+020.2206E+020.2437E+02
0.2718E+020.3069E+020.3517E+020.4109E+020.4925E+020.6099E+020.7834E+020.1018E+03
0.1226E+030.1249E+030.1075E+030.8375E+020.6411E+020.5051E+020.4117E+020.3449E+02
0.2948E+020.2559E+020.2245E+020.1984E+020.1763E+020.1571E+020.1400E+020.1244E+02
0.1100E+020.9649E+010.8440E+010.7598E+010.7802E+010.9882E+010.1310E+020.1548E+02
0.1644E+020.1656E+020.1608E+020.1491E+020.1334E+020.1189E+020.1071E+020.9747E+01
0.8940E+010.8242E+010.7622E+010.7060E+010.6539E+010.6047E+010.5572E+010.5105E+01
0.4640E+010.4184E+010.3800E+010.3650E+010.3824E+010.4097E+010.4251E+010.4281E+01
0.4243E+010.4172E+010.4071E+010.3906E+010.3661E+010.3373E+010.3086E+010.2817E+01
0.2567E+010.2331E+010.2108E+010.1894E+010.1690E+010.1492E+010.1301E+010.1115E+01
0.8711E+000.7285E+000.5943E+000.4731E+000.3750E+000.3200E+000.3289E+000.3968E+00
0.4999E+000.6210E+000.7518E+000.8883E+000.1029E+010.1172E+010.1319E+010.1467E+01
0.1619E+010.1773E+010.1930E+010.2090E+010.2253E+010.2420E+010.2590E+010.2765E+01
0.2945E+010.3130E+010.3320E+010.3516E+010.3719E+010.3930E+010.4148E+010.4375E+01
0.4612E+010.4859E+010.5118E+010.5390E+010.5677E+010.5979E+010.6299E+010.6640E+01
0.7002E+010.7390E+010.7807E+010.8256E+010.8742E+010.9272E+010.9851E+010.1049E+02
0.1119E+020.1198E+020.1287E+020.1387E+020.1502E+020.1636E+020.1792E+020.1979E+02
0.2207E+020.2489E+020.2850E+020.3326E+020.3979E+020.4917E+020.6295E+020.8152E+02
0.9809E+020.1002E+030.8661E+020.6769E+020.5184E+020.4079E+020.3319E+020.2774E+02
0.2365E+020.2046E+020.1788E+020.1574E+020.1391E+020.1231E+020.1087E+020.9543E+01
0.8297E+010.7114E+010.6042E+010.5338E+010.5750E+010.7955E+010.1104E+020.1326E+02
0.1417E+020.1434E+020.1397E+020.1295E+020.1156E+020.1027E+020.9214E+010.8359E+01
0.7644E+010.7027E+010.6482E+010.5988E+010.5531E+010.5099E+010.4681E+010.4268E+01
0.3852E+010.3439E+010.3083E+010.2944E+010.3120E+010.3399E+010.3569E+010.3622E+01
0.3610E+010.3567E+010.3495E+010.3367E+010.3166E+010.2924E+010.2681E+010.2453E+01
0.2240E+010.2040E+010.1852E+010.1672E+010.1500E+010.1334E+010.1174E+010.1020E+01
0.8093E+000.6875E+000.5727E+000.4680E+000.3800E+000.3208E+000.3064E+000.3416E+00
0.4137E+000.5072E+000.6124E+000.7247E+000.8416E+000.9618E+000.1085E+010.1210E+01
0.1338E+010.1468E+010.1601E+010.1736E+010.1874E+010.2015E+010.2160E+010.2308E+01
0.2460E+010.2616E+010.2777E+010.2943E+010.3114E+010.3292E+010.3476E+010.3668E+01
0.3868E+010.4076E+010.4295E+010.4524E+010.4766E+010.5020E+010.5290E+010.5576E+01
0.5881E+010.6208E+010.6558E+010.6935E+010.7344E+010.7788E+010.8274E+010.8809E+01
0.9401E+010.1006E+020.1080E+020.1164E+020.1261E+020.1372E+020.1503E+020.1659E+02
0.1848E+020.2084E+020.2384E+020.2780E+020.3322E+020.4098E+020.5235E+020.6765E+02
0.8136E+020.8324E+020.7220E+020.5652E+020.4327E+020.3400E+020.2762E+020.2303E+02
0.1959E+020.1690E+020.1472E+020.1290E+020.1135E+020.9973E+010.8731E+010.7576E+01
0.6477E+010.5422E+010.4466E+010.3913E+010.4558E+010.6838E+010.9743E+010.1177E+02
0.1261E+020.1277E+020.1244E+020.1153E+020.1026E+020.9081E+010.8123E+010.7348E+01
0.6702E+010.6148E+010.5659E+010.5217E+010.4809E+010.4423E+010.4049E+010.3678E+01
0.3302E+010.2925E+010.2596E+010.2467E+010.2641E+010.2915E+010.3086E+010.3149E+01
0.3150E+010.3122E+010.3067E+010.2960E+010.2789E+010.2581E+010.2370E+010.2173E+01
0.1988E+010.1815E+010.1652E+010.1497E+010.1349E+010.1206E+010.1069E+010.9367E+00
0.7517E+000.6453E+000.5450E+000.4529E+000.3737E+000.3158E+000.2908E+000.3063E+00
0.3567E+000.4297E+000.5160E+000.6102E+000.7094E+000.8122E+000.9178E+000.1026E+01
0.1136E+010.1249E+010.1363E+010.1480E+010.1600E+010.1722E+010.1847E+010.1975E+01
0.2106E+010.2242E+010.2381E+010.2524E+010.2673E+010.2826E+010.2985E+010.3151E+01
0.3324E+010.3504E+010.3692E+010.3890E+010.4098E+010.4318E+010.4551E+010.4797E+01
0.5060E+010.5341E+010.5643E+010.5967E+010.6319E+010.6701E+010.7119E+010.7578E+01
0.8087E+010.8653E+010.9289E+010.1001E+020.1084E+020.1179E+020.1291E+020.1425E+02
0.1587E+020.1788E+020.2044E+020.2382E+020.2844E+020.3504E+020.4469E+020.5767E+02
0.6934E+020.7105E+020.6174E+020.4838E+020.3702E+020.2905E+020.2355E+020.1961E+02
0.1664E+020.1432E+020.1243E+020.1086E+020.9502E+010.8301E+010.7207E+010.6182E+01
0.5198E+010.4245E+010.3390E+010.2992E+010.3854E+010.6140E+010.8852E+010.1070E+02
0.1144E+020.1158E+020.1128E+020.1043E+020.9263E+010.8173E+010.7291E+010.6580E+01
0.5990E+010.5484E+010.5040E+010.4639E+010.4269E+010.3920E+010.3582E+010.3245E+01
0.2903E+010.2557E+010.2252E+010.2131E+010.2297E+010.2558E+010.2725E+010.2789E+01
0.2796E+010.2775E+010.2729E+010.2638E+010.2489E+010.2306E+010.2122E+010.1948E+01
0.1786E+010.1634E+010.1490E+010.1354E+010.1224E+010.1099E+010.9787E+000.8630E+00
0.6978E+000.6035E+000.5145E+000.4325E+000.3610E+000.3062E+000.2770E+000.2810E+00
0.3165E+000.3745E+000.4464E+000.5268E+000.6125E+000.7019E+000.7942E+000.8888E+00
0.9856E+000.1084E+010.1185E+010.1288E+010.1393E+010.1501E+010.1611E+010.1724E+01
0.1839E+010.1958E+010.2081E+010.2207E+010.2338E+010.2473E+010.2613E+010.2758E+01
0.2910E+010.3068E+010.3234E+010.3408E+010.3591E+010.3784E+010.3988E+010.4204E+01
0.4435E+010.4681E+010.4946E+010.5230E+010.5538E+010.5873E+010.6239E+010.6641E+01
0.7086E+010.7581E+010.8137E+010.8767E+010.9488E+010.1032E+020.1130E+020.1247E+02
0.1388E+020.1563E+020.1786E+020.2080E+020.2482E+020.3055E+020.3892E+020.5017E+02
0.6032E+020.6186E+020.5383E+020.4220E+020.3227E+020.2529E+020.2048E+020.1702E+02
0.1442E+020.1237E+020.1072E+020.9326E+010.8125E+010.7057E+010.6079E+010.5157E+01
0.4264E+010.3395E+010.2630E+010.2389E+010.3425E+010.5663E+010.8185E+010.9865E+01
0.1053E+020.1065E+020.1036E+020.9560E+010.8466E+010.7451E+010.6632E+010.5973E+01
0.5429E+010.4964E+010.4556E+010.4190E+010.3852E+010.3533E+010.3224E+010.2917E+01
0.2604E+010.2285E+010.2001E+010.1885E+010.2037E+010.2282E+010.2440E+010.2502E+01
0.2511E+010.2492E+010.2451E+010.2370E+010.2239E+010.2078E+010.1914E+010.1760E+01
0.1616E+010.1481E+010.1353E+010.1232E+010.1117E+010.1006E+010.8991E+000.7964E+00
0.6471E+000.5627E+000.4829E+000.4093E+000.3445E+000.2934E+000.2633E+000.2608E+00
0.2863E+000.3334E+000.3944E+000.4640E+000.5391E+000.6180E+000.6997E+000.7837E+00
0.8698E+000.9577E+000.1048E+010.1139E+010.1233E+010.1329E+010.1427E+010.1528E+01
0.1631E+010.1737E+010.1846E+010.1959E+010.2075E+010.2196E+010.2321E+010.2450E+01
0.2586E+010.2727E+010.2874E+010.3029E+010.3192E+010.3364E+010.3545E+010.3738E+01
0.3943E+010.4162E+010.4397E+010.4650E+010.4924E+010.5222E+010.5547E+010.5904E+01
0.6298E+010.6738E+010.7232E+010.7790E+010.8430E+010.9169E+010.1004E+020.1107E+02
0.1232E+020.1387E+020.1584E+020.1844E+020.2199E+020.2704E+020.3442E+020.4433E+02
0.5329E+020.5470E+020.4764E+020.3736E+020.2855E+020.2235E+020.1807E+020.1500E+02
0.1268E+020.1086E+020.9384E+010.8141E+010.7064E+010.6103E+010.5219E+010.4380E+01
0.3563E+010.2764E+010.2081E+010.1994E+010.3148E+010.5305E+010.7649E+010.9185E+01
0.9778E+010.9869E+010.9589E+010.8836E+010.7808E+010.6858E+010.6092E+010.5479E+01
0.4974E+010.4543E+010.4167E+010.3829E+010.3518E+010.3225E+010.2942E+010.2660E+01
0.2372E+010.2078E+010.1813E+010.1700E+010.1835E+010.2059E+010.2206E+010.2264E+01
0.2271E+010.2253E+010.2213E+010.2140E+010.2023E+010.1880E+010.1735E+010.1598E+01
0.1469E+010.1348E+010.1234E+010.1126E+010.1022E+010.9230E+000.8274E+000.7355E+00
0.5991E+000.5230E+000.4510E+000.3844E+000.3255E+000.2784E+000.2490E+000.2432E+00
0.2624E+000.3015E+000.3542E+000.4154E+000.4820E+000.5525E+000.6256E+000.7010E+00
0.7784E+000.8575E+000.9384E+000.1021E+010.1105E+010.1192E+010.1280E+010.1371E+01
0.1464E+010.1560E+010.1658E+010.1760E+010.1865E+010.1973E+010.2086E+010.2203E+01
0.2324E+010.2451E+010.2584E+010.2724E+010.2870E+010.3025E+010.3188E+010.3362E+01
0.3546E+010.3743E+010.3955E+010.4182E+010.4428E+010.4695E+010.4987E+010.5308E+01
0.5663E+010.6057E+010.6500E+010.7002E+010.7575E+010.8238E+010.9015E+010.9940E+01
0.1106E+020.1245E+020.1422E+020.1654E+020.1971E+020.2423E+020.3081E+020.3966E+02
0.4767E+020.4896E+020.4267E+020.3346E+020.2556E+020.1999E+020.1615E+020.1338E+02
0.1130E+020.9659E+010.8325E+010.7201E+010.6226E+010.5353E+010.4546E+010.3777E+01
0.3023E+010.2286E+010.1677E+010.1733E+010.2954E+010.5013E+010.7195E+010.8604E+01
0.9136E+010.9206E+010.8934E+010.8220E+010.7251E+010.6357E+010.5639E+010.5066E+01
0.4595E+010.4194E+010.3845E+010.3532E+010.3245E+010.2974E+010.2714E+010.2455E+01
0.2190E+010.1919E+010.1671E+010.1557E+010.1672E+010.1874E+010.2008E+010.2060E+01
0.2064E+010.2044E+010.2005E+010.1936E+010.1832E+010.1705E+010.1577E+010.1454E+01
0.1339E+010.1231E+010.1128E+010.1031E+010.9374E+000.8479E+000.7617E+000.6788E+00
0.5533E+000.4843E+000.4191E+000.3587E+000.3052E+000.2620E+000.2343E+000.2273E+00
0.2424E+000.2760E+000.3224E+000.3769E+000.4367E+000.5002E+000.5664E+000.6346E+00
0.7047E+000.7765E+000.8499E+000.9250E+000.1002E+010.1080E+010.1161E+010.1243E+01
0.1328E+010.1414E+010.1504E+010.1596E+010.1691E+010.1790E+010.1892E+010.1999E+01
0.2109E+010.2225E+010.2345E+010.2472E+010.2605E+010.2745E+010.2894E+010.3051E+01
0.3219E+010.3397E+010.3589E+010.3795E+010.4019E+010.4261E+010.4526E+010.4816E+01
0.5138E+010.5495E+010.5897E+010.6351E+010.6870E+010.7470E+010.8173E+010.9010E+01
0.1002E+020.1128E+020.1288E+020.1497E+020.1784E+020.2191E+020.2786E+020.3583E+02
0.4307E+020.4425E+020.3858E+020.3026E+020.2310E+020.1806E+020.1457E+020.1206E+02
0.1017E+020.8678E+010.7464E+010.6441E+010.5550E+010.4751E+010.4009E+010.3300E+01
0.2601E+010.1916E+010.1377E+010.1558E+010.2804E+010.4759E+010.6795E+010.8094E+01
0.8573E+010.8626E+010.8361E+010.7683E+010.6767E+010.5925E+010.5251E+010.4713E+01
0.4272E+010.3898E+010.3573E+010.3282E+010.3016E+010.2767E+010.2526E+010.2287E+01
0.2044E+010.1793E+010.1562E+010.1447E+010.1540E+010.1717E+010.1837E+010.1882E+01
0.1882E+010.1858E+010.1818E+010.1753E+010.1659E+010.1547E+010.1434E+010.1325E+01
0.1222E+010.1124E+010.1032E+010.9441E+000.8597E+000.7787E+000.7006E+000.6255E+00
0.5095E+000.4467E+000.3874E+000.3325E+000.2839E+000.2446E+000.2192E+000.2123E+00
0.2252E+000.2550E+000.2966E+000.3458E+000.4001E+000.4579E+000.5181E+000.5804E+00
0.6444E+000.7100E+000.7771E+000.8457E+000.9158E+000.9876E+000.1061E+010.1136E+01
0.1214E+010.1293E+010.1375E+010.1460E+010.1547E+010.1637E+010.1731E+010.1828E+01
0.1929E+010.2035E+010.2145E+010.2261E+010.2382E+010.2511E+010.2646E+010.2790E+01
0.2943E+010.3107E+010.3282E+010.3471E+010.3674E+010.3896E+010.4137E+010.4403E+01
0.4696E+010.5023E+010.5389E+010.5803E+010.6277E+010.6825E+010.7466E+010.8229E+01
0.9153E+010.1030E+020.1175E+020.1366E+020.1627E+020.1998E+020.2538E+020.3264E+02
0.3922E+020.4031E+020.3517E+020.2758E+020.2105E+020.1644E+020.1325E+020.1096E+02
0.9227E+010.7865E+010.6754E+010.5815E+010.4996E+010.4259E+010.3574E+010.2916E+01
0.2265E+010.1627E+010.1151E+010.1436E+010.2676E+010.4528E+010.6433E+010.7636E+01
0.8070E+010.8109E+010.7852E+010.7207E+010.6341E+010.5547E+010.4912E+010.4407E+01
0.3993E+010.3644E+010.3340E+010.3069E+010.2822E+010.2591E+010.2369E+010.2149E+01
0.1925E+010.1694E+010.1478E+010.1361E+010.1430E+010.1583E+010.1687E+010.1724E+01
0.1719E+010.1691E+010.1647E+010.1585E+010.1500E+010.1402E+010.1302E+010.1206E+01
0.1114E+010.1027E+010.9435E+000.8640E+000.7876E+000.7141E+000.6433E+000.5751E+00
0.4672E+000.4101E+000.3561E+000.3062E+000.2621E+000.2267E+000.2040E+000.1980E+00
0.2101E+000.2373E+000.2754E+000.3204E+000.3702E+000.4231E+000.4784E+000.5356E+00
0.5943E+000.6546E+000.7162E+000.7793E+000.8438E+000.9098E+000.9774E+000.1047E+01
0.1118E+010.1191E+010.1266E+010.1344E+010.1424E+010.1507E+010.1593E+010.1683E+01
0.1776E+010.1873E+010.1974E+010.2081E+010.2193E+010.2311E+010.2435E+010.2568E+01
0.2708E+010.2859E+010.3020E+010.3193E+010.3380E+010.3584E+010.3806E+010.4050E+01
0.4320E+010.4619E+010.4956E+010.5336E+010.5771E+010.6274E+010.6863E+010.7563E+01
0.8411E+010.9461E+010.1080E+020.1255E+020.1494E+020.1834E+020.2329E+020.2993E+02
0.3597E+020.3698E+020.3227E+020.2531E+020.1931E+020.1507E+020.1214E+020.1003E+02
0.8436E+010.7182E+010.6158E+010.5292E+010.4535E+010.3853E+010.3217E+010.2604E+01
0.1995E+010.1399E+010.9812E+000.1345E+010.2559E+010.4312E+010.6098E+010.7217E+01
0.7613E+010.7641E+010.7393E+010.6780E+010.5961E+010.5210E+010.4611E+010.4136E+01
0.3748E+010.3421E+010.3137E+010.2885E+010.2655E+010.2441E+010.2236E+010.2034E+01
0.1828E+010.1616E+010.1414E+010.1296E+010.1340E+010.1466E+010.1554E+010.1583E+01
0.1572E+010.1538E+010.1491E+010.1429E+010.1353E+010.1268E+010.1180E+010.1095E+01
0.1014E+010.9356E+000.8609E+000.7891E+000.7200E+000.6534E+000.5890E+000.5269E+00
0.4263E+000.3743E+000.3252E+000.2799E+000.2401E+000.2085E+000.1887E+000.1845E+00
0.1966E+000.2223E+000.2577E+000.2995E+000.3454E+000.3942E+000.4453E+000.4980E+00
0.5523E+000.6079E+000.6648E+000.7230E+000.7825E+000.8435E+000.9059E+000.9699E+00
0.1036E+010.1103E+010.1173E+010.1245E+010.1319E+010.1395E+010.1475E+010.1557E+01
0.1643E+010.1733E+010.1827E+010.1925E+010.2029E+010.2138E+010.2253E+010.2375E+01
0.2505E+010.2644E+010.2793E+010.2953E+010.3126E+010.3314E+010.3519E+010.3745E+01
0.3994E+010.4271E+010.4581E+010.4933E+010.5334E+010.5798E+010.6341E+010.6988E+01
0.7770E+010.8739E+010.9969E+010.1158E+020.1379E+020.1692E+020.2148E+020.2760E+02
0.3317E+020.3411E+020.2977E+020.2335E+020.1781E+020.1389E+020.1118E+020.9233E+01
0.7760E+010.6600E+010.5652E+010.4849E+010.4147E+010.3513E+010.2920E+010.2347E+01
0.1776E+010.1218E+010.8514E+000.1271E+010.2447E+010.4106E+010.5784E+010.6829E+01
0.7193E+010.7212E+010.6973E+010.6392E+010.5616E+010.4907E+010.4343E+010.3895E+01
0.3531E+010.3224E+010.2958E+010.2723E+010.2510E+010.2311E+010.2122E+010.1936E+01
0.1748E+010.1554E+010.1367E+010.1247E+010.1267E+010.1366E+010.1437E+010.1456E+01
0.1438E+010.1399E+010.1346E+010.1284E+010.1215E+010.1141E+010.1066E+010.9916E+00
0.9196E+000.8501E+000.7832E+000.7185E+000.6561E+000.5956E+000.5372E+000.4807E+00
0.3866E+000.3393E+000.2947E+000.2537E+000.2180E+000.1902E+000.1737E+000.1717E+00
0.1846E+000.2096E+000.2430E+000.2820E+000.3248E+000.3701E+000.4174E+000.4663E+00
0.5166E+000.5681E+000.6208E+000.6748E+000.7300E+000.7865E+000.8443E+000.9037E+00
0.9646E+000.1027E+010.1092E+010.1158E+010.1227E+010.1298E+010.1372E+010.1448E+01
0.1528E+010.1611E+010.1699E+010.1790E+010.1886E+010.1987E+010.2094E+010.2207E+01
0.2328E+010.2457E+010.2595E+010.2743E+010.2904E+010.3078E+010.3268E+010.3477E+01
0.3708E+010.3965E+010.4253E+010.4579E+010.4951E+010.5382E+010.5885E+010.6484E+01
0.7210E+010.8107E+010.9248E+010.1074E+020.1278E+020.1569E+020.1991E+020.2557E+02
0.3073E+020.3161E+020.2760E+020.2165E+020.1650E+020.1287E+020.1036E+020.8545E+01
0.7177E+010.6099E+010.5218E+010.4471E+010.3817E+010.3225E+010.2671E+010.2134E+01
0.1598E+010.1073E+010.7509E+000.1206E+010.2338E+010.3907E+010.5487E+010.6465E+01
0.6802E+010.6816E+010.6587E+010.6035E+010.5302E+010.4632E+010.4099E+010.3678E+01
0.3335E+010.3048E+010.2800E+010.2580E+010.2382E+010.2198E+010.2024E+010.1854E+01
0.1682E+010.1505E+010.1332E+010.1212E+010.1210E+010.1281E+010.1334E+010.1342E+01
0.1317E+010.1271E+010.1212E+010.1148E+010.1085E+010.1021E+010.9574E+000.8934E+00
0.8305E+000.7691E+000.7094E+000.6514E+000.5951E+000.5404E+000.4874E+000.4361E+00
0.3480E+000.3051E+000.2646E+000.2278E+000.1960E+000.1721E+000.1592E+000.1599E+00
0.1741E+000.1988E+000.2308E+000.2675E+000.3076E+000.3499E+000.3939E+000.4394E+00
0.4861E+000.5340E+000.5830E+000.6332E+000.6844E+000.7369E+000.7907E+000.8459E+00
0.9025E+000.9608E+000.1021E+010.1083E+010.1147E+010.1213E+010.1281E+010.1353E+01
0.1427E+010.1504E+010.1585E+010.1670E+010.1760E+010.1854E+010.1953E+010.2059E+01
0.2171E+010.2291E+010.2419E+010.2558E+010.2707E+010.2870E+010.3047E+010.3241E+01
0.3456E+010.3695E+010.3964E+010.4267E+010.4613E+010.5014E+010.5483E+010.6040E+01
0.6715E+010.7551E+010.8612E+010.1000E+020.1190E+020.1460E+020.1852E+020.2379E+02
0.2859E+020.2941E+020.2569E+020.2015E+020.1536E+020.1197E+020.9631E+010.7944E+01
0.6669E+010.5664E+010.4841E+010.4144E+010.3533E+010.2979E+010.2460E+010.1956E+01
0.1451E+010.9566E+000.6718E+000.1145E+010.2229E+010.3714E+010.5204E+010.6123E+01
0.6436E+010.6446E+010.6227E+010.5705E+010.5012E+010.4380E+010.3877E+010.3481E+01
0.3159E+010.2889E+010.2657E+010.2453E+010.2268E+010.2099E+010.1939E+010.1784E+01
0.1628E+010.1468E+010.1309E+010.1190E+010.1167E+010.1211E+010.1244E+010.1241E+01
0.1208E+010.1154E+010.1087E+010.1020E+010.9608E+000.9074E+000.8541E+000.7999E+00
0.7455E+000.6917E+000.6389E+000.5872E+000.5366E+000.4874E+000.4394E+000.3929E+00
0.3103E+000.2714E+000.2351E+000.2021E+000.1744E+000.1545E+000.1455E+000.1493E+00
0.1650E+000.1898E+000.2207E+000.2556E+000.2933E+000.3329E+000.3740E+000.4165E+00
0.4600E+000.5046E+000.5503E+000.5970E+000.6447E+000.6936E+000.7438E+000.7951E+00
0.8479E+000.9022E+000.9581E+000.1016E+010.1075E+010.1137E+010.1201E+010.1268E+01
0.1337E+010.1409E+010.1485E+010.1564E+010.1647E+010.1735E+010.1828E+010.1927E+01
0.2031E+010.2143E+010.2263E+010.2392E+010.2532E+010.2684E+010.2849E+010.3031E+01
0.3231E+010.3455E+010.3705E+010.3988E+010.4312E+010.4686E+010.5124E+010.5644E+01
0.6275E+010.7055E+010.8045E+010.9345E+010.1112E+020.1363E+020.1730E+020.2221E+02
0.2669E+020.2747E+020.2400E+020.1882E+020.1435E+020.1118E+020.8992E+010.7414E+01
0.6222E+010.5283E+010.4513E+010.3860E+010.3288E+010.2768E+010.2281E+010.1806E+01
0.1331E+010.8637E+000.6079E+000.1086E+010.2120E+010.3525E+010.4933E+010.5798E+01
0.6092E+010.6099E+010.5891E+010.5398E+010.4743E+010.4147E+010.3673E+010.3300E+01
0.2998E+010.2745E+010.2528E+010.2338E+010.2167E+010.2011E+010.1864E+010.1723E+01
0.1583E+010.1440E+010.1296E+010.1180E+010.1138E+010.1155E+010.1169E+010.1154E+01
0.1112E+010.1049E+010.9731E+000.9001E+000.8432E+000.7984E+000.7552E+000.7102E+00
0.6641E+000.6175E+000.5712E+000.5253E+000.4803E+000.4361E+000.3929E+000.3509E+00
0.2733E+000.2384E+000.2059E+000.1769E+000.1532E+000.1376E+000.1329E+000.1400E+00
0.1576E+000.1826E+000.2126E+000.2459E+000.2814E+000.3186E+000.3572E+000.3968E+00
0.4375E+000.4792E+000.5217E+000.5653E+000.6099E+000.6555E+000.7023E+000.7503E+00
0.7995E+000.8502E+000.9024E+000.9563E+000.1012E+010.1070E+010.1129E+010.1192E+01
0.1256E+010.1324E+010.1395E+010.1469E+010.1547E+010.1629E+010.1716E+010.1808E+01
0.1906E+010.2011E+010.2123E+010.2244E+010.2375E+010.2516E+010.2671E+010.2841E+01
0.3029E+010.3239E+010.3473E+010.3738E+010.4041E+010.4392E+010.4802E+010.5289E+01
0.5879E+010.6610E+010.7537E+010.8754E+010.1041E+020.1277E+020.1620E+020.2080E+02
0.2500E+020.2573E+020.2248E+020.1764E+020.1344E+020.1048E+020.8424E+010.6945E+01
0.5827E+010.4946E+010.4224E+010.3611E+010.3074E+010.2586E+010.2127E+010.1680E+01
0.1232E+010.7897E+000.5551E+000.1026E+010.2010E+010.3341E+010.4671E+010.5489E+01
0.5765E+010.5771E+010.5575E+010.5110E+010.4492E+010.3930E+010.3485E+010.3134E+01
0.2850E+010.2613E+010.2411E+010.2234E+010.2076E+010.1933E+010.1799E+010.1672E+01
0.1547E+010.1420E+010.1291E+010.1179E+010.1121E+010.1113E+010.1107E+010.1080E+01
0.1029E+010.9562E+000.8699E+000.7887E+000.7316E+000.6940E+000.6601E+000.6239E+00
0.5856E+000.5459E+000.5058E+000.4656E+000.4257E+000.3863E+000.3476E+000.3099E+00
0.2371E+000.2060E+000.1773E+000.1522E+000.1329E+000.1220E+000.1219E+000.1326E+00
0.1519E+000.1772E+000.2064E+000.2381E+000.2718E+000.3068E+000.3429E+000.3800E+00
0.4181E+000.4570E+000.4968E+000.5375E+000.5791E+000.6218E+000.6655E+000.7103E+00
0.7564E+000.8038E+000.8526E+000.9030E+000.9551E+000.1009E+010.1065E+010.1123E+01
0.1184E+010.1247E+010.1313E+010.1383E+010.1456E+010.1533E+010.1614E+010.1701E+01
0.1793E+010.1891E+010.1996E+010.2110E+010.2232E+010.2365E+010.2511E+010.2670E+01
0.2847E+010.3043E+010.3263E+010.3512E+010.3796E+010.4125E+010.4510E+010.4968E+01
0.5522E+010.6208E+010.7079E+010.8221E+010.9778E+010.1199E+020.1521E+020.1953E+02
0.2347E+020.2416E+020.2112E+020.1657E+020.1263E+020.9844E+010.7915E+010.6525E+01
0.5475E+010.4647E+010.3968E+010.3392E+010.2886E+010.2427E+010.1996E+010.1574E+01
0.1150E+010.7313E+000.5105E+000.9656E+000.1899E+010.3159E+010.4418E+010.5192E+01
0.5454E+010.5461E+010.5276E+010.4838E+010.4257E+010.3728E+010.3309E+010.2979E+01
0.2713E+010.2492E+010.2304E+010.2140E+010.1994E+010.1863E+010.1742E+010.1628E+01
0.1517E+010.1406E+010.1293E+010.1188E+010.1118E+010.1086E+010.1061E+010.1021E+01
0.9601E+000.8777E+000.7795E+000.6870E+000.6264E+000.5940E+000.5684E+000.5405E+00
0.5096E+000.4766E+000.4424E+000.4076E+000.3726E+000.3378E+000.3034E+000.2697E+00
0.2015E+000.1741E+000.1493E+000.1284E+000.1138E+000.1082E+000.1130E+000.1272E+00
0.1481E+000.1735E+000.2019E+000.2322E+000.2640E+000.2970E+000.3309E+000.3657E+00
0.4013E+000.4377E+000.4749E+000.5130E+000.5519E+000.5918E+000.6326E+000.6746E+00
0.7177E+000.7620E+000.8078E+000.8549E+000.9037E+000.9543E+000.1007E+010.1061E+01
0.1118E+010.1177E+010.1240E+010.1305E+010.1373E+010.1446E+010.1522E+010.1603E+01
0.1690E+010.1782E+010.1881E+010.1987E+010.2102E+010.2228E+010.2364E+010.2514E+01
0.2680E+010.2865E+010.3072E+010.3306E+010.3573E+010.3883E+010.4245E+010.4675E+01
0.5197E+010.5842E+010.6661E+010.7736E+010.9201E+010.1128E+020.1431E+020.1838E+02
0.2209E+020.2275E+020.1989E+020.1561E+020.1190E+020.9274E+010.7457E+010.6148E+01
0.5159E+010.4379E+010.3740E+010.3198E+010.2721E+010.2289E+010.1882E+010.1484E+01
0.1084E+010.6859E+000.4721E+000.9041E+000.1789E+010.2981E+010.4173E+010.4907E+01
0.5157E+010.5165E+010.4992E+010.4581E+010.4035E+010.3538E+010.3145E+010.2836E+01
0.2587E+010.2380E+010.2205E+010.2053E+010.1920E+010.1800E+010.1691E+010.1591E+01
0.1494E+010.1399E+010.1301E+010.1205E+010.1126E+010.1074E+010.1030E+010.9777E+00
0.9075E+000.8156E+000.7048E+000.5977E+000.5288E+000.4986E+000.4801E+000.4598E+00
0.4359E+000.4092E+000.3807E+000.3511E+000.3208E+000.2904E+000.2601E+000.2303E+00
0.1664E+000.1428E+000.1220E+000.1059E+000.9685E-010.9721E-010.1070E+000.1242E+00
0.1464E+000.1717E+000.1991E+000.2280E+000.2581E+000.2891E+000.3209E+000.3535E+00
0.3868E+000.4209E+000.4557E+000.4912E+000.5277E+000.5650E+000.6032E+000.6425E+00
0.6828E+000.7244E+000.7672E+000.8114E+000.8571E+000.9045E+000.9537E+000.1005E+01
0.1058E+010.1114E+010.1172E+010.1233E+010.1298E+010.1366E+010.1438E+010.1514E+01
0.1595E+010.1682E+010.1775E+010.1875E+010.1984E+010.2101E+010.2230E+010.2371E+01
0.2527E+010.2701E+010.2896E+010.3117E+010.3369E+010.3660E+010.4002E+010.4408E+01
0.4899E+010.5507E+010.6280E+010.7293E+010.8674E+010.1064E+020.1349E+020.1733E+02
0.2083E+020.2146E+020.1877E+020.1473E+020.1123E+020.8755E+010.7041E+010.5807E+01
0.4874E+010.4138E+010.3536E+010.3024E+010.2576E+010.2168E+010.1784E+010.1409E+01
0.1030E+010.6515E+000.4391E+000.8415E+000.1678E+010.2806E+010.3936E+010.4633E+01
0.4872E+010.4882E+010.4722E+010.4337E+010.3825E+010.3359E+010.2990E+010.2701E+01
0.2469E+010.2277E+010.2114E+010.1974E+010.1852E+010.1744E+010.1647E+010.1559E+01
0.1477E+010.1397E+010.1316E+010.1229E+010.1146E+010.1076E+010.1016E+010.9511E+00
0.8725E+000.7723E+000.6492E+000.5249E+000.4416E+000.4088E+000.3953E+000.3817E+00
0.3643E+000.3436E+000.3205E+000.2958E+000.2701E+000.2439E+000.2176E+000.1916E+00
0.1320E+000.1124E+000.9611E-010.8555E-010.8321E-010.9000E-010.1044E+000.1239E+00
0.1467E+000.1716E+000.1979E+000.2254E+000.2538E+000.2829E+000.3127E+000.3432E+00
0.3744E+000.4062E+000.4387E+000.4720E+000.5061E+000.5410E+000.5767E+000.6135E+00
0.6513E+000.6902E+000.7303E+000.7718E+000.8147E+000.8591E+000.9053E+000.9533E+00
0.1003E+010.1056E+010.1111E+010.1168E+010.1229E+010.1293E+010.1360E+010.1432E+01
0.1508E+010.1590E+010.1678E+010.1772E+010.1874E+010.1985E+010.2107E+010.2240E+01
0.2387E+010.2551E+010.2735E+010.2943E+010.3181E+010.3456E+010.3778E+010.4161E+01
0.4625E+010.5200E+010.5929E+010.6886E+010.8191E+010.1004E+020.1274E+020.1636E+02
0.1968E+020.2027E+020.1774E+020.1393E+020.1062E+020.8283E+010.6663E+010.5497E+01
0.4616E+010.3921E+010.3352E+010.2870E+010.2446E+010.2061E+010.1699E+010.1345E+01
0.9864E+000.6266E+000.4112E+000.7783E+000.1566E+010.2633E+010.3704E+010.4368E+01
0.4598E+010.4610E+010.4463E+010.4104E+010.3626E+010.3190E+010.2845E+010.2575E+01
0.2358E+010.2180E+010.2030E+010.1902E+010.1791E+010.1693E+010.1608E+010.1532E+01
0.1464E+010.1400E+010.1335E+010.1260E+010.1176E+010.1092E+010.1017E+010.9418E+00
0.8562E+000.7497E+000.6165E+000.4743E+000.3700E+000.3272E+000.3148E+000.3064E+00
0.2949E+000.2797E+000.2617E+000.2417E+000.2203E+000.1982E+000.1757E+000.1534E+00
0.9823E-010.8313E-010.7263E-010.6941E-010.7484E-010.8764E-010.1054E+000.1262E+00
0.1490E+000.1732E+000.1983E+000.2243E+000.2509E+000.2782E+000.3061E+000.3346E+00
0.3637E+000.3935E+000.4239E+000.4549E+000.4868E+000.5194E+000.5529E+000.5873E+00
0.6227E+000.6591E+000.6967E+000.7356E+000.7758E+000.8175E+000.8609E+000.9060E+00
0.9530E+000.1002E+010.1054E+010.1108E+010.1165E+010.1225E+010.1289E+010.1356E+01
0.1428E+010.1505E+010.1588E+010.1677E+010.1773E+010.1878E+010.1992E+010.2118E+01
0.2257E+010.2412E+010.2586E+010.2782E+010.3007E+010.3267E+010.3571E+010.3934E+01
0.4372E+010.4915E+010.5605E+010.6510E+010.7744E+010.9498E+010.1205E+020.1548E+02
0.1861E+020.1919E+020.1679E+020.1319E+020.1006E+020.7850E+010.6318E+010.5214E+01
0.4381E+010.3724E+010.3187E+010.2731E+010.2330E+010.1967E+010.1625E+010.1291E+01
0.9523E+000.6101E+000.3885E+000.7147E+000.1455E+010.2464E+010.3479E+010.4111E+01
0.4333E+010.4349E+010.4215E+010.3882E+010.3436E+010.3029E+010.2707E+010.2456E+01
0.2255E+010.2090E+010.1952E+010.1835E+010.1734E+010.1648E+010.1574E+010.1510E+01
0.1456E+010.1408E+010.1359E+010.1298E+010.1215E+010.1121E+010.1033E+010.9496E+00
0.8590E+000.7489E+000.6094E+000.4521E+000.3224E+000.2592E+000.2413E+000.2350E+00
0.2279E+000.2175E+000.2042E+000.1886E+000.1714E+000.1531E+000.1343E+000.1158E+00
0.6575E-010.5675E-010.5464E-010.6079E-010.7359E-010.9059E-010.1101E+000.1312E+00
0.1534E+000.1765E+000.2002E+000.2246E+000.2495E+000.2750E+000.3010E+000.3276E+00
0.3547E+000.3825E+000.4108E+000.4398E+000.4695E+000.5000E+000.5313E+000.5635E+00
0.5966E+000.6307E+000.6659E+000.7024E+000.7401E+000.7792E+000.8199E+000.8623E+00
0.9065E+000.9527E+000.1001E+010.1052E+010.1106E+010.1162E+010.1222E+010.1286E+01
0.1354E+010.1426E+010.1504E+010.1588E+010.1679E+010.1778E+010.1886E+010.2005E+01
0.2136E+010.2283E+010.2447E+010.2633E+010.2845E+010.3091E+010.3379E+010.3722E+01
0.4137E+010.4651E+010.5305E+010.6162E+010.7330E+010.8991E+010.1141E+020.1466E+02
0.1763E+020.1818E+020.1592E+020.1251E+020.9549E+010.7451E+010.6000E+010.4955E+01
0.4166E+010.3545E+010.3036E+010.2605E+010.2227E+010.1884E+010.1561E+010.1246E+01
0.9261E+000.6008E+000.3718E+000.6513E+000.1345E+010.2296E+010.3258E+010.3862E+01
0.4078E+010.4098E+010.3976E+010.3668E+010.3254E+010.2875E+010.2576E+010.2343E+01
0.2157E+010.2005E+010.1879E+010.1772E+010.1683E+010.1607E+010.1544E+010.1492E+01
0.1451E+010.1419E+010.1388E+010.1341E+010.1262E+010.1162E+010.1064E+010.9737E+00
0.8802E+000.7694E+000.6280E+000.4613E+000.3088E+000.2162E+000.1809E+000.1704E+00
0.1647E+000.1578E+000.1484E+000.1366E+000.1232E+000.1086E+000.9347E-010.7874E-01
0.3713E-010.3900E-010.4853E-010.6287E-010.7987E-010.9845E-010.1181E+000.1385E+00
0.1596E+000.1813E+000.2035E+000.2262E+000.2494E+000.2731E+000.2973E+000.3220E+00
0.3472E+000.3730E+000.3994E+000.4264E+000.4541E+000.4826E+000.5118E+000.5418E+00
0.5728E+000.6047E+000.6377E+000.6718E+000.7072E+000.7439E+000.7821E+000.8218E+00
0.8634E+000.9068E+000.9524E+000.1000E+010.1051E+010.1104E+010.1161E+010.1221E+01
0.1285E+010.1353E+010.1427E+010.1506E+010.1592E+010.1685E+010.1787E+010.1899E+01
0.2024E+010.2162E+010.2317E+010.2493E+010.2694E+010.2927E+010.3200E+010.3525E+01
0.3918E+010.4405E+010.5025E+010.5837E+010.6945E+010.8520E+010.1081E+020.1389E+02
0.1672E+020.1725E+020.1511E+020.1188E+020.9072E+010.7083E+010.5707E+010.4717E+01
0.3970E+010.3381E+010.2900E+010.2492E+010.2135E+010.1811E+010.1506E+010.1208E+01
0.9069E+000.5979E+000.3618E+000.5889E+000.1235E+010.2132E+010.3043E+010.3620E+01
0.3831E+010.3855E+010.3745E+010.3462E+010.3079E+010.2729E+010.2452E+010.2236E+01
0.2065E+010.1925E+010.1810E+010.1715E+010.1635E+010.1570E+010.1518E+010.1478E+01
0.1450E+010.1434E+010.1420E+010.1389E+010.1317E+010.1213E+010.1108E+010.1013E+01
0.9182E+000.8093E+000.6697E+000.4995E+000.3324E+000.2123E+000.1487E+000.1216E+00
0.1102E+000.1028E+000.9527E-010.8629E-010.7589E-010.6451E-010.5300E-010.4292E-01
0.2794E-010.4235E-010.5812E-010.7481E-010.9223E-010.1103E+000.1289E+000.1480E+00
0.1676E+000.1876E+000.2081E+000.2291E+000.2505E+000.2724E+000.2948E+000.3176E+00
0.3410E+000.3650E+000.3895E+000.4146E+000.4404E+000.4669E+000.4941E+000.5221E+00
0.5510E+000.5808E+000.6117E+000.6436E+000.6767E+000.7111E+000.7469E+000.7842E+00
0.8232E+000.8640E+000.9069E+000.9519E+000.9994E+000.1050E+010.1103E+010.1159E+01
0.1220E+010.1284E+010.1354E+010.1429E+010.1510E+010.1598E+010.1694E+010.1800E+01
0.1918E+010.2049E+010.2196E+010.2362E+010.2553E+010.2774E+010.3032E+010.3340E+01
0.3713E+010.4175E+010.4763E+010.5534E+010.6585E+010.8080E+010.1026E+020.1318E+02
0.1587E+020.1638E+020.1435E+020.1129E+020.8629E+010.6741E+010.5436E+010.4497E+01
0.3788E+010.3231E+010.2775E+010.2389E+010.2052E+010.1746E+010.1458E+010.1178E+01
0.8938E+000.6009E+000.3593E+000.5287E+000.1126E+010.1970E+010.2833E+010.3384E+01
0.3591E+010.3619E+010.3522E+010.3264E+010.2911E+010.2588E+010.2333E+010.2135E+01
0.1977E+010.1850E+010.1746E+010.1661E+010.1592E+010.1537E+010.1495E+010.1467E+01
0.1453E+010.1452E+010.1457E+010.1442E+010.1379E+010.1273E+010.1163E+010.1065E+01
0.9710E+000.8657E+000.7304E+000.5607E+000.3858E+000.2485E+000.1612E+000.1104E+00
0.8141E-010.6405E-010.5191E-010.4148E-010.3125E-010.2112E-010.1359E-010.1641E-01
0.5007E-010.6349E-010.7785E-010.9295E-010.1087E+000.1250E+000.1419E+000.1592E+00
0.1770E+000.1953E+000.2140E+000.2332E+000.2528E+000.2729E+000.2935E+000.3145E+00
0.3361E+000.3582E+000.3809E+000.4042E+000.4281E+000.4527E+000.4780E+000.5041E+00
0.5311E+000.5589E+000.5877E+000.6175E+000.6485E+000.6807E+000.7142E+000.7492E+00
0.7858E+000.8241E+000.8643E+000.9067E+000.9514E+000.9986E+000.1049E+010.1102E+01
0.1159E+010.1220E+010.1285E+010.1356E+010.1433E+010.1516E+010.1607E+010.1707E+01
0.1819E+010.1943E+010.2082E+010.2240E+010.2420E+010.2629E+010.2875E+010.3167E+01
0.3521E+010.3959E+010.4517E+010.5249E+010.6248E+010.7668E+010.9736E+010.1252E+02
0.1508E+020.1557E+020.1365E+020.1075E+020.8216E+010.6424E+010.5184E+010.4293E+01
0.3621E+010.3093E+010.2661E+010.2296E+010.1977E+010.1688E+010.1417E+010.1154E+01
0.8861E+000.6090E+000.3647E+000.4720E+000.1019E+010.1810E+010.2627E+010.3155E+01
0.3357E+010.3391E+010.3307E+010.3072E+010.2750E+010.2453E+010.2219E+010.2038E+01
0.1894E+010.1779E+010.1686E+010.1611E+010.1552E+010.1507E+010.1476E+010.1459E+01
0.1459E+010.1474E+010.1497E+010.1499E+010.1446E+010.1342E+010.1229E+010.1129E+01
0.1036E+010.9357E+000.8058E+000.6382E+000.4587E+000.3108E+000.2099E+000.1448E+00
0.1019E+000.7275E-010.5201E-010.3694E-010.2693E-010.2374E-010.2838E-010.3801E-01
0.8096E-010.9077E-010.1021E+000.1145E+000.1278E+000.1419E+000.1566E+000.1719E+00
0.1878E+000.2041E+000.2210E+000.2384E+000.2562E+000.2745E+000.2933E+000.3126E+00
0.3324E+000.3527E+000.3736E+000.3951E+000.4172E+000.4400E+000.4635E+000.4877E+00
0.5127E+000.5387E+000.5655E+000.5933E+000.6222E+000.6523E+000.6837E+000.7165E+00
0.7508E+000.7867E+000.8245E+000.8642E+000.9062E+000.9507E+000.9978E+000.1048E+01
0.1102E+010.1159E+010.1221E+010.1288E+010.1360E+010.1439E+010.1525E+010.1620E+01
0.1725E+010.1842E+010.1974E+010.2124E+010.2295E+010.2493E+010.2726E+010.3003E+01
0.3339E+010.3755E+010.4285E+010.4981E+010.5930E+010.7280E+010.9247E+010.1189E+02
0.1433E+020.1480E+020.1299E+020.1023E+020.7829E+010.6127E+010.4950E+010.4104E+01
0.3466E+010.2965E+010.2556E+010.2211E+010.1910E+010.1637E+010.1382E+010.1134E+01
0.8832E+000.6217E+000.3782E+000.4212E+000.9132E+000.1654E+010.2426E+010.2931E+01
0.3131E+010.3170E+010.3097E+010.2886E+010.2593E+010.2323E+010.2110E+010.1945E+01
0.1815E+010.1712E+010.1630E+010.1565E+010.1515E+010.1480E+010.1460E+010.1455E+01
0.1468E+010.1499E+010.1540E+010.1561E+010.1520E+010.1418E+010.1303E+010.1202E+01
0.1112E+010.1017E+010.8924E+000.7268E+000.5432E+000.3867E+000.2762E+000.2024E+00
0.1526E+000.1184E+000.9491E-010.7936E-010.7030E-010.6684E-010.6813E-010.7316E-01
0.1137E+000.1201E+000.1283E+000.1379E+000.1486E+000.1602E+000.1727E+000.1859E+00
0.1997E+000.2141E+000.2291E+000.2446E+000.2606E+000.2771E+000.2941E+000.3116E+00
0.3297E+000.3483E+000.3675E+000.3872E+000.4076E+000.4286E+000.4503E+000.4727E+00
0.4959E+000.5200E+000.5449E+000.5708E+000.5978E+000.6259E+000.6552E+000.6858E+00
0.7179E+000.7515E+000.7870E+000.8243E+000.8637E+000.9055E+000.9498E+000.9971E+00
0.1048E+010.1102E+010.1160E+010.1223E+010.1291E+010.1366E+010.1447E+010.1537E+01
0.1636E+010.1747E+010.1872E+010.2014E+010.2176E+010.2365E+010.2585E+010.2848E+01
0.3167E+010.3563E+010.4066E+010.4728E+010.5630E+010.6915E+010.8786E+010.1131E+02
0.1363E+020.1409E+020.1237E+020.9750E+010.7467E+010.5849E+010.4731E+010.3928E+01
0.3323E+010.2847E+010.2460E+010.2134E+010.1849E+010.1593E+010.1353E+010.1120E+01
0.8845E+000.6387E+000.3993E+000.3794E+000.8107E+000.1500E+010.2229E+010.2713E+01
0.2910E+010.2954E+010.2894E+010.2706E+010.2442E+010.2198E+010.2005E+010.1856E+01
0.1740E+010.1649E+010.1577E+010.1522E+010.1482E+010.1456E+010.1446E+010.1453E+01
0.1479E+010.1526E+010.1586E+010.1626E+010.1598E+010.1500E+010.1385E+010.1284E+01
0.1197E+010.1106E+010.9875E+000.8233E+000.6350E+000.4697E+000.3502E+000.2687E+00
0.2128E+000.1739E+000.1468E+000.1284E+000.1166E+000.1102E+000.1081E+000.1095E+00
0.1472E+000.1505E+000.1557E+000.1625E+000.1706E+000.1798E+000.1900E+000.2010E+00
0.2127E+000.2251E+000.2381E+000.2518E+000.2659E+000.2807E+000.2959E+000.3117E+00
0.3281E+000.3449E+000.3624E+000.3804E+000.3991E+000.4184E+000.4384E+000.4590E+00
0.4805E+000.5027E+000.5259E+000.5499E+000.5750E+000.6011E+000.6284E+000.6570E+00
0.6870E+000.7184E+000.7516E+000.7866E+000.8235E+000.8627E+000.9044E+000.9488E+00
0.9963E+000.1047E+010.1102E+010.1162E+010.1226E+010.1296E+010.1373E+010.1458E+01
0.1552E+010.1657E+010.1776E+010.1910E+010.2064E+010.2242E+010.2452E+010.2701E+01
0.3005E+010.3380E+010.3859E+010.4488E+010.5346E+010.6568E+010.8350E+010.1075E+02
0.1297E+020.1341E+020.1178E+020.9296E+010.7126E+010.5588E+010.4526E+010.3763E+01
0.3189E+010.2738E+010.2372E+010.2063E+010.1795E+010.1553E+010.1328E+010.1110E+01
0.8898E+000.6594E+000.4273E+000.3506E+000.7125E+000.1350E+010.2037E+010.2500E+01
0.2695E+010.2744E+010.2696E+010.2531E+010.2296E+010.2077E+010.1904E+010.1771E+01
0.1668E+010.1588E+010.1527E+010.1481E+010.1451E+010.1435E+010.1436E+010.1454E+01
0.1494E+010.1557E+010.1636E+010.1696E+010.1681E+010.1589E+010.1473E+010.1373E+01
0.1288E+010.1203E+010.1089E+010.9256E+000.7315E+000.5568E+000.4280E+000.3387E+00
0.2764E+000.2323E+000.2009E+000.1787E+000.1634E+000.1536E+000.1482E+000.1463E+00
0.1811E+000.1815E+000.1838E+000.1879E+000.1935E+000.2003E+000.2082E+000.2170E+00
0.2266E+000.2370E+000.2481E+000.2599E+000.2722E+000.2852E+000.2987E+000.3127E+00
0.3274E+000.3426E+000.3584E+000.3747E+000.3917E+000.4093E+000.4276E+000.4466E+00
0.4663E+000.4868E+000.5082E+000.5304E+000.5536E+000.5779E+000.6033E+000.6299E+00
0.6578E+000.6872E+000.7182E+000.7509E+000.7855E+000.8222E+000.8613E+000.9030E+00
0.9477E+000.9957E+000.1047E+010.1103E+010.1164E+010.1230E+010.1303E+010.1383E+01
0.1472E+010.1572E+010.1684E+010.1811E+010.1957E+010.2126E+010.2325E+010.2562E+01
0.2850E+010.3207E+010.3662E+010.4260E+010.5077E+010.6240E+010.7936E+010.1022E+02
0.1234E+020.1277E+020.1123E+020.8867E+010.6805E+010.5343E+010.4333E+010.3609E+01
0.3064E+010.2637E+010.2290E+010.1998E+010.1745E+010.1518E+010.1308E+010.1104E+01
0.8986E+000.6836E+000.4613E+000.3389E+000.6207E+000.1204E+010.1849E+010.2293E+01
0.2486E+010.2540E+010.2503E+010.2360E+010.2153E+010.1959E+010.1806E+010.1689E+01
0.1599E+010.1531E+010.1480E+010.1444E+010.1423E+010.1417E+010.1428E+010.1458E+01
0.1511E+010.1590E+010.1689E+010.1768E+010.1769E+010.1682E+010.1567E+010.1468E+01
0.1387E+010.1306E+010.1196E+010.1032E+010.8315E+000.6467E+000.5081E+000.4106E+00
0.3417E+000.2920E+000.2559E+000.2295E+000.2105E+000.1972E+000.1884E+000.1833E+00
0.2154E+000.2129E+000.2125E+000.2140E+000.2171E+000.2215E+000.2272E+000.2338E+00
0.2414E+000.2498E+000.2590E+000.2688E+000.2794E+000.2905E+000.3023E+000.3147E+00
0.3276E+000.3412E+000.3553E+000.3700E+000.3853E+000.4013E+000.4179E+000.4353E+00
0.4533E+000.4721E+000.4918E+000.5123E+000.5337E+000.5561E+000.5796E+000.6043E+00
0.6303E+000.6576E+000.6865E+000.7170E+000.7494E+000.7838E+000.8204E+000.8595E+00
0.9014E+000.9465E+000.9951E+000.1048E+010.1105E+010.1167E+010.1236E+010.1312E+01
0.1396E+010.1490E+010.1596E+010.1717E+010.1855E+010.2015E+010.2204E+010.2429E+01
0.2702E+010.3042E+010.3474E+010.4043E+010.4820E+010.5927E+010.7543E+010.9723E+01
0.1174E+020.1216E+020.1070E+020.8461E+010.6501E+010.5111E+010.4152E+010.3464E+01
0.2947E+010.2543E+010.2215E+010.1939E+010.1701E+010.1488E+010.1291E+010.1101E+01
0.9105E+000.7109E+000.5006E+000.3468E+000.5388E+000.1064E+010.1667E+010.2091E+01
0.2282E+010.2341E+010.2316E+010.2194E+010.2014E+010.1845E+010.1712E+010.1610E+01
0.1533E+010.1476E+010.1435E+010.1409E+010.1397E+010.1401E+010.1422E+010.1464E+01
0.1531E+010.1626E+010.1744E+010.1844E+010.1860E+010.1780E+010.1667E+010.1569E+01
0.1490E+010.1414E+010.1308E+010.1143E+010.9343E+000.7388E+000.5899E+000.4839E+00
0.4080E+000.3526E+000.3115E+000.2808E+000.2579E+000.2410E+000.2288E+000.2206E+00
0.2501E+000.2448E+000.2418E+000.2407E+000.2414E+000.2435E+000.2469E+000.2514E+00
0.2569E+000.2633E+000.2706E+000.2786E+000.2874E+000.2968E+000.3068E+000.3175E+00
0.3288E+000.3407E+000.3531E+000.3662E+000.3800E+000.3943E+000.4093E+000.4250E+00
0.4414E+000.4586E+000.4765E+000.4953E+000.5150E+000.5357E+000.5574E+000.5802E+00
0.6043E+000.6296E+000.6565E+000.6849E+000.7150E+000.7471E+000.7813E+000.8180E+00
0.8572E+000.8995E+000.9451E+000.9946E+000.1048E+010.1107E+010.1172E+010.1243E+01
0.1323E+010.1412E+010.1512E+010.1626E+010.1757E+010.1909E+010.2088E+010.2301E+01
0.2561E+010.2883E+010.3295E+010.3836E+010.4575E+010.5629E+010.7168E+010.9247E+01
0.1118E+020.1158E+020.1020E+020.8075E+010.6213E+010.4892E+010.3981E+010.3328E+01
0.2838E+010.2455E+010.2145E+010.1885E+010.1662E+010.1462E+010.1278E+010.1102E+01
0.9255E+000.7411E+000.5443E+000.3738E+000.4722E+000.9308E+000.1491E+010.1895E+01
0.2084E+010.2147E+010.2132E+010.2032E+010.1879E+010.1735E+010.1621E+010.1534E+01
0.1470E+010.1424E+010.1393E+010.1376E+010.1374E+010.1388E+010.1419E+010.1472E+01
0.1553E+010.1665E+010.1803E+010.1924E+010.1956E+010.1883E+010.1772E+010.1674E+01
0.1599E+010.1527E+010.1423E+010.1256E+010.1040E+010.8326E+000.6731E+000.5583E+00
0.4752E+000.4138E+000.3676E+000.3324E+000.3055E+000.2850E+000.2696E+000.2582E+00
0.2851E+000.2771E+000.2715E+000.2679E+000.2662E+000.2661E+000.2673E+000.2697E+00
0.2732E+000.2777E+000.2830E+000.2892E+000.2961E+000.3038E+000.3121E+000.3211E+00
0.3308E+000.3410E+000.3519E+000.3634E+000.3755E+000.3882E+000.4016E+000.4157E+00
0.4305E+000.4460E+000.4623E+000.4795E+000.4975E+000.5164E+000.5364E+000.5574E+00
0.5796E+000.6030E+000.6279E+000.6543E+000.6823E+000.7122E+000.7441E+000.7783E+00
0.8150E+000.8545E+000.8973E+000.9437E+000.9943E+000.1050E+010.1111E+010.1178E+01
0.1253E+010.1337E+010.1432E+010.1539E+010.1663E+010.1807E+010.1977E+010.2179E+01
0.2426E+010.2732E+010.3123E+010.3637E+010.4341E+010.5344E+010.6810E+010.8792E+01
0.1064E+020.1103E+020.9728E+010.7708E+010.5939E+010.4685E+010.3819E+010.3200E+01
0.2735E+010.2373E+010.2080E+010.1836E+010.1626E+010.1440E+010.1269E+010.1105E+01
0.9431E+000.7739E+000.5919E+000.4167E+000.4282E+000.8083E+000.1322E+010.1707E+01
0.1892E+010.1959E+010.1954E+010.1874E+010.1748E+010.1627E+010.1532E+010.1461E+01
0.1409E+010.1374E+010.1353E+010.1346E+010.1353E+010.1376E+010.1418E+010.1483E+01
0.1577E+010.1707E+010.1865E+010.2007E+010.2056E+010.1990E+010.1881E+010.1785E+01
0.1712E+010.1643E+010.1542E+010.1373E+010.1147E+010.9282E+000.7577E+000.6338E+00
0.5433E+000.4757E+000.4242E+000.3845E+000.3536E+000.3294E+000.3106E+000.2961E+00
0.3206E+000.3098E+000.3017E+000.2957E+000.2916E+000.2892E+000.2883E+000.2886E+00
0.2901E+000.2927E+000.2962E+000.3005E+000.3057E+000.3116E+000.3183E+000.3256E+00
0.3336E+000.3422E+000.3515E+000.3614E+000.3719E+000.3831E+000.3949E+000.4074E+00
0.4206E+000.4345E+000.4492E+000.4647E+000.4810E+000.4983E+000.5165E+000.5358E+00
0.5561E+000.5777E+000.6007E+000.6250E+000.6510E+000.6787E+000.7084E+000.7402E+00
0.7745E+000.8114E+000.8515E+000.8949E+000.9424E+000.9944E+000.1052E+010.1115E+01
0.1186E+010.1265E+010.1354E+010.1456E+010.1573E+010.1709E+010.1870E+010.2062E+01
0.2296E+010.2587E+010.2958E+010.3447E+010.4116E+010.5071E+010.6467E+010.8357E+01
0.1012E+020.1051E+020.9274E+010.7359E+010.5679E+010.4488E+010.3666E+010.3078E+01
0.2639E+010.2296E+010.2020E+010.1791E+010.1594E+010.1421E+010.1262E+010.1112E+01
0.9634E+000.8092E+000.6427E+000.4717E+000.4146E+000.7013E+000.1163E+010.1526E+01
0.1708E+010.1777E+010.1780E+010.1719E+010.1619E+010.1522E+010.1446E+010.1390E+01
0.1351E+010.1327E+010.1316E+010.1318E+010.1335E+010.1367E+010.1420E+010.1496E+01
0.1605E+010.1751E+010.1930E+010.2094E+010.2159E+010.2102E+010.1994E+010.1900E+01
0.1829E+010.1764E+010.1665E+010.1492E+010.1257E+010.1025E+010.8435E+000.7103E+00
0.6122E+000.5383E+000.4815E+000.4372E+000.4021E+000.3743E+000.3521E+000.3345E+00
0.3566E+000.3431E+000.3324E+000.3240E+000.3176E+000.3130E+000.3100E+000.3083E+00
0.3078E+000.3084E+000.3100E+000.3126E+000.3160E+000.3202E+000.3252E+000.3308E+00
0.3372E+000.3442E+000.3519E+000.3602E+000.3692E+000.3788E+000.3890E+000.4000E+00
0.4116E+000.4240E+000.4371E+000.4509E+000.4656E+000.4812E+000.4978E+000.5153E+00
0.5339E+000.5537E+000.5747E+000.5971E+000.6211E+000.6467E+000.6742E+000.7038E+00
0.7356E+000.7700E+000.8074E+000.8480E+000.8924E+000.9411E+000.9948E+000.1054E+01
0.1121E+010.1195E+010.1280E+010.1376E+010.1486E+010.1615E+010.1767E+010.1949E+01
0.2171E+010.2447E+010.2799E+010.3264E+010.3900E+010.4809E+010.6138E+010.7939E+01
0.9622E+010.1000E+020.8840E+010.7024E+010.5430E+010.4300E+010.3521E+010.2964E+01
0.2548E+010.2225E+010.1965E+010.1750E+010.1566E+010.1405E+010.1259E+010.1121E+01
0.9860E+000.8469E+000.6965E+000.5358E+000.4347E+000.6178E+000.1019E+010.1356E+01
0.1531E+010.1601E+010.1611E+010.1568E+010.1493E+010.1420E+010.1363E+010.1321E+01
0.1295E+010.1281E+010.1281E+010.1292E+010.1318E+010.1361E+010.1423E+010.1512E+01
0.1634E+010.1798E+010.1998E+010.2184E+010.2267E+010.2218E+010.2112E+010.2019E+01
0.1950E+010.1889E+010.1791E+010.1614E+010.1369E+010.1124E+010.9308E+000.7880E+00
0.6821E+000.6018E+000.5395E+000.4904E+000.4512E+000.4197E+000.3941E+000.3734E+00
0.3931E+000.3769E+000.3637E+000.3529E+000.3442E+000.3374E+000.3322E+000.3285E+00
0.3261E+000.3248E+000.3246E+000.3254E+000.3270E+000.3295E+000.3328E+000.3368E+00
0.3416E+000.3470E+000.3531E+000.3598E+000.3672E+000.3753E+000.3840E+000.3934E+00
0.4035E+000.4143E+000.4258E+000.4381E+000.4512E+000.4652E+000.4800E+000.4958E+00
0.5127E+000.5307E+000.5499E+000.5704E+000.5924E+000.6160E+000.6414E+000.6687E+00
0.6982E+000.7302E+000.7649E+000.8027E+000.8442E+000.8897E+000.9400E+000.9958E+00
0.1058E+010.1128E+010.1208E+010.1298E+010.1403E+010.1524E+010.1668E+010.1840E+01
0.2050E+010.2312E+010.2646E+010.3087E+010.3692E+010.4556E+010.5822E+010.7538E+01
0.9146E+010.9519E+010.8424E+010.6704E+010.5193E+010.4121E+010.3383E+010.2856E+01
0.2463E+010.2158E+010.1914E+010.1712E+010.1541E+010.1392E+010.1258E+010.1133E+01
0.1011E+010.8867E+000.7529E+000.6064E+000.4848E+000.5680E+000.8938E+000.1199E+01
0.1365E+010.1433E+010.1447E+010.1421E+010.1371E+010.1320E+010.1281E+010.1255E+01
0.1241E+010.1238E+010.1247E+010.1269E+010.1304E+010.1356E+010.1429E+010.1530E+01
0.1667E+010.1848E+010.2069E+010.2278E+010.2379E+010.2338E+010.2235E+010.2142E+01
0.2076E+010.2017E+010.1921E+010.1740E+010.1483E+010.1225E+010.1020E+010.8670E+00
0.7531E+000.6662E+000.5983E+000.5444E+000.5010E+000.4656E+000.4367E+000.4128E+00
0.4303E+000.4114E+000.3955E+000.3823E+000.3714E+000.3624E+000.3552E+000.3494E+00
0.3451E+000.3419E+000.3399E+000.3389E+000.3388E+000.3396E+000.3412E+000.3436E+00
0.3467E+000.3506E+000.3551E+000.3603E+000.3661E+000.3727E+000.3799E+000.3877E+00
0.3963E+000.4055E+000.4155E+000.4262E+000.4377E+000.4500E+000.4632E+000.4774E+00
0.4926E+000.5088E+000.5262E+000.5449E+000.5649E+000.5865E+000.6098E+000.6349E+00
0.6621E+000.6917E+000.7239E+000.7590E+000.7976E+000.8400E+000.8870E+000.9392E+00
0.9976E+000.1063E+010.1138E+010.1223E+010.1322E+010.1436E+010.1572E+010.1735E+01
0.1933E+010.2181E+010.2498E+010.2917E+010.3491E+010.4313E+010.5517E+010.7152E+01
0.8688E+010.9054E+010.8024E+010.6398E+010.4966E+010.3950E+010.3251E+010.2753E+01
0.2382E+010.2095E+010.1866E+010.1678E+010.1519E+010.1382E+010.1259E+010.1146E+01
0.1038E+010.9286E+000.8117E+000.6820E+000.5573E+000.5612E+000.7973E+000.1061E+01
0.1213E+010.1275E+010.1290E+010.1277E+010.1250E+010.1223E+010.1202E+010.1191E+01
0.1189E+010.1197E+010.1216E+010.1247E+010.1292E+010.1354E+010.1438E+010.1550E+01
0.1702E+010.1901E+010.2143E+010.2376E+010.2494E+010.2462E+010.2361E+010.2270E+01
0.2206E+010.2150E+010.2055E+010.1868E+010.1600E+010.1328E+010.1110E+010.9473E+00
0.8253E+000.7316E+000.6581E+000.5993E+000.5515E+000.5123E+000.4799E+000.4529E+00
0.4681E+000.4465E+000.4281E+000.4125E+000.3992E+000.3881E+000.3788E+000.3710E+00
0.3647E+000.3597E+000.3559E+000.3531E+000.3513E+000.3504E+000.3503E+000.3511E+00
0.3526E+000.3549E+000.3579E+000.3615E+000.3658E+000.3708E+000.3765E+000.3828E+00
0.3898E+000.3975E+000.4060E+000.4151E+000.4251E+000.4358E+000.4474E+000.4599E+00
0.4734E+000.4879E+000.5035E+000.5203E+000.5385E+000.5581E+000.5794E+000.6024E+00
0.6273E+000.6545E+000.6842E+000.7168E+000.7525E+000.7919E+000.8357E+000.8844E+00
0.9390E+000.1001E+010.1070E+010.1150E+010.1243E+010.1351E+010.1479E+010.1633E+01
0.1820E+010.2055E+010.2355E+010.2752E+010.3297E+010.4077E+010.5222E+010.6779E+01
0.8247E+010.8606E+010.7639E+010.6103E+010.4748E+010.3787E+010.3126E+010.2655E+01
0.2306E+010.2036E+010.1822E+010.1647E+010.1500E+010.1375E+010.1264E+010.1163E+01
0.1067E+010.9726E+000.8727E+000.7616E+000.6453E+000.5989E+000.7401E+000.9484E+00
0.1078E+010.1129E+010.1140E+010.1138E+010.1133E+010.1128E+010.1125E+010.1128E+01
0.1139E+010.1158E+010.1187E+010.1227E+010.1282E+010.1353E+010.1448E+010.1573E+01
0.1739E+010.1956E+010.2221E+010.2478E+010.2615E+010.2591E+010.2493E+010.2402E+01
0.2340E+010.2287E+010.2192E+010.2000E+010.1720E+010.1434E+010.1202E+010.1029E+01
0.8988E+000.7982E+000.7188E+000.6550E+000.6029E+000.5598E+000.5239E+000.4937E+00
0.5067E+000.4823E+000.4613E+000.4433E+000.4278E+000.4145E+000.4030E+000.3933E+00
0.3851E+000.3782E+000.3725E+000.3680E+000.3645E+000.3619E+000.3602E+000.3594E+00
0.3593E+000.3600E+000.3614E+000.3635E+000.3663E+000.3698E+000.3739E+000.3787E+00
0.3842E+000.3904E+000.3973E+000.4049E+000.4133E+000.4224E+000.4324E+000.4433E+00
0.4551E+000.4679E+000.4817E+000.4968E+000.5131E+000.5308E+000.5500E+000.5709E+00
0.5937E+000.6186E+000.6458E+000.6758E+000.7088E+000.7453E+000.7859E+000.8312E+00
0.8820E+000.9395E+000.1005E+010.1080E+010.1167E+010.1268E+010.1389E+010.1533E+01
0.1711E+010.1932E+010.2216E+010.2592E+010.3109E+010.3849E+010.4937E+010.6418E+01
0.7820E+010.8174E+010.7268E+010.5819E+010.4538E+010.3630E+010.3006E+010.2562E+01
0.2234E+010.1981E+010.1781E+010.1619E+010.1484E+010.1370E+010.1270E+010.1181E+01
0.1098E+010.1019E+010.9359E+000.8445E+000.7437E+000.6741E+000.7312E+000.8715E+00
0.9677E+000.9999E+000.1000E+010.1003E+010.1018E+010.1034E+010.1050E+010.1068E+01
0.1091E+010.1121E+010.1160E+010.1210E+010.1273E+010.1355E+010.1461E+010.1599E+01
0.1780E+010.2015E+010.2303E+010.2584E+010.2739E+010.2725E+010.2628E+010.2539E+01
0.2478E+010.2428E+010.2333E+010.2135E+010.1843E+010.1541E+010.1297E+010.1113E+01
0.9738E+000.8661E+000.7808E+000.7119E+000.6553E+000.6082E+000.5687E+000.5352E+00
0.5462E+000.5190E+000.4954E+000.4749E+000.4571E+000.4416E+000.4280E+000.4163E+00
0.4062E+000.3974E+000.3900E+000.3837E+000.3784E+000.3742E+000.3708E+000.3684E+00
0.3667E+000.3658E+000.3657E+000.3663E+000.3675E+000.3695E+000.3721E+000.3754E+00
0.3794E+000.3841E+000.3894E+000.3955E+000.4023E+000.4099E+000.4183E+000.4275E+00
0.4376E+000.4487E+000.4609E+000.4741E+000.4886E+000.5044E+000.5216E+000.5405E+00
0.5611E+000.5837E+000.6086E+000.6360E+000.6663E+000.6999E+000.7374E+000.7794E+00
0.8266E+000.8801E+000.9410E+000.1011E+010.1092E+010.1188E+010.1301E+010.1437E+01
0.1604E+010.1813E+010.2081E+010.2437E+010.2926E+010.3628E+010.4660E+010.6069E+01
0.7408E+010.7756E+010.6910E+010.5545E+010.4337E+010.3480E+010.2892E+010.2474E+01
0.2166E+010.1930E+010.1744E+010.1594E+010.1471E+010.1367E+010.1279E+010.1201E+01
0.1132E+010.1066E+010.1001E+010.9303E+000.8496E+000.7764E+000.7724E+000.8393E+00
0.8906E+000.8940E+000.8737E+000.8745E+000.9061E+000.9433E+000.9767E+000.1009E+01
0.1045E+010.1085E+010.1134E+010.1194E+010.1267E+010.1360E+010.1476E+010.1627E+01
0.1823E+010.2078E+010.2388E+010.2694E+010.2869E+010.2863E+010.2769E+010.2680E+01
0.2622E+010.2573E+010.2478E+010.2275E+010.1969E+010.1652E+010.1393E+010.1198E+01
0.1050E+010.9355E+000.8441E+000.7699E+000.7087E+000.6576E+000.6145E+000.5777E+00
0.5865E+000.5565E+000.5303E+000.5073E+000.4872E+000.4695E+000.4538E+000.4401E+00
0.4280E+000.4174E+000.4081E+000.4001E+000.3931E+000.3872E+000.3822E+000.3781E+00
0.3749E+000.3725E+000.3708E+000.3698E+000.3695E+000.3700E+000.3711E+000.3729E+00
0.3754E+000.3785E+000.3823E+000.3869E+000.3921E+000.3982E+000.4049E+000.4126E+00
0.4211E+000.4305E+000.4409E+000.4524E+000.4650E+000.4789E+000.4942E+000.5110E+00
0.5295E+000.5499E+000.5724E+000.5973E+000.6250E+000.6558E+000.6903E+000.7289E+00
0.7726E+000.8221E+000.8788E+000.9441E+000.1020E+010.1109E+010.1215E+010.1343E+01
0.1500E+010.1697E+010.1950E+010.2285E+010.2748E+010.3413E+010.4392E+010.5730E+01
0.7008E+010.7352E+010.6564E+010.5281E+010.4143E+010.3336E+010.2782E+010.2390E+01
0.2101E+010.1881E+010.1709E+010.1572E+010.1460E+010.1367E+010.1290E+010.1224E+01
0.1167E+010.1116E+010.1068E+010.1019E+010.9610E+000.8973E+000.8568E+000.8566E+00
0.8551E+000.8198E+000.7668E+000.7541E+000.7975E+000.8543E+000.9053E+000.9524E+00
0.1000E+010.1052E+010.1111E+010.1180E+010.1264E+010.1366E+010.1494E+010.1658E+01
0.1870E+010.2144E+010.2478E+010.2809E+010.3003E+010.3007E+010.2915E+010.2827E+01
0.2770E+010.2723E+010.2629E+010.2418E+010.2098E+010.1765E+010.1492E+010.1286E+01
0.1129E+010.1006E+010.9088E+000.8292E+000.7634E+000.7082E+000.6613E+000.6212E+00
0.6280E+000.5950E+000.5661E+000.5407E+000.5182E+000.4982E+000.4805E+000.4647E+00
0.4506E+000.4382E+000.4271E+000.4172E+000.4086E+000.4010E+000.3944E+000.3887E+00
0.3839E+000.3798E+000.3766E+000.3741E+000.3723E+000.3713E+000.3709E+000.3711E+00
0.3721E+000.3737E+000.3760E+000.3790E+000.3828E+000.3872E+000.3924E+000.3984E+00
0.4053E+000.4130E+000.4217E+000.4314E+000.4422E+000.4543E+000.4676E+000.4824E+00
0.4988E+000.5170E+000.5372E+000.5597E+000.5847E+000.6128E+000.6442E+000.6797E+00
0.7199E+000.7656E+000.8180E+000.8786E+000.9492E+000.1032E+010.1131E+010.1251E+01
0.1398E+010.1583E+010.1821E+010.2138E+010.2575E+010.3203E+010.4131E+010.5401E+01
0.6619E+010.6959E+010.6228E+010.5025E+010.3956E+010.3197E+010.2677E+010.2310E+01
0.2040E+010.1836E+010.1678E+010.1552E+010.1451E+010.1369E+010.1303E+010.1248E+01
0.1204E+010.1168E+010.1138E+010.1109E+010.1077E+010.1031E+010.9736E+000.9208E+00
0.8660E+000.7856E+000.6877E+000.6455E+000.6930E+000.7675E+000.8357E+000.8973E+00
0.9574E+000.1020E+010.1089E+010.1168E+010.1262E+010.1375E+010.1514E+010.1691E+01
0.1919E+010.2213E+010.2572E+010.2929E+010.3143E+010.3156E+010.3066E+010.2979E+01
0.2923E+010.2879E+010.2784E+010.2566E+010.2232E+010.1882E+010.1594E+010.1376E+01
0.1209E+010.1079E+010.9751E+000.8901E+000.8194E+000.7599E+000.7093E+000.6657E+00
0.6705E+000.6346E+000.6030E+000.5750E+000.5501E+000.5279E+000.5080E+000.4901E+00
0.4741E+000.4598E+000.4468E+000.4353E+000.4249E+000.4156E+000.4073E+000.4000E+00
0.3936E+000.3880E+000.3832E+000.3792E+000.3759E+000.3733E+000.3714E+000.3702E+00
0.3696E+000.3697E+000.3705E+000.3720E+000.3741E+000.3770E+000.3807E+000.3850E+00
0.3903E+000.3963E+000.4033E+000.4113E+000.4203E+000.4304E+000.4419E+000.4546E+00
0.4690E+000.4850E+000.5029E+000.5229E+000.5454E+000.5707E+000.5993E+000.6316E+00
0.6683E+000.7103E+000.7586E+000.8145E+000.8799E+000.9572E+000.1049E+010.1161E+01
0.1299E+010.1472E+010.1696E+010.1994E+010.2406E+010.2999E+010.3876E+010.5081E+01
0.6242E+010.6578E+010.5903E+010.4778E+010.3775E+010.3063E+010.2576E+010.2233E+01
0.1983E+010.1794E+010.1648E+010.1535E+010.1445E+010.1374E+010.1318E+010.1275E+01
0.1243E+010.1222E+010.1209E+010.1203E+010.1196E+010.1173E+010.1113E+010.1023E+01
0.9217E+000.7964E+000.6459E+000.5547E+000.5937E+000.6832E+000.7679E+000.8439E+00
0.9164E+000.9902E+000.1070E+010.1159E+010.1262E+010.1386E+010.1537E+010.1728E+01
0.1972E+010.2287E+010.2670E+010.3054E+010.3289E+010.3311E+010.3223E+010.3136E+01
0.3082E+010.3040E+010.2944E+010.2719E+010.2370E+010.2002E+010.1699E+010.1469E+01
0.1292E+010.1154E+010.1043E+010.9525E+000.8769E+000.8131E+000.7586E+000.7115E+00
0.7143E+000.6754E+000.6410E+000.6104E+000.5831E+000.5585E+000.5365E+000.5166E+00
0.4986E+000.4823E+000.4675E+000.4541E+000.4420E+000.4310E+000.4211E+000.4122E+00
0.4042E+000.3970E+000.3907E+000.3851E+000.3803E+000.3761E+000.3727E+000.3700E+00
0.3679E+000.3665E+000.3658E+000.3657E+000.3663E+000.3676E+000.3697E+000.3724E+00
0.3760E+000.3804E+000.3857E+000.3919E+000.3991E+000.4074E+000.4169E+000.4277E+00
0.4399E+000.4538E+000.4694E+000.4871E+000.5070E+000.5296E+000.5553E+000.5845E+00
0.6178E+000.6561E+000.7003E+000.7518E+000.8121E+000.8836E+000.9692E+000.1073E+01
0.1202E+010.1364E+010.1574E+010.1853E+010.2240E+010.2800E+010.3628E+010.4768E+01
0.5874E+010.6207E+010.5586E+010.4537E+010.3600E+010.2934E+010.2480E+010.2160E+01
0.1928E+010.1754E+010.1622E+010.1520E+010.1441E+010.1380E+010.1335E+010.1304E+01
0.1285E+010.1277E+010.1282E+010.1298E+010.1319E+010.1322E+010.1269E+010.1155E+01
0.1015E+010.8504E+000.6483E+000.4908E+000.5021E+000.6015E+000.7020E+000.7923E+00
0.8772E+000.9622E+000.1052E+010.1151E+010.1265E+010.1400E+010.1563E+010.1768E+01
0.2029E+010.2364E+010.2773E+010.3184E+010.3441E+010.3472E+010.3387E+010.3300E+01
0.3248E+010.3207E+010.3111E+010.2877E+010.2512E+010.2126E+010.1807E+010.1564E+01
0.1377E+010.1231E+010.1113E+010.1017E+010.9361E+000.8678E+000.8093E+000.7586E+00
0.7595E+000.7176E+000.6803E+000.6470E+000.6172E+000.5903E+000.5660E+000.5440E+00
0.5239E+000.5057E+000.4891E+000.4739E+000.4600E+000.4473E+000.4357E+000.4252E+00
0.4156E+000.4068E+000.3989E+000.3918E+000.3854E+000.3798E+000.3748E+000.3706E+00
0.3670E+000.3641E+000.3618E+000.3602E+000.3593E+000.3590E+000.3594E+000.3606E+00
0.3625E+000.3653E+000.3688E+000.3733E+000.3787E+000.3851E+000.3927E+000.4015E+00
0.4117E+000.4233E+000.4367E+000.4520E+000.4694E+000.4894E+000.5121E+000.5382E+00
0.5683E+000.6029E+000.6431E+000.6901E+000.7455E+000.8113E+000.8904E+000.9868E+00
0.1106E+010.1257E+010.1453E+010.1715E+010.2079E+010.2604E+010.3385E+010.4463E+01
0.5515E+010.5846E+010.5279E+010.4304E+010.3430E+010.2810E+010.2387E+010.2091E+01
0.1877E+010.1718E+010.1598E+010.1507E+010.1439E+010.1389E+010.1355E+010.1334E+01
0.1328E+010.1335E+010.1358E+010.1396E+010.1445E+010.1477E+010.1436E+010.1307E+01
0.1137E+010.9403E+000.6943E+000.4644E+000.4221E+000.5231E+000.6380E+000.7424E+00
0.8398E+000.9361E+000.1037E+010.1146E+010.1270E+010.1416E+010.1592E+010.1811E+01
0.2089E+010.2446E+010.2882E+010.3321E+010.3599E+010.3640E+010.3557E+010.3470E+01
0.3419E+010.3381E+010.3284E+010.3042E+010.2660E+010.2254E+010.1919E+010.1662E+01
0.1465E+010.1310E+010.1186E+010.1083E+010.9971E+000.9242E+000.8615E+000.8072E+00
0.8063E+000.7611E+000.7209E+000.6849E+000.6525E+000.6232E+000.5966E+000.5725E+00
0.5504E+000.5302E+000.5116E+000.4946E+000.4790E+000.4645E+000.4513E+000.4391E+00
0.4278E+000.4175E+000.4080E+000.3993E+000.3914E+000.3843E+000.3778E+000.3720E+00
0.3669E+000.3624E+000.3586E+000.3555E+000.3530E+000.3511E+000.3500E+000.3495E+00
0.3498E+000.3508E+000.3527E+000.3554E+000.3590E+000.3636E+000.3692E+000.3760E+00
0.3841E+000.3937E+000.4048E+000.4177E+000.4326E+000.4499E+000.4698E+000.4928E+00
0.5196E+000.5506E+000.5869E+000.6295E+000.6800E+000.7402E+000.8129E+000.9019E+00
0.1012E+010.1153E+010.1335E+010.1580E+010.1920E+010.2413E+010.3147E+010.4164E+01
0.5164E+010.5493E+010.4979E+010.4078E+010.3266E+010.2690E+010.2297E+010.2024E+01
0.1828E+010.1684E+010.1576E+010.1497E+010.1439E+010.1400E+010.1376E+010.1367E+01
0.1373E+010.1395E+010.1435E+010.1496E+010.1574E+010.1636E+010.1612E+010.1473E+01
0.1281E+010.1057E+010.7762E+000.4814E+000.3607E+000.4491E+000.5762E+000.6943E+00
0.8042E+000.9120E+000.1023E+010.1143E+010.1278E+010.1435E+010.1624E+010.1857E+01
0.2154E+010.2533E+010.2996E+010.3464E+010.3765E+010.3816E+010.3734E+010.3648E+01
0.3598E+010.3562E+010.3463E+010.3212E+010.2813E+010.2388E+010.2035E+010.1764E+01
0.1556E+010.1393E+010.1260E+010.1151E+010.1060E+010.9824E+000.9155E+000.8573E+00
0.8547E+000.8062E+000.7630E+000.7242E+000.6892E+000.6574E+000.6285E+000.6022E+00
0.5780E+000.5557E+000.5353E+000.5164E+000.4989E+000.4828E+000.4678E+000.4539E+00
0.4410E+000.4291E+000.4180E+000.4078E+000.3983E+000.3896E+000.3816E+000.3743E+00
0.3676E+000.3616E+000.3563E+000.3516E+000.3475E+000.3441E+000.3413E+000.3392E+00
0.3379E+000.3372E+000.3373E+000.3382E+000.3400E+000.3427E+000.3464E+000.3513E+00
0.3573E+000.3647E+000.3735E+000.3840E+000.3965E+000.4111E+000.4282E+000.4482E+00
0.4716E+000.4991E+000.5315E+000.5698E+000.6154E+000.6702E+000.7366E+000.8182E+00
0.9201E+000.1050E+010.1219E+010.1446E+010.1764E+010.2225E+010.2914E+010.3872E+01
0.4822E+010.5149E+010.4686E+010.3857E+010.3106E+010.2573E+010.2212E+010.1961E+01
0.1782E+010.1652E+010.1557E+010.1489E+010.1442E+010.1413E+010.1400E+010.1402E+01
0.1421E+010.1457E+010.1515E+010.1599E+010.1705E+010.1799E+010.1795E+010.1652E+01
0.1439E+010.1194E+010.8844E+000.5373E+000.3277E+000.3811E+000.5167E+000.6481E+00
0.7706E+000.8898E+000.1012E+010.1143E+010.1289E+010.1458E+010.1659E+010.1908E+01
0.2223E+010.2625E+010.3116E+010.3615E+010.3938E+010.3999E+010.3919E+010.3833E+01
0.3785E+010.3751E+010.3651E+010.3390E+010.2973E+010.2526E+010.2155E+010.1870E+01
0.1651E+010.1478E+010.1338E+010.1222E+010.1125E+010.1043E+010.9715E+000.9093E+00
0.9049E+000.8531E+000.8068E+000.7651E+000.7273E+000.6931E+000.6618E+000.6331E+00
0.6068E+000.5825E+000.5601E+000.5393E+000.5200E+000.5020E+000.4853E+000.4697E+00
0.4552E+000.4416E+000.4289E+000.4171E+000.4061E+000.3958E+000.3862E+000.3774E+00
0.3692E+000.3617E+000.3548E+000.3485E+000.3428E+000.3378E+000.3334E+000.3297E+00
0.3267E+000.3243E+000.3227E+000.3218E+000.3218E+000.3226E+000.3244E+000.3272E+00
0.3311E+000.3363E+000.3429E+000.3511E+000.3610E+000.3730E+000.3872E+000.4042E+00
0.4244E+000.4484E+000.4769E+000.5109E+000.5517E+000.6011E+000.6613E+000.7357E+00
0.8290E+000.9483E+000.1104E+010.1315E+010.1610E+010.2040E+010.2684E+010.3585E+01
0.4486E+010.4812E+010.4401E+010.3642E+010.2951E+010.2461E+010.2129E+010.1900E+01
0.1739E+010.1623E+010.1541E+010.1484E+010.1447E+010.1428E+010.1425E+010.1439E+01
0.1470E+010.1522E+010.1598E+010.1705E+010.1840E+010.1967E+010.1984E+010.1838E+01
0.1610E+010.1345E+010.1011E+010.6217E+000.3310E+000.3223E+000.4600E+000.6039E+00
0.7389E+000.8699E+000.1003E+010.1145E+010.1302E+010.1483E+010.1698E+010.1963E+01
0.2297E+010.2723E+010.3243E+010.3773E+010.4120E+010.4191E+010.4113E+010.4027E+01
0.3981E+010.3948E+010.3847E+010.3576E+010.3139E+010.2670E+010.2280E+010.1980E+01
0.1749E+010.1566E+010.1418E+010.1296E+010.1193E+010.1105E+010.1030E+010.9633E+00
0.9572E+000.9019E+000.8523E+000.8076E+000.7671E+000.7302E+000.6965E+000.6655E+00
0.6370E+000.6106E+000.5861E+000.5633E+000.5422E+000.5224E+000.5039E+000.4866E+00
0.4703E+000.4551E+000.4408E+000.4274E+000.4148E+000.4029E+000.3918E+000.3814E+00
0.3717E+000.3626E+000.3541E+000.3462E+000.3390E+000.3324E+000.3264E+000.3210E+00
0.3163E+000.3122E+000.3088E+000.3062E+000.3043E+000.3032E+000.3030E+000.3038E+00
0.3057E+000.3087E+000.3130E+000.3187E+000.3261E+000.3354E+000.3469E+000.3609E+00
0.3778E+000.3982E+000.4229E+000.4527E+000.4887E+000.5327E+000.5868E+000.6541E+00
0.7390E+000.8480E+000.9914E+000.1186E+010.1459E+010.1858E+010.2459E+010.3303E+01
0.4156E+010.4482E+010.4121E+010.3432E+010.2801E+010.2352E+010.2050E+010.1842E+01
0.1698E+010.1596E+010.1526E+010.1480E+010.1454E+010.1446E+010.1454E+010.1478E+01
0.1522E+010.1589E+010.1683E+010.1813E+010.1978E+010.2138E+010.2178E+010.2032E+01
0.1789E+010.1506E+010.1149E+010.7248E+000.3692E+000.2775E+000.4067E+000.5619E+00
0.7094E+000.8521E+000.9967E+000.1150E+010.1319E+010.1512E+010.1741E+010.2022E+01
0.2376E+010.2827E+010.3377E+010.3939E+010.4311E+010.4393E+010.4316E+010.4231E+01
0.4186E+010.4155E+010.4052E+010.3770E+010.3313E+010.2821E+010.2410E+010.2095E+01
0.1851E+010.1658E+010.1502E+010.1372E+010.1264E+010.1170E+010.1090E+010.1019E+01
0.1012E+010.9528E+000.8999E+000.8521E+000.8087E+000.7691E+000.7328E+000.6995E+00
0.6686E+000.6400E+000.6135E+000.5887E+000.5656E+000.5440E+000.5237E+000.5046E+00
0.4866E+000.4697E+000.4538E+000.4387E+000.4245E+000.4110E+000.3983E+000.3863E+00
0.3750E+000.3644E+000.3543E+000.3449E+000.3360E+000.3278E+000.3202E+000.3131E+00
0.3067E+000.3009E+000.2958E+000.2913E+000.2876E+000.2846E+000.2824E+000.2812E+00
0.2809E+000.2817E+000.2837E+000.2870E+000.2919E+000.2985E+000.3071E+000.3181E+00
0.3317E+000.3487E+000.3695E+000.3950E+000.4264E+000.4651E+000.5131E+000.5734E+00
0.6499E+000.7488E+000.8797E+000.1058E+010.1309E+010.1679E+010.2237E+010.3026E+01
0.3832E+010.4158E+010.3848E+010.3227E+010.2654E+010.2247E+010.1973E+010.1788E+01
0.1660E+010.1572E+010.1514E+010.1479E+010.1464E+010.1465E+010.1484E+010.1520E+01
0.1577E+010.1658E+010.1771E+010.1924E+010.2120E+010.2314E+010.2377E+010.2233E+01
0.1976E+010.1676E+010.1297E+010.8398E+000.4327E+000.2535E+000.3576E+000.5222E+00
0.6820E+000.8368E+000.9930E+000.1158E+010.1338E+010.1544E+010.1788E+010.2086E+01
0.2460E+010.2937E+010.3519E+010.4115E+010.4512E+010.4605E+010.4529E+010.4444E+01
0.4401E+010.4372E+010.4267E+010.3974E+010.3495E+010.2978E+010.2547E+010.2214E+01
0.1958E+010.1754E+010.1589E+010.1452E+010.1337E+010.1238E+010.1153E+010.1078E+01
0.1069E+010.1006E+010.9497E+000.8987E+000.8523E+000.8099E+000.7710E+000.7351E+00
0.7019E+000.6711E+000.6424E+000.6156E+000.5904E+000.5669E+000.5447E+000.5238E+00
0.5041E+000.4855E+000.4678E+000.4511E+000.4352E+000.4202E+000.4059E+000.3923E+00
0.3794E+000.3671E+000.3555E+000.3444E+000.3340E+000.3241E+000.3148E+000.3061E+00
0.2980E+000.2905E+000.2836E+000.2773E+000.2717E+000.2667E+000.2626E+000.2593E+00
0.2568E+000.2554E+000.2550E+000.2559E+000.2582E+000.2621E+000.2679E+000.2758E+00
0.2862E+000.2996E+000.3165E+000.3379E+000.3646E+000.3980E+000.4401E+000.4933E+00
0.5616E+000.6506E+000.7690E+000.9313E+000.1161E+010.1502E+010.2018E+010.2753E+01
0.3514E+010.3841E+010.3580E+010.3027E+010.2511E+010.2145E+010.1900E+010.1735E+01
0.1624E+010.1551E+010.1505E+010.1481E+010.1475E+010.1488E+010.1517E+010.1565E+01
0.1634E+010.1730E+010.1861E+010.2039E+010.2265E+010.2494E+010.2582E+010.2439E+01
0.2169E+010.1852E+010.1452E+010.9628E+000.5121E+000.2552E+000.3139E+000.4850E+00
0.6571E+000.8241E+000.9922E+000.1169E+010.1362E+010.1581E+010.1840E+010.2155E+01
0.2551E+010.3055E+010.3670E+010.4301E+010.4724E+010.4828E+010.4754E+010.4669E+01
0.4627E+010.4601E+010.4494E+010.4189E+010.3687E+010.3144E+010.2690E+010.2340E+01
0.2069E+010.1855E+010.1680E+010.1536E+010.1414E+010.1309E+010.1219E+010.1139E+01
0.1129E+010.1062E+010.1002E+010.9475E+000.8980E+000.8527E+000.8111E+000.7726E+00
0.7370E+000.7038E+000.6729E+000.6439E+000.6168E+000.5912E+000.5672E+000.5444E+00
0.5229E+000.5025E+000.4831E+000.4647E+000.4471E+000.4304E+000.4145E+000.3992E+00
0.3847E+000.3708E+000.3576E+000.3449E+000.3329E+000.3214E+000.3104E+000.3000E+00
0.2902E+000.2809E+000.2722E+000.2641E+000.2566E+000.2497E+000.2436E+000.2381E+00
0.2335E+000.2298E+000.2271E+000.2255E+000.2252E+000.2263E+000.2292E+000.2340E+00
0.2410E+000.2509E+000.2640E+000.2811E+000.3032E+000.3314E+000.3675E+000.4138E+00
0.4740E+000.5531E+000.6594E+000.8059E+000.1015E+010.1326E+010.1802E+010.2484E+01
0.3201E+010.3529E+010.3317E+010.2831E+010.2372E+010.2046E+010.1829E+010.1686E+01
0.1591E+010.1531E+010.1498E+010.1485E+010.1490E+010.1512E+010.1552E+010.1611E+01
0.1694E+010.1805E+010.1955E+010.2157E+010.2414E+010.2678E+010.2791E+010.2651E+01
0.2368E+010.2034E+010.1612E+010.1091E+010.6009E+000.2814E+000.2777E+000.4508E+00
0.6348E+000.8142E+000.9945E+000.1183E+010.1389E+010.1622E+010.1896E+010.2230E+01
0.2649E+010.3180E+010.3830E+010.4497E+010.4948E+010.5063E+010.4991E+010.4906E+01
0.4866E+010.4842E+010.4734E+010.4415E+010.3888E+010.3318E+010.2840E+010.2472E+01
0.2186E+010.1960E+010.1776E+010.1623E+010.1494E+010.1384E+010.1288E+010.1203E+01
0.1192E+010.1121E+010.1057E+010.9990E+000.9462E+000.8979E+000.8534E+000.8122E+00
0.7740E+000.7384E+000.7052E+000.6740E+000.6448E+000.6172E+000.5911E+000.5664E+00
0.5430E+000.5208E+000.4996E+000.4795E+000.4602E+000.4418E+000.4242E+000.4073E+00
0.3912E+000.3756E+000.3608E+000.3465E+000.3328E+000.3196E+000.3070E+000.2949E+00
0.2834E+000.2723E+000.2618E+000.2519E+000.2425E+000.2337E+000.2255E+000.2179E+00
0.2111E+000.2051E+000.2000E+000.1959E+000.1929E+000.1912E+000.1910E+000.1927E+00
0.1964E+000.2026E+000.2118E+000.2247E+000.2420E+000.2650E+000.2952E+000.3348E+00
0.3869E+000.4563E+000.5505E+000.6816E+000.8703E+000.1153E+010.1588E+010.2218E+01
0.2893E+010.3222E+010.3059E+010.2639E+010.2236E+010.1950E+010.1761E+010.1639E+01
0.1561E+010.1515E+010.1493E+010.1491E+010.1507E+010.1539E+010.1590E+010.1661E+01
0.1757E+010.1884E+010.2053E+010.2278E+010.2567E+010.2867E+010.3006E+010.2868E+01
0.2572E+010.2221E+010.1776E+010.1224E+010.6954E+000.3256E+000.2512E+000.4198E+00
0.6153E+000.8074E+000.1000E+010.1202E+010.1421E+010.1668E+010.1959E+010.2312E+01
0.2754E+010.3315E+010.4001E+010.4706E+010.5186E+010.5313E+010.5242E+010.5158E+01
0.5119E+010.5098E+010.4987E+010.4655E+010.4102E+010.3502E+010.2999E+010.2611E+01
0.2310E+010.2071E+010.1877E+010.1716E+010.1579E+010.1462E+010.1360E+010.1271E+01
0.1258E+010.1183E+010.1115E+010.1053E+010.9971E+000.9456E+000.8981E+000.8541E+00
0.8133E+000.7752E+000.7395E+000.7060E+000.6745E+000.6448E+000.6167E+000.5901E+00
0.5647E+000.5406E+000.5176E+000.4957E+000.4746E+000.4545E+000.4352E+000.4166E+00
0.3987E+000.3816E+000.3650E+000.3491E+000.3337E+000.3189E+000.3046E+000.2908E+00
0.2775E+000.2647E+000.2524E+000.2406E+000.2294E+000.2186E+000.2084E+000.1988E+00
0.1898E+000.1814E+000.1739E+000.1672E+000.1615E+000.1569E+000.1537E+000.1520E+00
0.1522E+000.1547E+000.1599E+000.1685E+000.1811E+000.1989E+000.2233E+000.2561E+00
0.3003E+000.3601E+000.4424E+000.5582E+000.7266E+000.9810E+000.1376E+010.1956E+01
0.2588E+010.2920E+010.2806E+010.2451E+010.2104E+010.1857E+010.1696E+010.1595E+01
0.1533E+010.1501E+010.1491E+010.1500E+010.1526E+010.1570E+010.1631E+010.1714E+01
0.1823E+010.1965E+010.2154E+010.2404E+010.2725E+010.3061E+010.3226E+010.3091E+01
0.2782E+010.2413E+010.1945E+010.1360E+010.7935E+000.3810E+000.2367E+000.3925E+00
0.5990E+000.8039E+000.1010E+010.1224E+010.1457E+010.1720E+010.2027E+010.2400E+01
0.2867E+010.3459E+010.4183E+010.4929E+010.5438E+010.5578E+010.5509E+010.5424E+01
0.5388E+010.5369E+010.5256E+010.4909E+010.4328E+010.3696E+010.3167E+010.2758E+01
0.2440E+010.2188E+010.1983E+010.1813E+010.1669E+010.1545E+010.1437E+010.1342E+01
0.1328E+010.1248E+010.1176E+010.1111E+010.1051E+010.9962E+000.9455E+000.8986E+00
0.8549E+000.8142E+000.7760E+000.7402E+000.7064E+000.6744E+000.6442E+000.6155E+00
0.5881E+000.5621E+000.5372E+000.5133E+000.4905E+000.4685E+000.4475E+000.4272E+00
0.4076E+000.3887E+000.3704E+000.3528E+000.3357E+000.3192E+000.3032E+000.2877E+00
0.2727E+000.2582E+000.2441E+000.2305E+000.2174E+000.2047E+000.1925E+000.1808E+00
0.1696E+000.1591E+000.1491E+000.1398E+000.1314E+000.1239E+000.1174E+000.1123E+00
0.1088E+000.1074E+000.1084E+000.1124E+000.1203E+000.1329E+000.1515E+000.1777E+00
0.2141E+000.2645E+000.3351E+000.4358E+000.5841E+000.8108E+000.1167E+010.1697E+01
0.2289E+010.2623E+010.2557E+010.2267E+010.1975E+010.1767E+010.1634E+010.1553E+01
0.1508E+010.1489E+010.1491E+010.1512E+010.1548E+010.1602E+010.1675E+010.1770E+01
0.1892E+010.2051E+010.2258E+010.2534E+010.2887E+010.3260E+010.3451E+010.3319E+01
0.2997E+010.2610E+010.2117E+010.1498E+010.8939E+000.4429E+000.2355E+000.3694E+00
0.5861E+000.8042E+000.1023E+010.1251E+010.1499E+010.1777E+010.2103E+010.2497E+01
0.2990E+010.3615E+010.4379E+010.5167E+010.5707E+010.5860E+010.5793E+010.5708E+01
0.5674E+010.5659E+010.5543E+010.5180E+010.4569E+010.3904E+010.3345E+010.2913E+01
0.2579E+010.2313E+010.2096E+010.1916E+010.1763E+010.1632E+010.1518E+010.1418E+01
0.1403E+010.1318E+010.1242E+010.1172E+010.1108E+010.1050E+010.9960E+000.9460E+00
0.8994E+000.8559E+000.8150E+000.7767E+000.7404E+000.7062E+000.6737E+000.6428E+00
0.6134E+000.5853E+000.5584E+000.5326E+000.5079E+000.4841E+000.4612E+000.4391E+00
0.4178E+000.3971E+000.3771E+000.3578E+000.3390E+000.3208E+000.3030E+000.2858E+00
0.2691E+000.2528E+000.2370E+000.2216E+000.2066E+000.1921E+000.1780E+000.1643E+00
0.1511E+000.1384E+000.1262E+000.1146E+000.1035E+000.9314E-010.8356E-010.7493E-01
0.6748E-010.6159E-010.5777E-010.5679E-010.5952E-010.6691E-010.7993E-010.9989E-01
0.1288E+000.1701E+000.2291E+000.3149E+000.4432E+000.6424E+000.9603E+000.1441E+01
0.1994E+010.2331E+010.2313E+010.2087E+010.1849E+010.1680E+010.1575E+010.1514E+01
0.1486E+010.1481E+010.1495E+010.1526E+010.1574E+010.1639E+010.1723E+010.1829E+01
0.1965E+010.2140E+010.2368E+010.2669E+010.3055E+010.3465E+010.3683E+010.3554E+01
0.3217E+010.2811E+010.2293E+010.1639E+010.9959E+000.5083E+000.2469E+000.3510E+00
0.5771E+000.8087E+000.1042E+010.1284E+010.1546E+010.1841E+010.2186E+010.2602E+01
0.3122E+010.3782E+010.4589E+010.5421E+010.5995E+010.6161E+010.6095E+010.6011E+01
0.5980E+010.5968E+010.5850E+010.5469E+010.4826E+010.4124E+010.3535E+010.3079E+01
0.2726E+010.2445E+010.2216E+010.2025E+010.1864E+010.1725E+010.1604E+010.1498E+01
0.1482E+010.1392E+010.1311E+010.1237E+010.1170E+010.1107E+010.1050E+010.9966E+00
0.9469E+000.9004E+000.8568E+000.8158E+000.7770E+000.7403E+000.7055E+000.6724E+00
0.6407E+000.6105E+000.5816E+000.5538E+000.5271E+000.5014E+000.4766E+000.4526E+00
0.4294E+000.4070E+000.3852E+000.3641E+000.3435E+000.3236E+000.3041E+000.2851E+00
0.2667E+000.2487E+000.2311E+000.2140E+000.1973E+000.1810E+000.1651E+000.1497E+00
0.1347E+000.1202E+000.1062E+000.9279E-010.7992E-010.6770E-010.5619E-010.4548E-01
0.3564E-010.2672E-010.1867E-010.1131E-010.4166E-020.4031E-020.1417E-010.2853E-01
0.4961E-010.8085E-010.1274E+000.1975E+000.3055E+000.4771E+000.7567E+000.1190E+01
0.1703E+010.2044E+010.2073E+010.1910E+010.1727E+010.1596E+010.1518E+010.1478E+01
0.1466E+010.1475E+010.1501E+010.1544E+010.1602E+010.1678E+010.1773E+010.1893E+01
0.2042E+010.2234E+010.2482E+010.2809E+010.3229E+010.3677E+010.3922E+010.3795E+01
0.3444E+010.3017E+010.2473E+010.1781E+010.1099E+010.5756E+000.2683E+000.3379E+00
0.5725E+000.8178E+000.1065E+010.1323E+010.1601E+010.1913E+010.2277E+010.2718E+01
0.3267E+010.3963E+010.4815E+010.5695E+010.6304E+010.6484E+010.6420E+010.6336E+01
0.6308E+010.6300E+010.6179E+010.5780E+010.5102E+010.4361E+010.3738E+010.3256E+01
0.2883E+010.2585E+010.2343E+010.2142E+010.1971E+010.1824E+010.1696E+010.1583E+01
0.1568E+010.1472E+010.1386E+010.1307E+010.1235E+010.1169E+010.1108E+010.1051E+01
0.9979E+000.9483E+000.9018E+000.8579E+000.8165E+000.7772E+000.7399E+000.7044E+00
0.6705E+000.6380E+000.6069E+000.5770E+000.5482E+000.5205E+000.4937E+000.4678E+00
0.4427E+000.4184E+000.3948E+000.3718E+000.3495E+000.3277E+000.3065E+000.2858E+00
0.2656E+000.2458E+000.2266E+000.2078E+000.1894E+000.1716E+000.1542E+000.1374E+00
0.1211E+000.1056E+000.9093E-010.7733E-010.6521E-010.5514E-010.4794E-010.4440E-01
0.4470E-010.4801E-010.5297E-010.5829E-010.6294E-010.6606E-010.6688E-010.6471E-01
0.5948E-010.5396E-010.6038E-010.9802E-010.1780E+000.3187E+000.5589E+000.9438E+00
0.1420E+010.1763E+010.1838E+010.1737E+010.1607E+010.1515E+010.1465E+010.1446E+01
0.1450E+010.1472E+010.1511E+010.1565E+010.1635E+010.1721E+010.1828E+010.1960E+01
0.2124E+010.2332E+010.2601E+010.2955E+010.3409E+010.3896E+010.4168E+010.4043E+01
0.3676E+010.3229E+010.2656E+010.1926E+010.1203E+010.6437E+000.2967E+000.3305E+00
0.5728E+000.8323E+000.1095E+010.1368E+010.1662E+010.1993E+010.2379E+010.2844E+01
0.3425E+010.4160E+010.5059E+010.5990E+010.6636E+010.6831E+010.6769E+010.6686E+01
0.6661E+010.6658E+010.6534E+010.6115E+010.5399E+010.4615E+010.3956E+010.3447E+01
0.3051E+010.2736E+010.2480E+010.2266E+010.2085E+010.1930E+010.1794E+010.1674E+01
0.1659E+010.1557E+010.1466E+010.1382E+010.1305E+010.1235E+010.1170E+010.1109E+01
0.1053E+010.1000E+010.9503E+000.9035E+000.8592E+000.8172E+000.7772E+000.7392E+00
0.7028E+000.6680E+000.6346E+000.6025E+000.5715E+000.5417E+000.5128E+000.4849E+00
0.4578E+000.4316E+000.4060E+000.3812E+000.3569E+000.3333E+000.3103E+000.2878E+00
0.2659E+000.2445E+000.2235E+000.2032E+000.1833E+000.1641E+000.1456E+000.1279E+00
0.1112E+000.9598E-010.8268E-010.7217E-010.6549E-010.6353E-010.6636E-010.7305E-01
0.8226E-010.9282E-010.1038E+000.1146E+000.1245E+000.1329E+000.1392E+000.1425E+00
0.1417E+000.1353E+000.1224E+000.1056E+000.1083E+000.1858E+000.3751E+000.7087E+00
0.1145E+010.1490E+010.1609E+010.1568E+010.1491E+010.1438E+010.1414E+010.1416E+01
0.1436E+010.1473E+010.1524E+010.1590E+010.1670E+010.1768E+010.1887E+010.2032E+01
0.2211E+010.2436E+010.2726E+010.3107E+010.3596E+010.4122E+010.4423E+010.4298E+01
0.3915E+010.3445E+010.2843E+010.2073E+010.1307E+010.7116E+000.3294E+000.3293E+00
0.5786E+000.8529E+000.1131E+010.1420E+010.1733E+010.2083E+010.2491E+010.2983E+01
0.3597E+010.4374E+010.5325E+010.6309E+010.6995E+010.7205E+010.7146E+010.7064E+01
0.7043E+010.7045E+010.6918E+010.6478E+010.5721E+010.4890E+010.4192E+010.3652E+01
0.3232E+010.2899E+010.2627E+010.2401E+010.2209E+010.2043E+010.1899E+010.1772E+01
0.1758E+010.1650E+010.1552E+010.1463E+010.1382E+010.1307E+010.1237E+010.1173E+01
0.1112E+010.1056E+010.1003E+010.9529E+000.9056E+000.8606E+000.8179E+000.7772E+00
0.7382E+000.7009E+000.6650E+000.6306E+000.5973E+000.5653E+000.5342E+000.5042E+00
0.4750E+000.4467E+000.4191E+000.3923E+000.3661E+000.3406E+000.3157E+000.2914E+00
0.2677E+000.2446E+000.2221E+000.2002E+000.1791E+000.1588E+000.1396E+000.1217E+00
0.1059E+000.9273E-010.8344E-010.7917E-010.8051E-010.8699E-010.9741E-010.1104E+00
0.1250E+000.1405E+000.1561E+000.1716E+000.1866E+000.2004E+000.2126E+000.2225E+00
0.2290E+000.2306E+000.2253E+000.2103E+000.1842E+000.1641E+000.2405E+000.4985E+00
0.8878E+000.1228E+010.1386E+010.1403E+010.1379E+010.1363E+010.1367E+010.1389E+01
0.1427E+010.1477E+010.1541E+010.1618E+010.1711E+010.1820E+010.1951E+010.2109E+01
0.2303E+010.2545E+010.2858E+010.3267E+010.3792E+010.4358E+010.4686E+010.4562E+01
0.4162E+010.3668E+010.3034E+010.2221E+010.1411E+010.7789E+000.3644E+000.3344E+00
0.5908E+000.8804E+000.1175E+010.1482E+010.1813E+010.2184E+010.2616E+010.3137E+01
0.3786E+010.4609E+010.5614E+010.6656E+010.7384E+010.7612E+010.7554E+010.7474E+01
0.7459E+010.7466E+010.7337E+010.6873E+010.6070E+010.5189E+010.4447E+010.3873E+01
0.3428E+010.3074E+010.2786E+010.2545E+010.2342E+010.2166E+010.2013E+010.1878E+01
0.1865E+010.1750E+010.1646E+010.1551E+010.1464E+010.1384E+010.1310E+010.1241E+01
0.1177E+010.1117E+010.1060E+010.1007E+010.9562E+000.9082E+000.8624E+000.8188E+00
0.7771E+000.7371E+000.6986E+000.6617E+000.6260E+000.5915E+000.5582E+000.5258E+00
0.4945E+000.4640E+000.4343E+000.4054E+000.3772E+000.3497E+000.3229E+000.2967E+00
0.2712E+000.2464E+000.2223E+000.1990E+000.1768E+000.1557E+000.1364E+000.1194E+00
0.1056E+000.9634E-010.9285E-010.9561E-010.1040E+000.1168E+000.1326E+000.1504E+00
0.1694E+000.1891E+000.2092E+000.2294E+000.2493E+000.2686E+000.2869E+000.3037E+00
0.3181E+000.3288E+000.3342E+000.3310E+000.3150E+000.2823E+000.2538E+000.3602E+00
0.6653E+000.9839E+000.1171E+010.1243E+010.1270E+010.1292E+010.1324E+010.1367E+01
0.1421E+010.1486E+010.1562E+010.1651E+010.1755E+010.1877E+010.2020E+010.2192E+01
0.2401E+010.2662E+010.2996E+010.3434E+010.3996E+010.4603E+010.4958E+010.4835E+01
0.4416E+010.3897E+010.3229E+010.2372E+010.1515E+010.8451E+000.4004E+000.3461E+00
0.6103E+000.9160E+000.1228E+010.1553E+010.1905E+010.2298E+010.2756E+010.3308E+01
0.3995E+010.4866E+010.5930E+010.7034E+010.7808E+010.8054E+010.8000E+010.7921E+01
0.7912E+010.7927E+010.7795E+010.7304E+010.6452E+010.5514E+010.4725E+010.4115E+01
0.3642E+010.3265E+010.2958E+010.2703E+010.2486E+010.2299E+010.2136E+010.1993E+01
0.1981E+010.1859E+010.1748E+010.1647E+010.1554E+010.1469E+010.1390E+010.1317E+01
0.1248E+010.1184E+010.1123E+010.1066E+010.1012E+010.9603E+000.9114E+000.8647E+00
0.8200E+000.7771E+000.7359E+000.6962E+000.6579E+000.6209E+000.5851E+000.5503E+00
0.5166E+000.4838E+000.4518E+000.4207E+000.3904E+000.3608E+000.3319E+000.3038E+00
0.2764E+000.2499E+000.2243E+000.1997E+000.1765E+000.1551E+000.1362E+000.1208E+00
0.1103E+000.1059E+000.1085E+000.1175E+000.1316E+000.1493E+000.1695E+000.1914E+00
0.2145E+000.2385E+000.2630E+000.2878E+000.3128E+000.3377E+000.3623E+000.3861E+00
0.4086E+000.4290E+000.4458E+000.4565E+000.4572E+000.4409E+000.4025E+000.3831E+00
0.5242E+000.7742E+000.9697E+000.1089E+010.1165E+010.1225E+010.1284E+010.1348E+01
0.1419E+010.1498E+010.1588E+010.1690E+010.1805E+010.1939E+010.2095E+010.2281E+01
0.2506E+010.2785E+010.3143E+010.3610E+010.4210E+010.4858E+010.5242E+010.5118E+01
0.4678E+010.4132E+010.3428E+010.2524E+010.1618E+010.9096E+000.4365E+000.3650E+00
0.6382E+000.9611E+000.1292E+010.1637E+010.2009E+010.2427E+010.2912E+010.3498E+01
0.4227E+010.5150E+010.6278E+010.7450E+010.8273E+010.8539E+010.8488E+010.8412E+01
0.8410E+010.8433E+010.8299E+010.7780E+010.6873E+010.5872E+010.5030E+010.4380E+01
0.3875E+010.3474E+010.3147E+010.2875E+010.2644E+010.2445E+010.2271E+010.2118E+01
0.2110E+010.1979E+010.1860E+010.1752E+010.1653E+010.1562E+010.1478E+010.1399E+01
0.1326E+010.1257E+010.1192E+010.1131E+010.1073E+010.1018E+010.9655E+000.9155E+00
0.8675E+000.8215E+000.7773E+000.7347E+000.6936E+000.6539E+000.6154E+000.5780E+00
0.5417E+000.5064E+000.4721E+000.4386E+000.4060E+000.3742E+000.3432E+000.3130E+00
0.2837E+000.2553E+000.2281E+000.2023E+000.1783E+000.1568E+000.1389E+000.1258E+00
0.1191E+000.1199E+000.1281E+000.1423E+000.1611E+000.1831E+000.2074E+000.2333E+00
0.2604E+000.2886E+000.3175E+000.3471E+000.3773E+000.4079E+000.4389E+000.4699E+00
0.5008E+000.5310E+000.5596E+000.5851E+000.6042E+000.6108E+000.5940E+000.5493E+00
0.5343E+000.6325E+000.7894E+000.9417E+000.1064E+010.1162E+010.1249E+010.1334E+01
0.1422E+010.1516E+010.1619E+010.1733E+010.1861E+010.2007E+010.2177E+010.2377E+01
0.2618E+010.2917E+010.3299E+010.3796E+010.4435E+010.5126E+010.5538E+010.5412E+01
0.4950E+010.4375E+010.3633E+010.2678E+010.1721E+010.9720E+000.4723E+000.3915E+00
0.6762E+000.1017E+010.1368E+010.1734E+010.2130E+010.2573E+010.3089E+010.3711E+01
0.4485E+010.5464E+010.6663E+010.7907E+010.8784E+010.9072E+010.9025E+010.8953E+01
0.8961E+010.8994E+010.8858E+010.8307E+010.7338E+010.6268E+010.5367E+010.4672E+01
0.4132E+010.3704E+010.3354E+010.3063E+010.2817E+010.2604E+010.2419E+010.2255E+01
|
afca8b17fa58738db679e8c36e71e06a19fcf09c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1049/CH8/EX8.16/ch8_16.sce | 0a8bc32b5aeac5543d300ee10597932f0ff58b24 | [] | 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 | 445 | sce | ch8_16.sce | clear;
clc;
L=.006;
C=1.2*10^-6;
R=100;
T=%pi/sqrt(1/(L*C)-(R/(2*L))^2);
T_off=.2*10^-3;
f=1/(2*(T+T_off)); printf("o/p freq=%.2f Hz",f);
disp("for R=40ohm");
R=40;
T=%pi/sqrt(1/(L*C)-(R/(2*L))^2);
T_off=.2*10^-3;
f=1/(2*(T+T_off)); printf("upper limit o/p freq=%.1f Hz",f);
disp("for R=140ohm");
R=140;
T=%pi/sqrt(1/(L*C)-(R/(2*L))^2);
T_off=.2*10^-3;
f=1/(2*(T+T_off)); printf("lower limit o/p freq=%.1f Hz",f);
|
3cb61bfa5ae272d82d2cdd019535e45f8edccf65 | 449d555969bfd7befe906877abab098c6e63a0e8 | /281/CH8/EX8.2/example8_2.sce | a824fe154e93752af3c5f87c5ae6fb7cdb3fb2d2 | [] | 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 | 484 | sce | example8_2.sce | disp('chapter 8 ex8.2')
disp('given')
disp('Determine required minimum slew rate for circuit designed in example 8.1')
disp('output voltage Vo=5volt')
Vo=5
disp('input rise time tri=100*10^(-6)')
tri=100*10^(-6)
disp('C1=.05*10^(-6)F and R2=10kohm')
C1=.05*10^(-6)
R2=10000
disp('output rise time tro=30%of input rise time')
tro=.30*tri
disp('seconds',tro)
disp('Smin=Vo/tro')
Smin=Vo/tro
disp('V/us',Smin)
disp('fc=1/(2*%pi*R2*C1)')
fc=1/(2*%pi*R2*C1)
disp('Hz',fc) |
9342d8c136e4de6837f9bca4366f2ef24e96950e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1388/CH8/EX8.1/8_1.sce | ff7ced0ebb2b9796702a5eef9b77cd95f1bf7659 | [] | 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 | 212 | sce | 8_1.sce | clc
//initialisation of variables
v= 299.8 //V
e= 4.802*10^-10 //ev
h= 6.624*10^-27 //ergs sec
c= 3*10^10 //cm/sec
//CALCULATIONS
E= e/v
l= h*c*10^8/(2*E)
//RESULTS
printf (' Wavelength = %.f cm',l+7)
|
dbd90f00361965ac982f01ee408eb0dfccb62454 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3516/CH15/EX15.8/ex15_8.sce | 00ece1613ab5e7e853e4b5aae529975ab588a42f | [] | 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 | 5,728 | sce | ex15_8.sce | printf("\t example 15.8 \n");
printf("\t approximate values are mentioned in the book \n");
//Dew point of Overhead
vc(1) = 6.4; // Mol/hr
vc(2) = 219.7; //Mol/hr
vc(3) = 2.3; //Mol/hr
K(1) = 2.8; //at 148°F and 40 psia
K(2) = 1.01; //at 148°F and 40 psia
K(3) = 0.34; //at 148°F and 40 psia
i=1;
while(i<4)
v(i)=vc(i)/K(i);
i=i+1;
end
printf("\n\t\tDEW POINT OF OVERHEAD");
printf("\n\t\tMol/hr\t\tK(148°F,40 psia)\tV/K\n");
printf("\t\t--------------------------------------------\n");
i=1;
while(i<4)
printf("\tC"+string(i+3) + "\t%.1f\t\t%.1f\t\t\t%.1f\n",vc(i),K(i),v(i));
i = i+1
end
bc(1)=4.1; //Mol/hr
bc(2)=49.3; //Mol/hr
bc(3)=71.9; //Mol/hr
bc(4)=52.5; //Mol/hr
bc(5)=54.7; //Mol/hr
bc(6)=82.5; //Mol/hr
bc(7)=76.6; //Mol/hr
bc(8)=22.4; //Mol/hr
tbc = 0;
i=1;
while(i<9)
tbc = tbc+bc(i);
i=i+1;
end
bK(1)=5.8; //at 330°F, 40 psia
bK(2)=3.0; //at 330°F, 40 psia
bK(3)=1.68; //at 330°F, 40 psia
bK(4)=0.98; //at 330°F, 40 psia
bK(5)=0.57; //at 330°F, 40 psia
bK(6)=0.35; //at 330°F, 40 psia
bK(7)=0.21; //at 330°F, 40 psia
bK(8)=0.13; //at 330°F, 40 psia
KL(1)=23.8;
KL(2)=148.0;
KL(3)=120.8;
KL(4)=51.4;
KL(5)=31.2;
KL(6)=28.9;
KL(7)=16.1;
KL(8)=2.9;
tk =0;
i=1;
while(i<9)
tk = tk + KL(i);
i=i+1;
end
l(1)=1700; //Lb/hr
l(2)=13900; //Lb/hr
l(3)=13030; //Lb/hr
l(4)=6260; //Lb/hr
l(5)=4240; //Lb/hr
l(6)=4330; //Lb/hr
l(7)=2640; //Lb/hr
l(8)=520; //Lb/hr
tl=0;
i=1;
while(i<9)
tl = tl+l(i);
i=i+1;
end
printf("\n\t\tBUBBLE POINTS OF BOTTOMS\n");
printf("\t\tMol/hr\t\tK(330°F,40psia)\t\tKL\t\tLb/hr\n");
printf("\t\t--------------------------------------------------------------\n");
i=1;
while(i<9)
printf("\tC"+string(i+4)+"\t%.1f\t\t%.2f\t\t\t%.1f\t\t%.0f\n",bc(i),bK(i),KL(i),l(i));
i=i+1;
end
printf("\t\t____\t\t\t\t\t____\t\t____\n");
printf("\t\t%.1f\t\t\t\t\t%.1f\t\t%.0f\n",tbc,tk,tl);
av = tl/tk;
printf("\tAverage mol. wt. %.1f\n",av);
lh(1)=48894;//Lb/hr
lh(2)=16298;//Lb/hr
lh(3)=32596;//Lb/hr
bl(1)=286;//Btu/hr
bl(2)=129;//Btu/hr
bl(3)=129;//Btu/hr
i=1;
while(i<4)
bh(i)=lh(i)*bl(i); //Btu/hr
i=i+1;
end
//Heat Balances
printf("\n\n\t\t\t\t\t\tHEAT BALANCES:");
printf("\n\t\t\t\tMol/hr\t\tMol.wt.\t\tLb/hr\t\tTemp,°F\t\tBtu/lb\t\tBtu/hr\n\t");
printf("\t\t\t----------------------------------------------------------------------------------------");
printf("\n\tHeat Balance onCondeser\n\t Heat in:\n\t Top plate vapor......");
printf("685.2\t\t71.3\t\t" + string(lh(1)) + "\t\t148\t\t" +string(bl(1)) + "\t\t" + string(bh(1)) + "\n");
printf("\t Heat out:\n\t Distillate...........");
printf("228.4\t\t71.3\t\t" + string(lh(2)) + "\t\t124\t\t" +string(bl(2)) + "\t\t" + string(bh(2)) + "\n");
printf("\t Reflux, (2-1)........");
printf("456.8\t\t71.3\t\t" + string(lh(3)) + "\t\t129\t\t" +string(bl(3)) + "\t\t" + string(bh(3)) + "\n");
printf("\t Condenser duty, by\n\t difference......... ");
printf(".....\t\t.....\t\t.....\t\t.....\t\t......\t\t7680000\n");
printf("\t\t\t\t\t\t\t\t\t\t\t\t\t\t________\n");
printf("\t\t\t\t\t\t\t\t\t\t\t\t\t\t"+string(bh(1))+"\n");
//Heat Balances on reboiler
//Assume 30° difference between reboiler and bottom plate giving bottom-plate temperature of 300°F
//Mol/hr from Eq. 15.47
rl(1)=78177;//Lb/hr
rl(2)=22700;//Lb/hr
rl(3)=55477;//Lb/hr
rb(1)=234;//Btu/lb
rb(2)=369;//Btu/lb
rb(3)=256;//Btu/lb
i=1;
while(i<4)
rr(i)=rl(i)*rb(i);//Btu/hr
i=i+1;
end
tt = rr(1)+4280000;// Btu/hr
printf("\t\t\t\t\t\tHEAT BALANCES on reboiler:");
printf("\n\tHeat in:\n\t Trapout...............");
printf("619.7\t\t126.6\t\t"+string(rl(1))+"\t\t300\t\t"+string(rb(1))+"\t\t%.2e\n",rr(1));
printf("\t Reboiler duty........");
printf(" .....\t\t.....\t\t......\t\t...\t\t...\t\t4280000\n");
printf("\t\t\t\t\t\t\t\t\t\t\t\t\t\t________\n");
printf("\t\t\t\t\t\t\t\t\t\t\t\t\t\t%.3e",tt);
printf("\n\tHeat out:\n\t Reboiler vapor........");
printf("205.7\t\t110.3\t\t"+string(rl(2))+"\t\t330\t\t"+string(rb(2))+"\t\t%.2e\n",rr(2));
printf("\t Reboiler vapor........");
printf("414.0\t\t134.0\t\t"+string(rl(3))+"\t\t330\t\t"+string(rb(3))+"\t\t%.2e\n",rr(3));
printf("\t\t\t\t\t\t\t\t\t\t\t\t\t\t________\n");
printf("\t\t\t\t\t\t\t\t\t\t\t\t\t\t%.3e",rr(2)+rr(3));
//y*
pc(1)=0.056;
pc(2)=0.350;
pc(3)=0.285;
pc(4)=0.122;
pc(5)=0.074;
pc(6)=0.068;
pc(7)=0.038;
pc(8)=0.007;
//K(300°F,40psia)
pK(1)=4.5;
pK(2)=2.25;
pK(3)=1.20;
pK(4)=0.66;
pK(5)=0.38;
pK(6)=0.22;
pK(7)=0.13;
pK(8)=0.07;
printf("\n\n\t\tCALCULATION OF BOTTOM PLATE TEMPERATURE\n");
printf("\t\ty*\t\t\tReboiler vapor\t\t\t\tK(300°F,40psia)\tMol*K\n\t\t\t\tV = y*205.7 +\tBottoms\t=\tTrapout\n");
printf("\t\t----------------------------------------------------------------------------------------\n");
i=1;
pcs=0;
pc2=0;
bcs=0;
tcs=0;
gg=0;
while(i<9)
temp = pc(i)*205.7;
temp2 = temp + bc(i);
printf("\tC"+ string(i+4)+ "\t" +string(pc(i))+ "\t\t%.1f\t\t" + string(bc(i))+"\t\t%.1f\t\t"+string(pK(i))+"\t\t%.2f\n",temp,temp2,temp2*pK(i));
pcs=pcs+pc(i);
pc2=pc2+temp;
bcs=bcs+bc(i);
tcs=tcs+temp2;
gg=gg+(temp2*pK(i));
i=i+1;
end
printf("\t\t----------------------------------------------------------------------------------------\n");
printf("\t\t%.3f\t\t%.1f\t\t%.1f\t\t%.1f\t\t\t\t%.1f\n",pcs,pc2,bcs,tcs,gg);
printf("\n\tReboiler requirements are\n");
printf("\t\tVaporization\t\t\t22700 lb/hr\n\t\tTotal liquor to reboiler\t78177 lb/hr\n\t\tHeat load\t\t\t4280000 Btu/hr\n\t\tTemperature range\t\t300-330°F\n\t\tOperating pressure\t\t40psia")
//end
|
a8c4e632a073f8ad73e475214643b602b50d57db | 449d555969bfd7befe906877abab098c6e63a0e8 | /70/CH3/EX3.4.3/3_4_3.sci | 4379185e2e88c85b1bc755fd26549f97eb36dd20 | [] | 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 | 402 | sci | 3_4_3.sci | //page 175
clear;
close;
clc;
disp('If we project b=(x,y,z) onto the x-y plane then its projection is p=(x,y,0),and is the sum of projection onto x- any y-axes.')
b=rand(3,1);
q1=[1;0;0];
disp(q1,'q1=');
q2=[0;1;0];
disp(q2,'q2=');
P=q1*q1'+q2*q2';
disp(P,'Overall projection matrix,P=');
disp('and,P[x;y;z]=[x;y;0]')
disp('Projection onto a plane=sum of projections onto orthonormal q1 and q2.')
//end |
5d4ec0a654f46f8ea93b4241b149e6c5c946dbb3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH17/EX17.9/example9_sce.sce | 7373ef30484dd60dbf1ea22e39d63f1ad4137d99 | [] | 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 | 126 | sce | example9_sce.sce | //chapter 17
//example 17.9
//page 736
printf("\n")
printf("given")
f1=300;f2=30*10^3;
fo=sqrt(f1*f2)
BW=f2-f1
Q=fo/BW |
95bc7b38d12d7674fb17019c2fa0d66525c1d1b3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1853/CH4/EX4.25/Ex4_25.sce | 91678121093fa22ea54a1953587a80c3ed928672 | [] | 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 | 190 | sce | Ex4_25.sce |
//determine the inductance of the coil
R=6
V=250;//volts
I=1.5;//amps
Z=V/I;//impedance
f=60;//hetrz
X=sqrt(Z^2-R^2)
L=X/(2*%pi*f)
disp('inductance of coil='+string(L)+ 'henry')
|
ab20b257ec92855b9b3ffb5d7374fa92a8220d13 | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH11/EX11.12.a/data11_12.sci | f82bc9c0b2c84629fd126aa202bf45f4cad18832 | [] | 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 | 514 | sci | data11_12.sci |
//(Friction Clutches) Example 11.12
//Power transmitting capacity of the centrifugal clutch kW
kW = 20
//Number of revolutions of the clutch per minute n2 (rpm)
n2 = 750
//Number of revolutions of the clutch per minute
//at the time of engagment n1 (rpm)
n1 = 500
//Inner radius of the drum rd (mm)
rd = 165
//Radius of the centre of gravity of the shoes rg (mm)
rg = 140
//Coefficient of friction mu
mu = 0.3
//Permissible pressure on friction lining Pa (MPa)
Pa = 0.1
//Number of shoes z
z = 4 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.