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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7af5101ee46c8d517fddbd9b1404731f20eefc58 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.3.1/Unix-Windows/scilab-2.3/macros/auto/unobs.sci | a0b6b6a8636772ba17f50f55dedb10dda795e0a1 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | 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 | 263 | sci | unobs.sci | function [dim,x]=unobs(A,C,tol)
// n first columns of x span the unobservable
// subspace of (A,C):
// dim
// [*,*]
// X'*A*X = [0,*]
//
// C*X = [0,*]
[p,p]=size(A);tol=1.d-10;
[n,w]=contr(A',C',tol);
x=[w(:,n+1:p),w(:,1:n)];
dim=p-n;
|
4d9b4c11a12fa764587779236dc6fdae531bdd04 | 1d307d44b58dfb9d6c8079d97262e5286bdb2a3d | /filter_fixed_p_simul.sce | b86807c0746a0fe9f6ef1531fd46ea0e5a77d4e3 | [] | no_license | bernau84/scilab_sandbox | 0d89a1ea8236343255d0d6a255db67fa51f7aca9 | e3e7fc38fcb9c05788c6d3a39ea9842f34f9589b | refs/heads/master | 2016-09-06T16:52:54.963432 | 2014-03-05T15:48:43 | 2014-03-05T15:50:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 558 | sce | filter_fixed_p_simul.sce |
figure;
stacksize('max');
coe = read('cheby80_fir_4kBP_160FS_16b.txt', 80, 1);
//coe = read('fir10D_shifted_64T_16bprec', 64, 1);
subplot(5,1,1); plot(coe);
x = wavread('chirp_20_8000_fs16kHz.wav');
f_x = (x + 1.0) * (2^11); //offset a prevod na 12b presnost
subplot(5,1,3); plot(f_x);
[hm, fr] = frmag(coe, 256);
subplot(5,1,2);plot(fr*160000, hm);
f_y = filter(coe, [1], f_x);
//subplot(5,1,4); plot(f_y);
//f_n = detrend(f_y, "c") ./ (2^17) + (2^11);
f_n = (f_y) ./ (2^17) + (2^11);
subplot(5,1,4); plot(f_n);
subplot(5,1,5); plot(f_n(1:20:length(f_n))); |
418e5b96d13d20b806cdc2308f7f806d70bbc360 | 3797f4ae070f4a8e41c7db3b7f424f98ca8e5459 | /Oracle_D.sce | 7899fbc9d467986633cb5de8fcf81c2a2311b14f | [] | no_license | bastiendechamps/OptiHydro | dc59dca84fb4c35e1c4ee42e21aae6d87ba0fe62 | 02bb24fb5117464d35731e9795be0375b657f1a2 | refs/heads/master | 2021-09-13T11:51:49.173927 | 2018-04-29T13:34:49 | 2018-04-29T13:34:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,660 | sce | Oracle_D.sce | // Premier oracle (fonction + gradient)
function [F,G,ind] = OracleDG(lmb, ind)
u = (-Ar'*pr-Ad'*lmb)./r;
qsharp = sign(u) .* sqrt(abs(u));
if ind == 2 then
F = -((1/3)*qsharp'*(r.*qsharp.*abs(qsharp)) + pr'*(Ar*qsharp) + lmb'*(Ad*qsharp-fd));
G = zeros(md,1);
elseif ind == 3 then
F = 0;
G = -(Ad*qsharp-fd);
else
F = -((1/3)*qsharp'*(r.*qsharp.*abs(qsharp)) + pr'*(Ar*qsharp) + lmb'*(Ad*qsharp-fd));
G = -(Ad*qsharp-fd);
end
endfunction
// Second oracle (fonction + gradient + hessienne)
function [F,G,H,ind] = OracleDH(lmb, ind)
u = (-Ar'*pr-Ad'*lmb)./r;
qsharp = sign(u) .* sqrt(abs(u));
if ind == 2 then
F = -(1./3.*qsharp'*(r.*qsharp.*abs(qsharp)) + pr'*(Ar*qsharp) + lmb'*(Ad*qsharp-fd));
G = zeros(md,1);
H = zeros(md,md);
elseif ind == 3 then
F = 0;
G = -(Ad*qsharp-fd);
H = zeros(md,md);
elseif ind == 4 then
F = -(1./3.*qsharp'*(r.*qsharp.*abs(qsharp)) + pr'*(Ar*qsharp) + lmb'*(Ad*qsharp-fd));
G = -(Ad*qsharp-fd);
H = zeros(md,md);
elseif ind == 5 then
F = 0;
G = zeros(md,1);
H = (1./2.)*Ad*diag(1. ./ (r.*sqrt(abs(u))))*Ad';
elseif ind == 6 then
F = 0;
G = -(Ad*qsharp-fd);
H = (1./2.)*Ad*diag(1. ./ (r.*sqrt(abs(u))))*Ad';
elseif ind == 7 then
F = -(1./3.*qsharp'*(r.*qsharp.*abs(qsharp)) + pr'*(Ar*qsharp) + lmb'*(Ad*qsharp-fd));
G = -(Ad*qsharp-fd);
H = (1./2.)*Ad*diag(1. ./ (r.*sqrt(abs(u))))*Ad';
end
endfunction
|
3c665aed1366add8e1533e107aa9bd5110d3d3d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2417/CH11/EX11.2/Ex11_2.sce | f45333f9b355fb3ea81dd3854ae1e455e7909203 | [] | 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 | Ex11_2.sce | clear;
clc;
printf("\t\t\tProblem Number 11.2\n\n\n");
// Chapter 11: Heat Transfer
// Problem 11.2 (page no. 553)
// Solution
deltaX=0.150; //Given,150 mm =0.150 meter // //deltaX=length //Unit:meter
k=0.692; //Unit:W/(m*celcius) //k=proportionality constant //k=thermal conductivity
T1=70; //temperature maintained at one face //celcius
T2=30; //tempetature maintained at other face //celcius
deltaT=T2-T1; //celcius //change in temperature
Q=(-k*deltaT)/deltaX; //Heat transfer per square foot of wall //unit:W/m^2
printf("Heat transfer per square foot of wall is %f W/m^2",Q);
|
88908b2f78291854dad0929ee535d5ffc2473fa8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2090/CH16/EX16.1/Chapter16_example1.sce | 963adf038eee31e3dab86148850f6cd06c6ee2d7 | [] | 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,385 | sce | Chapter16_example1.sce | clc
clear
//Input data
N=3000;//The speed of the engine in rpm
r=9;//Compression ratio
l=17.2;//The length of the connecting rod in cm
t=20;//The combustion ends at a TDC in degrees
pi=3.141;//Mathematical constant of pi
k=3;//Three litre spark engine
n=6;//V-6 Engine
//Calculations
Vs=(k/n)*10^-3;//Swept volume per cylinder in m^3
d=[[(Vs*4)/pi]^(1/3)];//The diameter of the bore in m
L=d*100;//The length of the stroke in cm
up=2*d*N/60;//Average piston speed in m/s
Vc=[Vs/(r-1)]*10^6;//Clearence volume in cm^3
cr=(L)/2;//Crank radius in cm
R=l/cr;//The ratio of the connecting rod length to crank radius
up1=up*[(pi/2)*sin(pi/9)*(1+(cos(pi/9)/(R^2-(sin(pi/9)^2))^(1/2)))];//The piston speed at the end of combustion in m/s
s=(cr*cos(pi/9))+(l^2-(cr^2)*(sin(pi/9))^2)^(1/2);//Distance between crank axis and wrist pin in cm
x=l+cr-s;//The distance the piston travels from TDC at the end of combustion in cm
V=Vc+(pi/4)*(d*100)^2*x;//Instantaneous volume in cm^3
//Output
printf('(a)The cylinder bore and The stroke length (d = L) = %3.1f cm \n (b) The average piston speed = %3.1f m/s \n (c) The clearence volume of one cylinder = %3.1f cm^3 \n (d) The piston speed at the end of combustion = %3.2f m/s \n (e) The distance the piston travels from TDC at the end of combustion = %3.2f cm \n (f) Instantaneous volume = %3.1f cm^3 ',L,up,Vc,up1,x,V)
|
8c3d4bd106c3ec86d0b573087e2b2ed8f8ad1fbf | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH10/EX10.9/example10_9.sce | f5d35dd8808a6a04c7222c7ad42bb5260b254c55 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 537 | sce | example10_9.sce | v=132;
r1=20*10^3;
r2=40*10^3;
r3=60*10^3;
rl1=55*10^3;
rl2=110*10^3;
disp("Part a");
r=r1+r2*r3/(r2+r3);
i=v/r;
in=i*r3/(r2+r3);
rn=r2+r1*r3/(r1+r3);
i1=in*rn/(rn+rl1);
i2=in*rn/(rn+rl2);
disp("when the load is 55 kΩ the load current (in mA) is");disp(i1*10^3);
disp("when the load is 110 kΩ the load curent (in mA) is"); disp(i2*10^3);
disp("Part b");
v1=i1*rl1;
v2=i2*rl2;
disp("when the load is 55 kΩ the load voltage (in V) is"); disp(v1);
disp("when the load is 110 kΩ the load voltage (in V) is"); disp(v2); |
8f65774007e3b0ad7da4eea29bc496c5bd671d5e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3871/CH16/EX16.10/Ex16_10.sce | a90c0ffdb99d9b79885f954f0e5704f9e67bfc7f | [] | 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 | 412 | sce | Ex16_10.sce | //=====================================================================================
//Chapter 16 example 10
clc;clear all;
//variable declartion
wy = 3; //positive Y-axis in pattern
wx = 2; //positive X-axis in pattern
//calculations
f =wy/(wx); //frequency of vertical and horizontal signal
//result
mprintf("frequency of vertical and horizontal signal = %3.1f",f);
|
17d72a57943c1bd51de3576c7f6cc451fc215857 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2795/CH4/EX4.8/Ex4_08.sce | 8fc464fd840c44c50a75fd7b6091d45ec6796e2d | [] | 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,177 | sce | Ex4_08.sce | // Scilab Code Ex4.8: Page-149(2013)
clc; clear
m_e = 0.0005486; // Mass of an electron u
m_p = 1.007276; // Mass of a proton, u
m_d = 2.013553; // Mass of a deutron, u
m_t = 3.015500; // Mass of a triton, u
R_inf = 1.0974e+007; // Rydberg constant, per metre
R_H = 1/(1+m_e/m_p)*R_inf; // Rydberg constant for hydrogen
R_D = 1/(1+m_e/m_d)*R_inf; // Rydberg constant for deuterium
R_T = 1/(1+m_e/m_t)*R_inf; // Rydberg constant for tritium
lambda_H = 1/(R_H*(1/2^2-1/3^2)*1e-009); // Wavelength of H_alpha line for hydrogen, nm
lambda_D = 1/(R_D*(1/2^2-1/3^2)*1e-009); // Wavelength of H_alpha line for deuterium, nm
lambda_T = 1/(R_T*(1/2^2-1/3^2)*1e-009); // Wavelength of H_alpha line for tritium, nm
printf("\nThe wavelength of H_alpha line for hydrogen = %6.2f nm", lambda_H);
printf("\nThe wavelength of H_alpha line for deutruim = %6.2f nm", lambda_D);
printf("\nThe wavelength of H_alpha line for tritium = %6.2f nm", lambda_T);
// Result
// The wavelength of H_alpha line for hydrogen = 656.45 nm
// The wavelength of H_alpha line for deutruim = 656.27 nm
// The wavelength of H_alpha line for tritium = 656.22 nm |
968d380744e10edad280cac367232b5cca26789d | 4d867edb7174c0010079141c803470bb315fb98c | /Scilab/2.3.2.sci | 598453e6bf44644b8b5362cf2ff1aaff9d9c37e6 | [] | no_license | NirnaethArniedi/RapportScilab | 73868dce23273fa00421c0580c32b22e4da5fda0 | 05dbf45db77061ea5f214d90fda5e5b155343a5c | refs/heads/master | 2021-01-20T10:36:59.100534 | 2015-07-04T18:38:34 | 2015-07-04T18:38:34 | 21,175,471 | 0 | 0 | null | 2014-06-28T13:41:08 | 2014-06-24T18:08:27 | TeX | UTF-8 | Scilab | false | false | 1,216 | sci | 2.3.2.sci | clf;
function Y=simu(j,n,p,epsilon)
Xi = [0];
D = [];
M=[]
Zn = 1;
for i = 1:n
N=grand(1,Zn,'geom',0.5);
//Simulation du nombre d'enfant par individu
G=[];
c=0;
for k = 1:Zn
if(N(1,k)>0) then
for l=1:N(1,k) //Creation des position
c=c+1; //de depart de la
G(1,c)=Xi(1,k); //de la generation i+1
end;
end;
end
Zn=sum(N);
B=grand(1,Zn,'bin',1,0.6);//Variables
Pos=B+G; // de position de la
Xi=Pos; // generation i+1
end
E=(Xi>=((p-epsilon)*n));
H=(Xi<=((p+epsilon)*n));
nb=E*(H');
Y=nb/(2^(n));
endfunction
nbSimu=300;
n=14;
p=0.7;
nbCourbes=10;
for k=1:nbCourbes
epsilon=0.4
ListeRes=parallel_run(1:nbSimu,n,p,epsilon,"simu");
//Realisation de L=nbSimu experiences.
SommeRes=cumsum(ListeRes);
Moyenne=[];
for i=1:nbSimu //Calcul des estimateurs
Moyenne(1,i)=SommeRes(1,i)/i;//successifs
end; // de E(Y).
plot2d(Moyenne,style=rand()*10);
end;
|
f96579bbb79483042d79db767afbce5ce83523ca | 449d555969bfd7befe906877abab098c6e63a0e8 | /905/CH3/EX3.9/3_9.sce | 36ad090182759a848969c2053d0de5d25979df4f | [] | 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,490 | sce | 3_9.sce | clear;
clc;
// Illustration 3.9
// Page: 194
printf('Illustration 3.9 - Page: 194\n\n');
// solution
//*****Data*****//
// 1-Nitrogen dioxide 2-air
// From Example 3.8
Y1 = 0.0242; // [kg NO2/kg air]
Y2 = 0.0036; // [kg NO2/kg air]
Vs = 0.488; // [kg air/s]
M1 = 46; // [gram/mole]
M2 = 29; // [gram/mole]
// However here
X1 = 0;
// Data_eqm1 = [P1 m] (where 'P1' is Partial pressure of NO2 in mm of Hg, 'm' is solid concentration in kg NO2/kg gel)
Data_eqm1 = [0 0;2 0.4;4 0.9;6 1.65;8 2.60;10 3.65;12 4.85];
// The equilibrium data are converted to mass ratios as follows:
// Yi = P1/(760-P1)*46/29 (kg NO2/kg air) Xi = m/100 (kg NO2/kg gel)
// Equilibrium data
// Data_eqm = [Xi*100 Yi*100]
for i = 1:7;
Data_eqm(i,2) = Data_eqm1(i,1)*M1*100/((760-Data_eqm1(i,1))*M2);
Data_eqm(i,1) = Data_eqm1(i,2);
end
// From the intersection of the minimum operating line and equilibrium curve
X2_max = 0.0034; // [kg NO2/kg gel]
S = (Y1-Y2)/(X1-X2_max); // [kg gel/kg air]
Ls_min = -S*Vs; // [kg/s]
Ls = 2*Ls_min; // [kg/s]
Data_minSlope = [X1 Y1;X2_max Y2]*100;
scf(4);
plot(Data_eqm(:,1),Data_eqm(:,2),Data_minSlope(:,1),Data_minSlope(:,2));
xgrid();
legend('Equilibrium line ','Minimum Flow Rate Line');
xlabel("Xa*100, kg NO2/kg gel");
ylabel("Ya*100, kh NO2/kg air");
printf("The mass velocity of the silica gel required for cocurrent operation is %f kg/s which is 11 times that required for countercurrent operation\n\n",Ls); |
a2433791863c22d69ec9f7b2bca4ccc60798d7e2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1106/CH7/EX7.4/ex7_4.sce | 1c3cb7f326b6aef96fbc5ef472ea56306fda64dd | [] | 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 | 152 | sce | ex7_4.sce | // Example 7.4, Page No-330
clear
clc
fo=1000
Vcc=12
R1=10*10^3
R2=10*10^3
C=0.1*10^-6
R=1/(2.2*C*fo)
R=R/1000
printf('R= %.3f kohm', R)
|
bd35374cd41dee62d0cc37b776045fbc2fee4e30 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1319/CH11/EX11.1/11_1.sce | 38f9a48e6a7ff8f6a5be92c562393c4e3fa27fe1 | [] | 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 | 817 | sce | 11_1.sce | // Determine the size of the conductor for power and lighting circuit
clc;
clear;
P5=3*800; // Load wattage in 5A circuit
P15=2*1500;// Load wattage in 15 A circuit
Pt=P5+P15; // Total Load
// Assume a average of 0.8 pf, common for distribution systems
pf=0.8;
V=230; // Supply voltage
I=Pt/(V*pf); // Current at 230 supply
Isc=1.5*I; // Short Circuit Current
printf('The Current is %g A and the short circuit current is %g A\n\n',I,Isc)
printf('From the result sheet provided along with this code,\n for aluminium wire the size of the conductor comes out to be 25 mm^2.\nIn fact for 43 A it is 16 mm^2 but we should always go for one higher size of the conductor\n and hence we select conductor of size 25 mm^2 or 7/2.24 mm.')
printf('\n \n Refer the table in the result sheet \n')
|
7f0651599a5f1657601ce077dae8fcb0ee3ff9ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /405/CH5/EX5.6/5_6.sce | 9872a11f706e5e3db07b76e3c94531c322046424 | [] | 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,533 | sce | 5_6.sce | clear;
clc;
printf("\t\t\tExample Number 5.6\n\n\n");
// plate with unheated starting length
// illustration5.6
// solution
u = 20;// [m/s] air velocity
l = 0.2;// [m] plate length as well as width (square)
p = 101325;// [Pa] air pressure
Ta = 300;// [K] temperature of airstream
Tw = 350;// [K] temperature of last half of plate
// First we evaluate the air properties at the film temperature
Tf = (Tw+Ta)/2;// [K]
// and obtain
v = 18.23*10^(-6);// [square meter/s] kinematic viscosity
k = 0.02814;// [W/m degree celsius] heat transfer coefficient
Pr = 0.7;// prandtl number
// at the trailing edge of the plate the reynolds number is
Re_l = l*u/v;// reynolds number
// or laminar flow over the length of the plate
// heating does not start until the last half of the plate, or at position xo = 0.1m.
xo = 0.1;// [m]
// the local heat transfer coefficient is given by equation (5-41)
// hx = 0.332*k*Pr^(1/3)*(u/v)^(1/2)*x^(-1/2)*[1-(xo/x)^(0.75)]^(-1/3);
// the plate is 0.2 m wide so the heat transfer is obtained by integrating over the heated length xo<x<l
q = l*(Tw-Ta)*integrate('(0.332*k*Pr^(1/3)*(u/v)^(1/2)*x^(-1/2)*[1-(xo/x)^(0.75)]^(-1/3))','x',xo,l);
printf("the heat lost by the plate is %f W",q);
// the average value of the heat transfer coefficient over the heated length is given by
h = q*(Tw-Ta)*(l-xo)*l;// [W/square meter degree celsius]
printf("\n\n the average value of heat transfer coefficient over the heated length is given by %f W/square meter degree celsius",h);
|
efc7c9457861634543a908a234b000fb76a8a823 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2201/CH2/EX2.21/ex2_21.sce | c0b38d0f4949be73a6f575fde9db66550e4bebef | [] | 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 | ex2_21.sce | // Exa 2.21
clc;
clear;
close;
// Given data
n_i = 1.4*10^18;// in /m^3
n_D = 1.4*10^24;// in /m^3
n = n_D;// in /m^3
p = n_i^2/n;// in /m^3
disp(p,"Concentration of holes per m^3 is");
R_e = n/p;// Ratio of electron
disp(R_e,"Ratio of electron to hole concentration is");
|
8c7492216608c40e03f5708f8f843bf298b9e891 | 449d555969bfd7befe906877abab098c6e63a0e8 | /416/CH2/EX2.7/exp2_7c.sce | a3926f8761c692951d11c541da4c0b75dc9b8a30 | [] | 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 | 604 | sce | exp2_7c.sce | clc
disp("example 2.7")
md=40;cf=0.5;uf=0.8;//maximum demand in MW;capacity factor;utility factor
disp("(a)")
lf=cf/uf; //load factor is ratio of capacity factor to the utility factor
printf("load factor = capacity factor/utilisation factor =%f",lf)
disp("(b)")
pc=md/uf; //plant capacity is ratio of maximum demand to utility factor
printf("plant capacity = maximum demand/utilisation factor =%dMW",pc)
disp("(c)")
rc=pc-md; //reserve capacity is plant capacity minus maximum demand
printf("reserve capacity =%dMW",rc)
disp("d")
printf("annual energy production =%dMWh",md*lf*8760)
|
d41f5d8d9bbd28c3b769e981b811a8f76a03c77a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2078/CH4/EX4.25/Example4_25.sce | 8c9a271e8891f59ccac636c7546182ba2c0c0831 | [] | 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 | 224 | sce | Example4_25.sce | //Exa 4.25
clc;
clear;
close;
//Given data :
r=1.5/2;//cm
d=3*100;//cm
h=6*100;//cm
epsilon_o=8.854*10^-12;//permitivity
C=%pi*epsilon_o/log(d/(1+d^2/4/h^2)^r)*10^3;//F
disp(C,"Capacitance per km of line(F) : ");
|
0f2a9d1330af40692a29198413364679173c9d39 | 449d555969bfd7befe906877abab098c6e63a0e8 | /137/CH5/EX5.4/5_4.sce | c62acdeaff306152554b78431102fc476e66b2e5 | [] | 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 | 884 | sce | 5_4.sce | clc;
//page 224
//problem 5.4
// Repeat example 5.3 with m(t) expanded by a factor of 2 i.e. if the period of m(t) is 4*10^-4
// The values of constsnts Kf and Kp are given as Kf= 2*pi*10^5 and Kp=5*pi .
// we know that time expansion by a factor 2 reduces the signal spectrum width by a factor 2
// Therefore bandwidth is half the previous bandwidth
B=7.5; // im KHz
// For FM:
// Time expansion does not affect the peak amplitude so that mp=1.
mp=1;
// df=kf*mp/2*pi
Kf= 2*%pi*10^5; Kp=5*%pi;
df= (Kf*mp)/(2*%pi);// in Hz
df=df/10^3;// in KHz
Bfm=2*(df+B);
disp(+'KHz',Bfm,'Bfm in kHz is');
// For PM:
//mp is halved i.e. mp=10000
mp=10000;
// df=kp*mp/2*pi
df= (Kp*mp)/(2*%pi);// in Hz
df=df/10^3;// in KHz
Bpm=2*(df+B);
disp(+'KHz',Bpm,'Bpm in kHz is');
// Time expansion of m(t) has very little effect on the FM bandwidth, but it halves the PM bandwidth |
4855685b6baa3d6976735141c45652f25c0571d8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /55/CH8/EX8.2/8ex2.sci | 412bf95e71a6f9093f26cdc5ce1907f668cc8aca | [] | 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 | 873 | sci | 8ex2.sci | disp('to find:minimal spanning tree')
disp('the adjacency matrix for the weighted graph(nodeA,nodeB...nodeF) of 6 nodes is :')
K=[0 0 7 0 4 7;0 0 8 3 7 5;7 8 0 0 6 0;0 3 0 0 0 4;4 7 6 0 0 0;7 5 0 4 0 0]
disp('edges of the graph')
AC=7;
AE=4;
AF=7;
BC=8;
BD=3;
BE=7;
BF=5;
CE=6;
DF=4;
M=[AC,AE,AF,BC,BD,BE,BF,CE,DF]; //set of all edges
V=int32(M);
L=gsort(V) //edges sorted in decreasing order of their weights
disp('deleting edges without disconnecting the graph until 5 edges remain')
N=[BE,CE,AE,DF,BD]; //edges in minimum spanning tree
Sum=sum(N);
disp(Sum,'weight of the minimal spanning tree is')
disp('another method of finding a minimal spanning tree is :')
K=gsort(V,'g','i') //edges sorted in increasing order
N2=[BD,AE,DF,CE,AF]; //edges in minimum spanning tree
Sum2=sum(N2);
disp(Sum2,'weight of the minimal spanning tree is') |
922becbcf045d89ab3873ee54186232938b6c4a8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /800/DEPENDENCIES/2_3.sci | 27b19a3c32dbdd3a7a519005ab2fb7ef9bfa103b | [] | 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 | 201 | sci | 2_3.sci | P0 = 10; //atm
yA0 = 0.5;
T0 = 422.2;//K
R = 0.082;// dm^3.atm/mol.K
v0 = 6;//dm^3/s
X = [0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8]';
p = [189 192 200 222 250 303 400 556 800];//1/-rA = 800//dm^3.s/mols |
ee55d24a16972abdc2bcdc5dca7787b3992a190a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1163/CH3/EX3.21/example_3_21.sce | f7f7c5765a27caa0962de3dd23a12ed00a900222 | [] | 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 | 646 | sce | example_3_21.sce | clear;
clc;
disp("--------------Example 3.21---------------")
printf("An example of a dedicated channel where the entire bandwidth of the medium is used as one single channel is a LAN.\nAlmost every wired LAN today uses a dedicated channel for two stations communicating with each other.\nIn a bus topology LAN with multipoint connections, only two stations can communicate with each other at each moment\nin time (timesharing); the other stations need to refrain from sending data. In a star topology LAN,\nthe entire channel between each station and the hub is used for communication between these two entities."); // display the example
|
4f29c3c8b44760de4d00970469f2a3cc6547658c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3740/CH6/EX6.6/Ex6_6.sce | b3318dee098ac2a0ab88fab1fdb7f5c928c62012 | [] | 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 | Ex6_6.sce | //Optoelectronics - An Introduction, 2nd Edition by J. Wilson and J.F.B. Hawkes
//Example 6.6
//OS=Windows XP sp3
//Scilab version 5.5.2
clc;
clear;
//given
Lambda=632.8e-9;//Wavelength of the laser in m
F=1;//Focal ratio of the lens
Prad=10e-3;//Power radiated by the laser in W
rs=2*Lambda*F/%pi;//Radius of the focused spot in m
mprintf("\n rs = %.1e m",rs);
//Let the power per unit area in W m^-2 be P
P=Prad/(%pi*(rs)^2);
mprintf("\n P = %.1e W m^-2",P);
|
a841071f26a879709cb957b99af5376b1369e53b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3204/CH17/EX17.3/Ex17_3.sce | 1d670fe48d0c5bf495fcacb0e3e491fdc81cbf99 | [] | 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 | 784 | sce | Ex17_3.sce | // Initilization of variables
m_m=50 // kg // mass of man
m_b=250 // kg // mass of boat
s=5 // m // length of the boat
v_r=1 // m/s // here v_r=v_(m/b)= relative velocity of man with respect to boat
// Calculations
// Velocity of man is given by, v_m=(-v_r)+v_b
// Final momentum of the man and the boat=m_m*v_m+m_b*v_b. From this eq'n v_b is given as
v_b=(m_m*v_r)/(m_m+m_b) // m/s // this is the absolute velocity of the boat
// Time taken by man to move to the other end of the boat is,
t=s/v_r // seconds
// The distance travelled by the boat in the same time is,
s_b=v_b*t // m to right from O
// Results
clc
printf('(a) The velocity of boat as observed from the ground is %f m/s \n',v_b)
printf('(b) The distance by which the boat gets shifted is %f m \n',s_b)
|
a2f1ea029f5e891f15ca58fdef26a9e007579367 | 449d555969bfd7befe906877abab098c6e63a0e8 | /26/CH7/EX7.1.1/7_1_1.sce | 09fe0b631a56b5f4322f044406cd642a7bef0bdc | [] | 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 | 228 | sce | 7_1_1.sce | disp('To check if the given 2X2 matrix is symmetric')
a=[3 5;5 -7]
disp(a,'A=')
if(a(1,2)==a(2,1))
disp('A is a symmetric matrix because the (1,2) and(2,1) entries match.')
else
disp('A is not a symmetric matrix')
end |
2a63f71c690420348df4c7338733f71d79affc72 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2504/CH10/EX10.4/10_4.sce | 213c7a329de04ec2a6d2db2672c5189b5848c920 | [] | 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 | 331 | sce | 10_4.sce | clc
//initialisation of variables
clear
A= 320 //ft/^2
w= 18000 //lbf
v= 230 //ft/sec
ad= 0.0765 //lbm/ft^3
p= 5 //per cent
c= 0.055
n= 1.75
g= 32.2 //ft/sec^2
//CALCULATIONS
CL= 2*w*(1-(p/100))*g/(ad*v^2*A)
D= w*(1-(p/100))*c*n/CL
//RESULTS
printf ('lift coeefieicnt = %.2f',CL)
printf ('\n Drage force = %.f',D)
|
ecf6b9bc5a9146e53c176c61f0e446ab563f9554 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1118/CH9/EX9.8/eg9_8.sce | 5023a781c63b084ff9f7b8f64a4655526eeb5a31 | [] | 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,207 | sce | eg9_8.sce | clear;
clc;
vl=132000;
s=50000000;
pf=.85;
l=80;
function [r,i]=d(mag,theta)
r=mag*cosd(theta);
i=mag*sind(theta);
endfunction
previousprot = funcprot(0)
funcprot(0)
mag=96;
theta=78;
[r,i]=d(mag,theta);
z=complex(r,i);
mag=.001;
theta=90;
[r,i]=d(mag,theta);
y=complex(r,i);
vrp=vl/sqrt(3);
Irp=s/(sqrt(3)*vl*pf);
mag=Irp;
theta=-acosd(pf);
[r,i]=d(mag,theta);
irp=complex(r,i);
//a).for the nominal T network parameters are
A=1+.5*z*y;
B=z*(1+.25*z*y);
C=y;
D=A;
disp(A);
disp(B);
disp(C);
disp(D);
//phase voltage at the sending end is
vsp=A*vrp+B*irp;
vsl=sqrt(3)*vsp;
disp(vsp);
//c).
is=C*vrp+D*irp;
disp(is);
//d).
qs=atand(imag(vsp)/real(vsp))-atand(imag(is)/real(is));
printf("\n The power factor at the sending end is:%.3f (lagging)",cosd(qs));
//e).
r=real(vsl);
i=imag(vsl);
function [mag,theta]=c(r,i)
mag=sqrt(r*r + i*i)
theta=atand(i/r)
endfunction
previousprot = funcprot(0)
funcprot(0)
[mag,theta]=c(r,i);
Vsl=mag;
r=real(is);
i=imag(is);
[mag,theta]=c(r,i);
Is=mag;
eff=s/(sqrt(3)*Vsl*Is*cosd(qs));
printf("\n The efficiency of transmission is:%.2f per cent",eff*100);
|
fc99f7a889dabee3bfa2d4991d6a0f810cbd8582 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1958/CH12/EX12.e.4/Chapter12_example4.sce | e5b0a1b3398c8bc947ab063528e1a172c7562939 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 380 | sce | Chapter12_example4.sce | clc
clear
//Input data
R=[2,3,6]//Resistances from circuit diagram 12.15 on page no. 178 in ohms
I=2//Current in A from circuit diagram 12.15 on page no. 178
//Calculations
Rth=(R(2)+R(3))//Equivalent resistance in ohms
Vth=(R(3)*I)//Equivalent voltage in V
//Output
printf('Thevenin equivalent resistance is %i ohms \n Thevenin equivalent voltage is %i V',Rth,Vth)
|
1356d5131279aa08452c0e7ae18078a803822815 | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH17/EX17.4/example17_4.sce | eda2400e0a04495fcfe3e0447fc388cc923b9a02 | [] | 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 | 689 | sce | example17_4.sce | //Chapter 17
//Example 17_4
//Page 405
clear;clc;
kva=[10000 10000 5000];
x=[12 12 18];
kva_tr=5000;
x_tr=5;
base=input("Enter base kva: ");
for i=1:3;
per_x(i)= x(i)*base/kva(i);
printf("%% x(%i) = %.0f \n\n", i, per_x(i));
end
per_xt=x_tr*base/kva_tr;
printf("%% Xt = %.0f \n\n", per_xt);
tx1=1/(1/per_x(1)+1/per_x(2)+1/per_x(3));
fmva1=base*100/tx1*1/1000;
tx2=tx1+per_xt;
fmva2=base*100/tx2*1/1000;
printf("(i) Total percentage reactance from generator to fault F1 = %.2f %% \n\n", tx1);
printf(" Fault MVA = %.2f \n\n", fmva1);
printf("(ii) Total percentage reactance from generator to fault to F2 = %.2f %% \n\n", tx2);
printf(" Fault MVA = %.2f \n\n", fmva2);
|
9835a0f93eb1ebf515971d32ec327a5d3127ec66 | bdf572464541387fa0028a1ff861ceb55e81938e | /Interpolation/qinter.sce | 4e86b98f21add4c87abf51df8c2b7b468d0c261a | [] | no_license | akarshsomani/Scilab-programs | 20c4a52a51e5689d12d491218988aa037f09a21a | 18199a7f424e3711765965e3d3b12e149a5d497a | refs/heads/master | 2020-03-14T10:00:36.585002 | 2018-04-30T04:59:39 | 2018-04-30T04:59:39 | 131,557,212 | 0 | 1 | null | 2018-10-31T14:52:07 | 2018-04-30T04:55:36 | Scilab | UTF-8 | Scilab | false | false | 262 | sce | qinter.sce | // Finding value of f(x) given (x0,y0),(x1,y1) and (x2,y2)
function [y] = quad_interpolation(x0,y0,x1,y1,x2,y2,x)
b0 = y0
b1 = (y1 - y0)/(x1 - x0)
b2 = ((y2 - y1)/(x2 - x1) - b1)/(x2 - x0)
y = b0 + b1*(x - x0) + b2*(x - x0)*(x - x1)
endfunction
|
05169d73bbb0f537e3da39460077987016b2862f | 68e086667f5a98c618484a7e7b362856e7e71602 | /Mass-spring-damper-to-B100000.sce | 4244f6c42f26794073952d1f226050239d4145bd | [] | no_license | nascimento-luciano/Automation-Computing | b30b5506ee6042672e7801ebdb078b3288ab76a1 | c845a97d5cd4f7dcb0578afaed9a3da8de56798a | refs/heads/main | 2023-03-21T19:12:49.695327 | 2021-03-18T02:27:35 | 2021-03-18T02:27:35 | 348,898,666 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,426 | sce | Mass-spring-damper-to-B100000.sce | //Trabalho-2 - Parte 1. Para b = 100000
//Algoritmo Massa Mola (Vibrações Mecânicas)
clear;
clc;
m1=100; // Valor da Massa 1 em (N/m)
m2=100; // Valor da Massa 2 em (N/m)
k1=100; // Valor da Constante da mola 1 em (N/m)
k2=100; // Valor da Constante da mola 2 em (N/m)
k3=100; // Valor da Constante da mola 3 em (N/m)
b=100000;
u=0.1;
x0=[0.1; 0; 0; 0;]; // Condições iniciais para (x1, x2, x3, x4)
tempototal=40; // Em segundos
h=0.001 ; // Passo de integração/ Tempo de intervalo
n=tempototal / h ; // Numero de Interações
t=0:h:tempototal; // Intervalo de Integração
t0=t(1); // Valor do Tempo Inicial
function dxdt=dxdt(t,x)
dxdt=[x(2);
((-(k1+k2)*x(1))-(b*x(2))+(k2*x(3))+(b*x(4))+u)/(m1);
x(4);
(k2*x(1)+(b*x(2))-((k2+k3)*x(3))-(b*x(4)))/(m2)]
endfunction
x=ode(x0,t0,t,dxdt); //Função que resolve a Equação Diferencial
scf(); //Gráfico
plot(t,x(1, :),'k',t,x(3, :),'r');
legend(['y(m)';'dy/dt(m/s)']);
if u==0 then
xtitle('Solução com um deslocamento incial 0,1 m em y','t(s)','y(m) e dy/dt(m/s)');
else
xtitle('Solução com excitação u=0,1 m','t(s)','y(m) e dy/dt(m/s)');
end
|
99a9eb046d9f477057c583aeb49059fd1da19064 | f5d97602ad111cf2fe570b890646522118e3f9f1 | /ziegler-nichols-second-method.sce | 3a691251a8011ec361dcc00a9feb5421ab9c8941 | [] | no_license | HugoJF/scilab-pid-controller | 5d6d869d00e7bcc404ae358db92976863d2619cc | f4726b3f6a01cac1526632c31a6e2c840b6fb07c | refs/heads/master | 2023-01-28T11:20:43.264090 | 2020-12-11T20:27:29 | 2020-12-11T20:27:29 | 320,695,475 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,153 | sce | ziegler-nichols-second-method.sce | exec('C:\Users\hugo_\Desktop\trabalho-controller\prep.sce', -1)
exec('C:\Users\hugo_\Desktop\trabalho-controller\funcs.sce', -1)
// Simulation parameters
t = gettime(30, 100);
// Method preparation
// Gain estimation
// Very long simulation time to make sure oscillations are stable and consistent
kcr_estimation = 1.48;
tg = gettime(600, 100);
yg = csim('step', tg, (g*kcr_estimation)/.(1));
// Period estimation
// Shorter simulation since we only need the period
tper = gettime(30, 100);
yper = csim('step', tper, (g*kcr_estimation)/.(1));
// Method parameters
kcr = 1.48;
tcr = 11.34;
// Simulations
y = csim('step', t, g/.(1));
yp = simu_zn2_p(t, kcr, tcr);
ypi = simu_zn2_pi(t, kcr, tcr);
ypid = simu_zn2_pid(t, kcr, tcr);
// Plots
subplot(211)
plot(t, y, t, yp, t, ypi, t, ypid);
title('Ziegler-Nichols second method for PID tuning')
legend(['G response', 'P response', 'PI response', 'PID response']);
subplot(223)
plot(tg, yg);
title('Ziegler-Nichols second method gain estimation')
legend(['Closed loop response'])
subplot(224)
plot(tper, yper);
title('Ziegler-Nichols second method period estimation')
legend(['Closed loop response']) |
942be12c9b55cd0fd15f67fcecc693a28b9f8913 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/form-split/GOLD-TEST/ote.tst | d270776de8d4803310999f103771dad049182a4d | [] | 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 | 233,451 | tst | ote.tst | ndo²ʔmi xkí ndoʔmi V;PRF;2;PST
fụ²ki xki fụki V;PRF;3;PST
ʔro¹²ti ndí ʔroti V;IPFV;SG;1;PST
ts’ụ²-xẹ¹²ni gi ts’ụxẹni V;IRR;SG;2
do²-ʔyẹ dá ndoʔyẹ V;PFV;SG;1
ka²lku²la dí kalkula V;IPFV;SG;1;PRS
ñe²ʔmi gi ñeʔmi V;IRR;SG;2
kä²ʔmi stá käʔmi V;PRF;SG;1;PRS
tsọ¹²họ bi tsọhọ V;PFV;SG;3
jot’i mí jot’i V;IPFV;SG;3;PST
dä²hñei gí dähñei V;IPFV;SG;2;PRS
hño¹²ga²-mfe¹²ni bi hñogamfeni V;PFV;SG;3
eni xkí ʔeni V;PRF;2;PST
ne²i stí nei V;PRF;1;PST
pä¹²di xa pädi V;PRF;SG;3;PRS
xaʔti stá xaʔti V;PRF;SG;1;PRS
ño¹²-hụ xa ñohụ V;PRF;SG;3;PRS
ʔña²nga²-ñhu²ni ga ʔñangañhuni V;IRR;SG;1
uäki gá uäki V;PFV;SG;2
hña²t’i stá hñat’i V;PRF;SG;1;PRS
tọt-ue dá tọtue V;PFV;SG;1
zo²hni zohni V;IPFV;SG;3;PRS
bụ¹²ts’i stí bụts’i V;PRF;1;PST
ʔñe²ni xa ʔñeni V;PRF;SG;3;PRS
ñä²-mä²ñho dá ñämäñho V;PFV;SG;1
bụ¹²-ñä bụñä V;IPFV;SG;3;PRS
to¹²nts’i stí tonts’i V;PRF;1;PST
o²ʔtsi ndí ʔoʔtsi V;IPFV;SG;1;PST
nxa¹² dí nxa V;IPFV;SG;1;PRS
kuui xká kuui V;PRF;SG;2;PRS
xẹki xa xẹki V;PRF;SG;3;PRS
hño²jä²ʔi gí hñojäʔi V;IPFV;SG;2;PRS
tsa²-te mí tsate V;IPFV;SG;3;PST
kunt’i gi kunt’i V;IRR;SG;2
aki stá ʔaki V;PRF;SG;1;PRS
e¹²nthi gí ʔenthi V;IPFV;SG;2;PRS
xat’i xká xat’i V;PRF;SG;2;PRS
ndä¹²-ta dá ndäta V;PFV;SG;1
bo¹²x-jua xki boxjua V;PRF;3;PST
ntsä²t’i bi ntsät’i V;PFV;SG;3
do²-zụ gí dozụ V;IPFV;SG;2;PRS
ʔue²ke xki ʔueke V;PRF;3;PST
a¹²ni gi ʔyani V;IRR;SG;2
ka¹²-k’yẹ gá kak’yẹ V;PFV;SG;2
tsa²ʔni dí tsaʔni V;IPFV;SG;1;PRS
ya¹²ʔtsi ga yaʔtsi V;IRR;SG;1
tsa¹²ui da tsaui V;IRR;SG;3
nja xa nja V;PRF;SG;3;PRS
pẹ²ts’i¹²-nts’ụ ndí pẹts’ints’ụ V;IPFV;SG;1;PST
jụ¹²st’i stí jụst’i V;PRF;1;PST
jo¹²ni xa joni V;PRF;SG;3;PRS
yoni xká yoni V;PRF;SG;2;PRS
ʔbẹ-bo gí ʔbẹbo V;IPFV;SG;2;PRS
sa²gi gi nsagi V;IRR;SG;2
ko¹²ts’i xki gots’i V;PRF;3;PST
ts’itsi stá ts’itsi V;PRF;SG;1;PRS
ʔño²ki mí ʔñoki V;IPFV;SG;3;PST
muhni stá muhni V;PRF;SG;1;PRS
de²sia xa desia V;PRF;SG;3;PRS
hwiʔti ngí hwiʔti V;IPFV;SG;2;PST
hya²ʔnga gá nhyaʔnga V;PFV;SG;2
be²ntya mí bentya V;IPFV;SG;3;PST
ueʔte ndí ueʔte V;IPFV;SG;1;PST
ts’oma²-ñu²ni xki ts’omañuni V;PRF;3;PST
a²ʔ-thä gí ʔaʔthä V;IPFV;SG;2;PRS
het’i hët’i V;IPFV;SG;3;PRS
ani da ʔyani V;IRR;SG;3
xaʔti gí xaʔti V;IPFV;SG;2;PRS
ʔñẹnts’i ga ʔñẹnts’i V;IRR;SG;1
ʔñu¹²ni stá ʔñuni V;PRF;SG;1;PRS
ñe²ʔmi dá ñeʔmi V;PFV;SG;1
k’i²nt’i k’int’i V;IPFV;SG;3;PRS
ʔña²ni xká ʔñani V;PRF;SG;2;PRS
tsẹ²-nza da ntsẹnza V;IRR;SG;3
xi²xi xká xixi V;PRF;SG;2;PRS
po¹²nt’a²-ʔyẹ ga pont’aʔyẹ V;IRR;SG;1
zẹdi dá zẹdi V;PFV;SG;1
xa²ʔtsi dí xaʔtsi V;IPFV;SG;1;PRS
zofo zofo V;IPFV;SG;3;PRS
kadi-tho stá kaditho V;PRF;SG;1;PRS
hmä¹²ki bi hmäki V;PFV;SG;3
hmät’i dí hmät’i V;IPFV;SG;1;PRS
pẹi gi pẹi V;IRR;SG;2
pẹ²ʔsfi dá pẹʔsfi V;PFV;SG;1
tẹ¹²xi da dẹxi V;IRR;SG;3
nxa²ha bi nxaha V;PFV;SG;3
ta²n-the xa tanthe V;PRF;SG;3;PRS
ʔba¹²hni ga ʔbahni V;IRR;SG;1
ko²ti xa goti V;PRF;SG;3;PRS
fụ²gi xkí fụgi V;PRF;2;PST
xẹʔtsi mí xẹʔtsi V;IPFV;SG;3;PST
dä²hñei mí dähñei V;IPFV;SG;3;PST
xont’i da xont’i V;IRR;SG;3
ntsa¹²-ʔri²hi xki ntsaʔrihi V;PRF;3;PST
ko²ʔti ga koʔti V;IRR;SG;1
nzụni gá nzụni V;PFV;SG;2
ga²ts’i ndí gats’i V;IPFV;SG;1;PST
dụʔti dá dụʔti V;PFV;SG;1
ni²-ñä dí niñä V;IPFV;SG;1;PRS
te²ʔtse mí teʔtse V;IPFV;SG;3;PST
njo-ne dí njone V;IPFV;SG;1;PRS
ne¹²ts’i ngí nets’i V;IPFV;SG;2;PST
ʔñani dí ʔñani V;IPFV;SG;1;PRS
dän-tsu ngí däntsu V;IPFV;SG;2;PST
me¹²p-ya xki mepya V;PRF;3;PST
kụ¹²xki ndí kụxki V;IPFV;SG;1;PST
yaki dá yaki V;PFV;SG;1
bụnt’i stí bụnt’i V;PRF;1;PST
pi²xi xki pixi V;PRF;3;PST
po²gi ngí pogi V;IPFV;SG;2;PST
to¹²nt’i stí tont’i V;PRF;1;PST
tsi²hai xa tsihai V;PRF;SG;3;PRS
pa-thä gi pathä V;IRR;SG;2
tipi tipi V;IPFV;SG;3;PRS
thi²ʔtsi ngí thiʔtsi V;IPFV;SG;2;PST
k’uä¹²nt’i da k’uänt’i V;IRR;SG;3
hñiti stí hñiti V;PRF;1;PST
dụ²hụ xkí dụhụ V;PRF;2;PST
ʔbẹ²go ga ʔmẹgo V;IRR;SG;1
do¹²ni mí doni V;IPFV;SG;3;PST
adi dí ʔadi V;IPFV;SG;1;PRS
nxaʔmi xki nxaʔmi V;PRF;3;PST
hui²ʔtfi da nhwiʔtfi V;IRR;SG;3
pe²ni dá peni V;PFV;SG;1
di¹²nts’i xki dints’i V;PRF;3;PST
pa¹²ts’i ga pats’i V;IRR;SG;1
ẹ²n-sagi stí ʔñẹnsagi V;PRF;1;PST
jụts’i xká jụts’i V;PRF;SG;2;PRS
mfi²ts’i mfits’i V;IPFV;SG;3;PRS
ẹ²nt’a²-hme bi ʔñẹnt’ahme V;PFV;SG;3
fonts’i gá fonts’i V;PFV;SG;2
mbi¹²nu xki mbinu V;PRF;3;PST
e¹²di xki ʔñëdi V;PRF;3;PST
fat’ä²-juä¹² gá fat’äjuä V;PFV;SG;2
the²ʔtsi mí theʔtsi V;IPFV;SG;3;PST
fụ²x-hwä²hi xkí mfụxhwähi V;PRF;2;PST
tsä²t’i xki tsät’i V;PRF;3;PST
kua¹²ʔtsi da kuaʔtsi V;IRR;SG;3
ʔñu²n-the bi ʔñunthe V;PFV;SG;3
nts’o¹²ni nts’oni V;IPFV;SG;3;PRS
ʔya²ha ga ʔyaha V;IRR;SG;1
ne¹²ki gí neki V;IPFV;SG;2;PRS
ʔyo² dá ʔño V;PFV;SG;1
se²ñä xká señä V;PRF;SG;2;PRS
ʔrọ²ʔtse dá ʔrọʔtse V;PFV;SG;1
ọ²t’a²-do¹²ndo dí ʔọt’adondo V;IPFV;SG;1;PRS
pi²ʔmi bi piʔmi V;PFV;SG;3
mẹ¹²ñ-ʔyẹ bi mẹñʔyẹ V;PFV;SG;3
tsụ²mʔi gá ntsụmʔi V;PFV;SG;2
ñä²-hñu xki ñähñu V;PRF;3;PST
fọmi gi fọmi V;IRR;SG;2
mpants’i stá mpants’i V;PRF;SG;1;PRS
ẹ²nte xki ʔñẹnte V;PRF;3;PST
juʔti dí juʔti V;IPFV;SG;1;PRS
ẹ²nts’a²-te ndí ʔẹnts’ate V;IPFV;SG;1;PST
ga²ts’i gí gats’i V;IPFV;SG;2;PRS
thuui thuui V;IPFV;SG;3;PRS
hụ²ʔtsi ngí hụʔtsi V;IPFV;SG;2;PST
hu²ʔti dí hüʔti V;IPFV;SG;1;PRS
k’ẹ²ʔti dí k’ẹʔti V;IPFV;SG;1;PRS
u²di xki ʔudi V;PRF;3;PST
ko¹²ts’i da gots’i V;IRR;SG;3
bu²hla ndí buhla V;IPFV;SG;1;PST
hnọ²ʔtse stá hnọʔtse V;PRF;SG;1;PRS
ntọ²ts’e xkí ntọts’e V;PRF;2;PST
ntuti ntuti V;IPFV;SG;3;PRS
jụ ndí jụ V;IPFV;SG;1;PST
kụ²i xkí kụi V;PRF;2;PST
fant’i da fant’i V;IRR;SG;3
pani dí pani V;IPFV;SG;1;PRS
pänts’i ngí pänts’i V;IPFV;SG;2;PST
mponi mí mponi V;IPFV;SG;3;PST
ʔyo²mbi mí ʔyombi V;IPFV;SG;3;PST
koh-wi xki gohwi V;PRF;3;PST
tsi stá tsi V;PRF;SG;1;PRS
mädi stí mädi V;PRF;1;PST
xahni dá xahni V;PFV;SG;1
tsụ²ʔtsi xkí tsụʔtsi V;PRF;2;PST
nxaki xa nxaki V;PRF;SG;3;PRS
tsẹ²ki ndí tsẹki V;IPFV;SG;1;PST
e² mbi¹²da stá ʔëmbida V;PRF;SG;1;PRS
e¹²ni xki ʔeni V;PRF;3;PST
jä²ts’i xki gäts’i V;PRF;3;PST
edi stí ʔëdi V;PRF;1;PST
he²t’ä-nthä¹²hi bi hñët’anthähi V;PFV;SG;3
pe²t’e gi pet’e V;IRR;SG;2
hñe²ts’i xki hñëts’i V;PRF;3;PST
ʔba²ni ndí ʔbani V;IPFV;SG;1;PST
yaki ga yaki V;IRR;SG;1
hmi²m-t’ẹi bi hmimt’ẹi V;PFV;SG;3
fụ²x-hwä²hi xa mfụxhwähi V;PRF;SG;3;PRS
he¹² dí hë V;IPFV;SG;1;PRS
ʔbụk-ne xa ʔbụkne V;PRF;SG;3;PRS
hẹ²hni xki hyẹhni V;PRF;3;PST
hụ²ki mí hụki V;IPFV;SG;3;PST
tha²ha xa thaha V;PRF;SG;3;PRS
hñiti stá hñiti V;PRF;SG;1;PRS
tsụdi gá tsụdi V;PFV;SG;2
tu²ka²-te xa tukate V;PRF;SG;3;PRS
ue²ni gá ueni V;PFV;SG;2
ʔbẹ²ni dá ʔmẹni V;PFV;SG;1
he²ʔmi xkí heʔmi V;PRF;2;PST
xụ²-ʔyẹ gá nxụʔyẹ V;PFV;SG;2
huʔtsi xkí hñüʔtsi V;PRF;2;PST
jut’i ngí jut’i V;IPFV;SG;2;PST
fe¹²t’e ga fet’e V;IRR;SG;1
ʔbụ²-sẹ xkí ʔbụsẹ V;PRF;2;PST
me¹²t’i da met’i V;IRR;SG;3
pi²gi gi pigi V;IRR;SG;2
ndu²-mụi dí ndumụi V;IPFV;SG;1;PRS
zẹ¹²ngua zẹngua V;IPFV;SG;3;PRS
kọ¹²st’e xki gọst’e V;PRF;3;PST
ja¹²-nä¹²nä ngí janänä V;IPFV;SG;2;PST
mpẹ¹²nkui gá mpẹnkui V;PFV;SG;2
xẹki ga xẹki V;IRR;SG;1
ñobri xkí ñobri V;PRF;2;PST
njo-zụ dí njozụ V;IPFV;SG;1;PRS
ọni ndí ʔọni V;IPFV;SG;1;PST
tẹ¹²xi xkí tẹxi V;PRF;2;PST
dụʔti stí dụʔti V;PRF;1;PST
mẹdi da mẹdi V;IRR;SG;3
nta²ti gi ntati V;IRR;SG;2
mi¹²hi mí mihi V;IPFV;SG;3;PST
hu²ʔti ngí hüʔti V;IPFV;SG;2;PST
hä¹²ni ndí häni V;IPFV;SG;1;PST
he¹² ga he V;IRR;SG;1
thä²nts’i gí thänts’i V;IPFV;SG;2;PRS
pụʔtsi mí pụʔtsi V;IPFV;SG;3;PST
ne bi ne V;PFV;SG;3
thụ¹²ts’i gá thụts’i V;PFV;SG;2
ʔbẹt’i ngí ʔbẹt’i V;IPFV;SG;2;PST
pasia bi pasia V;PFV;SG;3
kunt’i stí kunt’i V;PRF;1;PST
ye²ʔmi xa yeʔmi V;PRF;SG;3;PRS
jụ¹²st’i gá jụst’i V;PFV;SG;2
ʔmẹ-xuui xa ʔmẹxuui V;PRF;SG;3;PRS
he²ts’e dí hets’e V;IPFV;SG;1;PRS
ne ne V;IPFV;SG;3;PRS
jụmpa²bi mí jụmpabi V;IPFV;SG;3;PST
hyẹ¹²hẹ dí hyẹhẹ V;IPFV;SG;1;PRS
tuʔtsi ndí tuʔtsi V;IPFV;SG;1;PST
ntsa¹²ui stá ntsaui V;PRF;SG;1;PRS
a²ʔ-thä ga ʔñaʔthä V;IRR;SG;1
ntohni gi ntohni V;IRR;SG;2
sẹ²yabi dá sẹyabi V;PFV;SG;1
mfots’i ngí mfots’i V;IPFV;SG;2;PST
tọ²ʔmi stí tọʔmi V;PRF;1;PST
nä²via gá nävia V;PFV;SG;2
xi²ʔtsi ngí xiʔtsi V;IPFV;SG;2;PST
ẹ²te xa ʔñẹte V;PRF;SG;3;PRS
ʔñan-the ngí ʔñanthe V;IPFV;SG;2;PST
ani xki ʔyani V;PRF;3;PST
taki taki V;IPFV;SG;3;PRS
ʔñe¹²ts’i dá ʔñets’i V;PFV;SG;1
ʔñu²nts’i xa ʔñunts’i V;PRF;SG;3;PRS
pẹ²t-jụ¹²ni mí pẹtjụni V;IPFV;SG;3;PST
pẹ²-ʔñäi ga pẹʔñäi V;IRR;SG;1
ʔmẹ-xuui bi ʔmẹxuui V;PFV;SG;3
heni gí heni V;IPFV;SG;2;PRS
be²n-tho dá bentho V;PFV;SG;1
tsiti dí tsiti V;IPFV;SG;1;PRS
ndämba-ʔyẹ ndämbaʔyẹ V;IPFV;SG;3;PRS
da¹²dri gá dadri V;PFV;SG;2
pẹ²pa²-te stí pẹpate V;PRF;1;PST
kadi gi kadi V;IRR;SG;2
pu²ni xkí puni V;PRF;2;PST
hụ²ʔtsi xkí hyụʔtsi V;PRF;2;PST
ʔbẹgo gí ʔbẹgo V;IPFV;SG;2;PRS
ntho²hni bi nthohni V;PFV;SG;3
the²ʔtsi xkí theʔtsi V;PRF;2;PST
ụ²ta²-te mí ʔụtate V;IPFV;SG;3;PST
huts’i gá hñüts’i V;PFV;SG;2
k’ä²ts’i da k’äts’i V;IRR;SG;3
ts’iki bi ts’iki V;PFV;SG;3
ja²pa²bi ngí japabi V;IPFV;SG;2;PST
do²-mbi dá dombi V;PFV;SG;1
ho¹²tho dí hotho V;IPFV;SG;1;PRS
ue²n-t’ẹi ga uent’ẹi V;IRR;SG;1
käi ngí käi V;IPFV;SG;2;PST
ti²ki da diki V;IRR;SG;3
ʔñu²n-the dá ʔñunthe V;PFV;SG;1
họ²x-gi²ni xa nhyọxgini V;PRF;SG;3;PRS
tuʔtsi xkí tuʔtsi V;PRF;2;PST
tẹ¹²hẹ ngí tẹhẹ V;IPFV;SG;2;PST
k’ụ²ki xkí k’ụki V;PRF;2;PST
ts’o² gi ts’o V;IRR;SG;2
xiʔtsi mí xiʔtsi V;IPFV;SG;3;PST
ụ²n-te dí ʔụnte V;IPFV;SG;1;PRS
muʔmbi dá muʔmbi V;PFV;SG;1
ñä²-mä²ñho ndí ñämäñho V;IPFV;SG;1;PST
häʔmi gi hñäʔmi V;IRR;SG;2
fọ²mä²-te mí fọmäte V;IPFV;SG;3;PST
mpọ²ni mpọni V;IPFV;SG;3;PRS
ko²ti xká koti V;PRF;SG;2;PRS
thuki dí thuki V;IPFV;SG;1;PRS
ʔbẹfa stí ʔbẹfa V;PRF;1;PST
hñahni gí hñahni V;IPFV;SG;2;PRS
te¹²de mí tede V;IPFV;SG;3;PST
xuʔti xká xuʔti V;PRF;SG;2;PRS
ntsọʔmi dí ntsọʔmi V;IPFV;SG;1;PRS
zọ²te mí zọte V;IPFV;SG;3;PST
mfa²di bi mfadi V;PFV;SG;3
k’ụ²ki mí k’ụki V;IPFV;SG;3;PST
ụʔti xkí ʔyụʔti V;PRF;2;PST
xẹpi da xẹpi V;IRR;SG;3
tsọ¹²ni xki zọni V;PRF;3;PST
ʔñä²xi ndí ʔñäxi V;IPFV;SG;1;PST
tet’e ngí tet’e V;IPFV;SG;2;PST
nụ¹²-da gí nụda V;IPFV;SG;2;PRS
ntẹ¹²ti gi ntẹti V;IRR;SG;2
peni gá peni V;PFV;SG;2
pa¹²nt’i xa mant’i V;PRF;SG;3;PRS
u¹²ts’i xká ʔyuts’i V;PRF;SG;2;PRS
ni²-ñä mí niñä V;IPFV;SG;3;PST
ho²ka²-ngu¹² xkí hokangu V;PRF;2;PST
hẹ²t’i bi hyẹt’i V;PFV;SG;3
t’i²st’i xki t’ist’i V;PRF;3;PST
njuats’i dá njuats’i V;PFV;SG;1
hua²n-t’ä¹²hä stí huant’ähä V;PRF;1;PST
ʔbẹ¹²di gi ʔbẹdi V;IRR;SG;2
kä²-do bi nkädo V;PFV;SG;3
xa²ti stí xati V;PRF;1;PST
fọ²ʔmi xkí fọʔmi V;PRF;2;PST
hñä²mbä-ndä mí hñämbändä V;IPFV;SG;3;PST
adi stí ʔadi V;PRF;1;PST
tix-fa¹²ni stá ntixfani V;PRF;SG;1;PRS
ẹt’i xki ʔyẹt’i V;PRF;3;PST
he¹²ni mí heni V;IPFV;SG;3;PST
ʔbẹ¹²ts’i xká ʔbẹts’i V;PRF;SG;2;PRS
gụni stá gụni V;PRF;SG;1;PRS
pist’i gí pist’i V;IPFV;SG;2;PRS
kä²-guu¹²i bi käguui V;PFV;SG;3
jụmpa²bi xki gụmpabi V;PRF;3;PST
pa¹²di stá padi V;PRF;SG;1;PRS
po²ʔtsi da poʔtsi V;IRR;SG;3
nk’o²xni mí nk’oxni V;IPFV;SG;3;PST
ʔyopi dá ʔyopi V;PFV;SG;1
mpi²di stí mpidi V;PRF;1;PST
ʔñe²t’a²-da¹²da ga ʔñet’adada V;IRR;SG;1
ga²t’i dá gat’i V;PFV;SG;1
ts’i²ʔmi xki ts’iʔmi V;PRF;3;PST
xont’i xa xont’i V;PRF;SG;3;PRS
tsọ¹²ge tsọge V;IPFV;SG;3;PRS
da¹²do bi dado V;PFV;SG;3
kụ¹²t’i kụt’i V;IPFV;SG;3;PRS
hä²ʔtsui mí häʔtsui V;IPFV;SG;3;PST
njo-ne xki njone V;PRF;3;PST
e² mbi¹²da gá ʔñëmbida V;PFV;SG;2
ọni xká ʔyọni V;PRF;SG;2;PRS
tho¹²ts’i xa thots’i V;PRF;SG;3;PRS
ta²ti dá tati V;PFV;SG;1
o¹²ti gí ʔoti V;IPFV;SG;2;PRS
dä²ʔs-thu¹²hu xki däʔsthuhu V;PRF;3;PST
hẹ²ka²-ndäpo ga nhyẹkandäpo V;IRR;SG;1
mpants’i ngí mpants’i V;IPFV;SG;2;PST
pọ²te dí pọte V;IPFV;SG;1;PRS
hmi¹²-nzụ xki hminzụ V;PRF;3;PST
ʔñu²di xa ʔñudi V;PRF;SG;3;PRS
bụ xki mbụ V;PRF;3;PST
juats’i xa juats’i V;PRF;SG;3;PRS
tsa¹² ga tsa V;IRR;SG;1
fụʔmi gá fụʔmi V;PFV;SG;2
ñäti xa ñäti V;PRF;SG;3;PRS
k’a¹²ts’i gá k’ats’i V;PFV;SG;2
nụ¹²-da xa nụda V;PRF;SG;3;PRS
neʔmi xki neʔmi V;PRF;3;PST
nzi²m-xu²di gí nzimxudi V;IPFV;SG;2;PRS
pẹ¹²hi pẹhi V;IPFV;SG;3;PRS
ʔuini mí ʔuini V;IPFV;SG;3;PST
hui²ʔtsi ndí huiʔtsi V;IPFV;SG;1;PST
ʔñọ²t’a²-da¹²da bi ʔñọt’adada V;PFV;SG;3
xọ²ʔtse ga xọʔtse V;IRR;SG;1
ʔra²-mbi ʔrambi V;IPFV;SG;3;PRS
ẹ²n-do da ʔñẹndo V;IRR;SG;3
ja²-mädi jamädi V;IPFV;SG;3;PRS
hu²m-ngọ bi ñhumngọ V;PFV;SG;3
xẹ¹²ni gí xẹni V;IPFV;SG;2;PRS
tsụ²ʔtsi ngí tsụʔtsi V;IPFV;SG;2;PST
k’ami da k’ami V;IRR;SG;3
họ²x-gi²ni gi nhyọxgini V;IRR;SG;2
nt’ọʔtse gi nt’ọʔtse V;IRR;SG;2
go²-gu da ngogu V;IRR;SG;3
thi¹²nt’i xa dint’i V;PRF;SG;3;PRS
neʔmi xkí neʔmi V;PRF;2;PST
tso²-mfe¹²ni gí tsomfeni V;IPFV;SG;2;PRS
ẹ²nts’a²-pa ga ʔñẹnts’apa V;IRR;SG;1
tu²ʔti xkí tuʔti V;PRF;2;PST
ju²ti stá juti V;PRF;SG;1;PRS
thi¹²nt’i mí thint’i V;IPFV;SG;3;PST
nkä¹²-xuui xkí nkäxuui V;PRF;2;PST
ha²x-mahai gá hyaxmahai V;PFV;SG;2
hu²ʔmbi ga hüʔmbi V;IRR;SG;1
nxändi xká nxändi V;PRF;SG;2;PRS
ts’a²tsi bi ts’atsi V;PFV;SG;3
tsụ²ti gá tsụti V;PFV;SG;2
thi²ʔtsi xká nthiʔtsi V;PRF;SG;2;PRS
hñeni xká hñeni V;PRF;SG;2;PRS
ndä-ne xki ndäne V;PRF;3;PST
hẹgi gá hyẹgi V;PFV;SG;2
xa¹²xi gí xaxi V;IPFV;SG;2;PRS
ʔñụ²t’i xká ʔñụt’i V;PRF;SG;2;PRS
ʔyo²-mfọ gá ʔñomfọ V;PFV;SG;2
te¹²hmi da tehmi V;IRR;SG;3
ẹts’i xa ʔyẹts’i V;PRF;SG;3;PRS
zo²ni da zoni V;IRR;SG;3
e¹²nä xa ʔñëna V;PRF;SG;3;PRS
pu²ni xa puni V;PRF;SG;3;PRS
thụ²ni xki thụni V;PRF;3;PST
jua¹²ti dí juati V;IPFV;SG;1;PRS
pụ¹²nt’i xa pụnt’i V;PRF;SG;3;PRS
thuui ga thuui V;IRR;SG;1
xẹʔtsi dá xẹʔtsi V;PFV;SG;1
piʔti mí piʔti V;IPFV;SG;3;PST
mfa²nt’i gi mfant’i V;IRR;SG;2
ndä¹²ngi ndängi V;IPFV;SG;3;PRS
ʔra²-mbi mí ʔrambi V;IPFV;SG;3;PST
nzäi gí nzäi V;IPFV;SG;2;PRS
nlo²chi stí nlochi V;PRF;1;PST
xọni xká xọni V;PRF;SG;2;PRS
mbu¹²-xa mbuxa V;IPFV;SG;3;PRS
tẹ¹²hẹ ga tẹhẹ V;IRR;SG;1
ʔña²ni mí ʔñani V;IPFV;SG;3;PST
mu¹²-ndo mundo V;IPFV;SG;3;PRS
ueʔte bi ueʔte V;PFV;SG;3
ts’ä¹² ga ts’ä V;IRR;SG;1
hñẹ²ni bi hñẹni V;PFV;SG;3
hu²-jua mí hüjua V;IPFV;SG;3;PST
hñohwi gí hñohwi V;IPFV;SG;2;PRS
eni stí ʔeni V;PRF;1;PST
te¹²ge xa dege V;PRF;SG;3;PRS
mo²ʔtsi da moʔtsi V;IRR;SG;3
mpẹ¹²hni ga mpẹhni V;IRR;SG;1
mu¹²-ndo xkí mundo V;PRF;2;PST
nxu²t’i ga nxut’i V;IRR;SG;1
tho²hni dá thohni V;PFV;SG;1
ñu²ni dí ñuni V;IPFV;SG;1;PRS
xi²ʔtsi xa xiʔtsi V;PRF;SG;3;PRS
he²ts’e hets’e V;IPFV;SG;3;PRS
tsọ²họ gi tsọhọ V;IRR;SG;2
be²ntya ga bentya V;IRR;SG;1
ẹ²te bi ʔñẹte V;PFV;SG;3
jụʔtsi mí jụʔtsi V;IPFV;SG;3;PST
ẹ²n-sagi xki ʔñẹnsagi V;PRF;3;PST
bụ¹²lo gi bụlo V;IRR;SG;2
jụt’i ngí jụt’i V;IPFV;SG;2;PST
nsa²-ya stá nsaya V;PRF;SG;1;PRS
pi²ʔmi xki piʔmi V;PRF;3;PST
uä²fri gá uäfri V;PFV;SG;2
häi gi hñäi V;IRR;SG;2
pe²x-ʔyo pexʔyo V;IPFV;SG;3;PRS
ʔba²-ne ndí ʔbane V;IPFV;SG;1;PST
ñä¹²hi xa ñähi V;PRF;SG;3;PRS
te²-tho stá ntetho V;PRF;SG;1;PRS
ko²t’a²-fa²di stí kot’afadi V;PRF;1;PST
pẹ²-snä xa pẹsnä V;PRF;SG;3;PRS
fụ²t’i gí fụt’i V;IPFV;SG;2;PRS
ja¹²-bätsi da jabätsi V;IRR;SG;3
saʔtsi xkí saʔtsi V;PRF;2;PST
ma²m-ts’oni xká mamts’oni V;PRF;SG;2;PRS
tä¹²hä ngí tähä V;IPFV;SG;2;PST
pä²hä ndí pähä V;IPFV;SG;1;PST
jo²-hya bi johya V;PFV;SG;3
ʔra²ʔmi xa ʔraʔmi V;PRF;SG;3;PRS
kue¹²te mí kuete V;IPFV;SG;3;PST
ẹ²n-sagi ga ʔñẹnsagi V;IRR;SG;1
ntu¹²ti gi ntuti V;IRR;SG;2
huä¹²ki dá huäki V;PFV;SG;1
ʔuaki stí ʔuaki V;PRF;1;PST
zo²n-da xki nzonda V;PRF;3;PST
mfọ²xni mí mfọxni V;IPFV;SG;3;PST
tẹ¹²xi mí tẹxi V;IPFV;SG;3;PST
hña²xni stí hñaxni V;PRF;1;PST
ga²ni xká ngani V;PRF;SG;2;PRS
ʔbẹ²bo xkí ʔmẹbo V;PRF;2;PST
me¹²p-ya ga mepya V;IRR;SG;1
pe²nxi xa penxi V;PRF;SG;3;PRS
tsẹ²ʔmi ngí tsẹʔmi V;IPFV;SG;2;PST
dä¹²-hmyä ndí dähmyä V;IPFV;SG;1;PST
ʔba²ʔti ʔbaʔti V;IPFV;SG;3;PRS
hmi²-bojä¹² gi hmibojä V;IRR;SG;2
tho²ʔtsi gí thoʔtsi V;IPFV;SG;2;PRS
ʔui²-thä ʔuïthä V;IPFV;SG;3;PRS
nu²-mxa stí numxa V;PRF;1;PST
tụ²ʔtsi xká tụʔtsi V;PRF;SG;2;PRS
ʔñọt’e dá ʔñọt’e V;PFV;SG;1
ju²x-huä¹²hi dá juxhuähi V;PFV;SG;1
fẹʔmi mí fẹʔmi V;IPFV;SG;3;PST
tä¹²hä dá tähä V;PFV;SG;1
nge¹²-ne gi ngene V;IRR;SG;2
fẹi xkí fẹi V;PRF;2;PST
u¹²ts’i xa ʔyuts’i V;PRF;SG;3;PRS
the¹²ts’i stí thets’i V;PRF;1;PST
hu²di dá hüdi V;PFV;SG;1
mpu²mbi gi mpumbi V;IRR;SG;2
yaʔm-tho dá yaʔmtho V;PFV;SG;1
ts’a¹²ti ndí ts’ati V;IPFV;SG;1;PST
nkät’i stí nkät’i V;PRF;1;PST
fẹʔmi dá fẹʔmi V;PFV;SG;1
yaʔm-tho stí yaʔmtho V;PRF;1;PST
tsẹ²ki mí tsẹki V;IPFV;SG;3;PST
hwät’i hwät’i V;IPFV;SG;3;PRS
nthọ²ge bi nthọge V;PFV;SG;3
he²he hehe V;IPFV;SG;3;PRS
ọt’a²-hu¹²di xa ʔyọt’ahudi V;PRF;SG;3;PRS
nọ²xke stá nọxke V;PRF;SG;1;PRS
ät’i mí ʔät’i V;IPFV;SG;3;PST
xä¹²ʔkui xki xäʔkui V;PRF;3;PST
fani dá fani V;PFV;SG;1
hñu²ts’i da hñuts’i V;IRR;SG;3
tso¹²ts’i xká tsots’i V;PRF;SG;2;PRS
hant-hyä ngí hanthyä V;IPFV;SG;2;PST
ʔyo²-mfọ stí ʔñomfọ V;PRF;1;PST
pẹ¹²ti stá pẹti V;PRF;SG;1;PRS
fo-do stí fodo V;PRF;1;PST
mpa¹²di mí mpadi V;IPFV;SG;3;PST
xa²s-te ndí xaste V;IPFV;SG;1;PST
tsọ²họ mí tsọhọ V;IPFV;SG;3;PST
ntso¹²ts’i dí ntsots’i V;IPFV;SG;1;PRS
mfa²nt’a²-ñä mí mfant’añä V;IPFV;SG;3;PST
hụ²ki da hụki V;IRR;SG;3
njụts’i dá njụts’i V;PFV;SG;1
ʔyọ²ke mí ʔyọke V;IPFV;SG;3;PST
be¹²t’e ngí bet’e V;IPFV;SG;2;PST
ñä¹²hi xkí ñähi V;PRF;2;PST
gunt’i ngí gunt’i V;IPFV;SG;2;PST
hñeni da hñeni V;IRR;SG;3
poki xki poki V;PRF;3;PST
ụ²-ʔta dí ʔụʔta V;IPFV;SG;1;PRS
fidi ngí fidi V;IPFV;SG;2;PST
zọ¹² da zọ V;IRR;SG;3
ntsu²ni ntsuni V;IPFV;SG;3;PRS
nlẹngu ngí nlẹngu V;IPFV;SG;2;PST
fati fati V;IPFV;SG;3;PRS
mbọ¹²-kuẹ bi mbọkuẹ V;PFV;SG;3
hẹ²t’i mí hẹt’i V;IPFV;SG;3;PST
u²di ga ʔudi V;IRR;SG;1
u²ni ga ʔuni V;IRR;SG;1
ntụtua-ʔri²hi gí ntụtuaʔrihi V;IPFV;SG;2;PRS
yo-ñä¹²hi yoñähi V;IPFV;SG;3;PRS
ʔmẹ¹²ts’i xa ʔmẹts’i V;PRF;SG;3;PRS
hura²-mụi ga huramụi V;IRR;SG;1
ats’i bi ʔats’i V;PFV;SG;3
ʔbẹki stá ʔbẹki V;PRF;SG;1;PRS
o²ʔtsi gá ʔyoʔtsi V;PFV;SG;2
hnohwi bi hnohwi V;PFV;SG;3
ʔyo²-mxu²di bi ʔñomxudi V;PFV;SG;3
fẹʔtsi fẹʔtsi V;IPFV;SG;3;PRS
njo-zụ njozụ V;IPFV;SG;3;PRS
te stí te V;PRF;1;PST
te¹²de xkí tede V;PRF;2;PST
dän-tsu xká däntsu V;PRF;SG;2;PRS
ntsọʔmi xká ntsọʔmi V;PRF;SG;2;PRS
nọ²xke dí nọxke V;IPFV;SG;1;PRS
hụ²ki xki hụki V;PRF;3;PST
ʔuäts’i gí ʔuäts’i V;IPFV;SG;2;PRS
ʔñụ²ʔti da ʔñụʔti V;IRR;SG;3
ẹt’i gí ʔẹt’i V;IPFV;SG;2;PRS
hmät’i da hmät’i V;IRR;SG;3
aʔmi dí ʔaʔmi V;IPFV;SG;1;PRS
tsa²-te tsate V;IPFV;SG;3;PRS
bo¹²st’i ndí bost’i V;IPFV;SG;1;PST
e¹²n-sẹ gí ʔensẹ V;IPFV;SG;2;PRS
ʔui² xkí ʔuï V;PRF;2;PST
mä²-te xkí mäte V;PRF;2;PST
xo²ʔtsi dí xoʔtsi V;IPFV;SG;1;PRS
fọm-ts’oni ga fọmts’oni V;IRR;SG;1
yoto xki nyoto V;PRF;3;PST
fụ²ki ga fụki V;IRR;SG;1
họ²-ndgu xká nhyọndgu V;PRF;SG;2;PRS
fẹʔmi gi fẹʔmi V;IRR;SG;2
ʔbaʔmi xa ʔbaʔmi V;PRF;SG;3;PRS
tso²-mfe¹²ni stá tsomfeni V;PRF;SG;1;PRS
hña²hni gá hñahni V;PFV;SG;2
ntọ²ʔtse gá ntọʔtse V;PFV;SG;2
xa¹²xi xa xaxi V;PRF;SG;3;PRS
pe gá pe V;PFV;SG;2
tsa²ʔni ngí tsaʔni V;IPFV;SG;2;PST
ʔragi mí ʔragi V;IPFV;SG;3;PST
yụnt’i ndí yụnt’i V;IPFV;SG;1;PST
xats’i da xats’i V;IRR;SG;3
nts’oki gí nts’oki V;IPFV;SG;2;PRS
tọ²ʔmi gi tọʔmi V;IRR;SG;2
ts’aki xká ts’aki V;PRF;SG;2;PRS
jat’i gi jat’i V;IRR;SG;2
pụ²xki xkí pụxki V;PRF;2;PST
kụ¹²xki stá kụxki V;PRF;SG;1;PRS
thä¹²st’i xká thäst’i V;PRF;SG;2;PRS
ya¹²ʔtsi xki yaʔtsi V;PRF;3;PST
zo²hni xa zohni V;PRF;SG;3;PRS
pẹ²m-ʔyo ngí pẹmʔyo V;IPFV;SG;2;PST
mbu²ku xki mbuku V;PRF;3;PST
the²n-the ngí thenthe V;IPFV;SG;2;PST
ụ¹²ni gí ʔụni V;IPFV;SG;2;PRS
hño¹²ga²-jäʔi stí hñogajäʔi V;PRF;1;PST
xiʔtsi dá xiʔtsi V;PFV;SG;1
huʔtsi bi hñüʔtsi V;PFV;SG;3
xọ²ʔte xki xọʔte V;PRF;3;PST
hän-guẹ²nda xa hänguẹnda V;PRF;SG;3;PRS
bụ¹²ni bụni V;IPFV;SG;3;PRS
ʔra gi ʔra V;IRR;SG;2
nani ga nani V;IRR;SG;1
ñat’i ga ñat’i V;IRR;SG;1
sụ²ʔti gá sụʔti V;PFV;SG;2
zo²hni xki zohni V;PRF;3;PST
k’ụ²gi gi k’ụgi V;IRR;SG;2
ntsä²t’i ga ntsät’i V;IRR;SG;1
yo-ñä¹²hi dá yoñähi V;PFV;SG;1
dä¹²nts’i gá dänts’i V;PFV;SG;2
zo²ni gá zoni V;PFV;SG;2
ue²n-ga²hai da uengahai V;IRR;SG;3
xụ²-ñä gi xụñä V;IRR;SG;2
nk’o²xni gá nk’oxni V;PFV;SG;2
nthẹ-xui dí nthẹxui V;IPFV;SG;1;PRS
jụki gi jụki V;IRR;SG;2
e²ʔtsi stá ʔëʔtsi V;PRF;SG;1;PRS
dä²hñei ga ndähñe V;IRR;SG;1
ʔñani ga ʔñani V;IRR;SG;1
pumfri ga pumfri V;IRR;SG;1
fọ²mä²-te ndí fọmäte V;IPFV;SG;1;PST
hñu²ts’i hñuts’i V;IPFV;SG;3;PRS
hẹ¹²ni stá hẹni V;PRF;SG;1;PRS
hñat’ui dí hñat’ui V;IPFV;SG;1;PRS
e¹²ni ʔeni V;IPFV;SG;3;PRS
bu²hla xká buhla V;PRF;SG;2;PRS
u¹²di xkí ʔñüdi V;PRF;2;PST
pä¹²di gi pädi V;IRR;SG;2
hñä-nguẹ¹²nda bi hñänguẹnda V;PFV;SG;3
the²n-the mí thenthe V;IPFV;SG;3;PST
o²k-jä dí ʔokjä V;IPFV;SG;1;PRS
po²gi xki pogi V;PRF;3;PST
ọ²ke ngí ʔọke V;IPFV;SG;2;PST
ndu²s-te xki nduste V;PRF;3;PST
nda²ki ndaki V;IPFV;SG;3;PRS
jua²ti dí juati V;IPFV;SG;1;PRS
ʔbat’i dá ʔbat’i V;PFV;SG;1
nsụ²ʔti bi nsụʔti V;PFV;SG;3
hña²t’i xa hñat’i V;PRF;SG;3;PRS
pẹ² dá pẹ V;PFV;SG;1
saki ndí saki V;IPFV;SG;1;PST
yo-kụni gi yokụni V;IRR;SG;2
k’a²t’i xkí k’at’i V;PRF;2;PST
tsä¹²ni gá tsäni V;PFV;SG;2
nọ¹²ge ngí nọge V;IPFV;SG;2;PST
tụ¹²ngi ndí tụngi V;IPFV;SG;1;PST
te¹²st’i gí test’i V;IPFV;SG;2;PRS
hẹgi gi hyẹgi V;IRR;SG;2
kä²-do dí kädo V;IPFV;SG;1;PRS
zẹdi xká zẹdi V;PRF;SG;2;PRS
o²-tho mí ʔotho V;IPFV;SG;3;PST
ụ²t’i xkí ʔyụt’i V;PRF;2;PST
hña²t’i xká hñat’i V;PRF;SG;2;PRS
ụ¹²ts’i ga ʔụts’i V;IRR;SG;1
ʔyo²ʔmä²-ʔñu¹² gi ʔyoʔmäʔñu V;IRR;SG;2
fụ²gi stá fụgi V;PRF;SG;1;PRS
kụ²i kụi V;IPFV;SG;3;PRS
a²xa²-hai bi ʔaxahai V;PFV;SG;3
ja¹-²mäsu ndí jamäsu V;IPFV;SG;1;PST
nxändi stá nxändi V;PRF;SG;1;PRS
pẹ¹²ts’i bi pẹts’i V;PFV;SG;3
thä²nts’i xkí thänts’i V;PRF;2;PST
thä¹²ʔtsi xkí thäʔtsi V;PRF;2;PST
ʔnra²nxu gá ʔnranxu V;PFV;SG;2
u¹²ts’i stí ʔuts’i V;PRF;1;PST
be²ñʔä-juä¹² xká beñʔäjuä V;PRF;SG;2;PRS
thoʔti xkí thoʔti V;PRF;2;PST
jat’i xa gat’i V;PRF;SG;3;PRS
ʔñatua-t’afi ʔñatuat’afi V;IPFV;SG;3;PRS
ʔbụki ʔbụki V;IPFV;SG;3;PRS
ñä²ki da ñäki V;IRR;SG;3
ʔba²i mí ʔbai V;IPFV;SG;3;PST
hẹgi bi hyẹgi V;PFV;SG;3
he²ʔtsi xká heʔtsi V;PRF;SG;2;PRS
ti²ʔti mí tiʔti V;IPFV;SG;3;PST
mbätsi gi mbätsi V;IRR;SG;2
ʔñẹnts’i dá ʔñẹnts’i V;PFV;SG;1
ʔñedi xká ʔñedi V;PRF;SG;2;PRS
ʔua²m-t’ä¹²hä dá ʔuamt’ähä V;PFV;SG;1
ʔñohni xki ʔñohni V;PRF;3;PST
ʔmẹ²ha ndí ʔmẹha V;IPFV;SG;1;PST
net’i da net’i V;IRR;SG;3
xo²gi mí xogi V;IPFV;SG;3;PST
ndẹ¹²t’i stá ndẹt’i V;PRF;SG;1;PRS
dụ²hụ dụhụ V;IPFV;SG;3;PRS
gant’i da gant’i V;IRR;SG;3
a²ʔ-thä xa ʔñaʔthä V;PRF;SG;3;PRS
bụ-do gá bụdo V;PFV;SG;2
nzo¹²-ñä gi nzoñä V;IRR;SG;2
tsẹ²t’i gí tsẹt’i V;IPFV;SG;2;PRS
pẹ²xni xká pẹxni V;PRF;SG;2;PRS
nes-t’i¹²hi xkí nest’ihi V;PRF;2;PST
ʔbẹgo xkí ʔbẹgo V;PRF;2;PST
k’äni gi k’äni V;IRR;SG;2
ʔba²-ne dí ʔbane V;IPFV;SG;1;PRS
hu²-ʔuada xká ñhüʔuada V;PRF;SG;2;PRS
ndämba-ʔyẹ xa ndämbaʔyẹ V;PRF;SG;3;PRS
tsa ga tsa V;IRR;SG;1
xuʔti xuʔti V;IPFV;SG;3;PRS
jụt’i ndí jụt’i V;IPFV;SG;1;PST
xe²hai ndí xehai V;IPFV;SG;1;PST
ʔbẹ¹²-tho ndí ʔbẹtho V;IPFV;SG;1;PST
tẹ¹²-do tẹdo V;IPFV;SG;3;PRS
sụ¹²ni gi sụni V;IRR;SG;2
ti¹²ti xa titi V;PRF;SG;3;PRS
ʔñụ²-tsa gí ʔñụtsa V;IPFV;SG;2;PRS
re²pe²la gá repela V;PFV;SG;2
ntsọʔmi xa ntsọʔmi V;PRF;SG;3;PRS
pa stá ma V;PRF;SG;1;PRS
k’ua²st’i bi k’uast’i V;PFV;SG;3
juä²ni xká juäni V;PRF;SG;2;PRS
ʔña¹²ni xki ʔñani V;PRF;3;PST
a²k-sei ʔaksei V;IPFV;SG;3;PRS
fo¹²st’e ngí fost’e V;IPFV;SG;2;PST
ʔmẹ-mpi¹²ts’i da ʔmẹmpits’i V;IRR;SG;3
thẹki stí thẹki V;PRF;1;PST
hño²ki dí hñoki V;IPFV;SG;1;PRS
bo¹²st’i stí bost’i V;PRF;1;PST
nxu²ni ngí nxuni V;IPFV;SG;2;PST
pä²nts’a²-hai xa pänts’ahai V;PRF;SG;3;PRS
ʔuet’i mí ʔuët’i V;IPFV;SG;3;PST
thẹti xki thẹti V;PRF;3;PST
tsu¹²st’i stí tsust’i V;PRF;1;PST
ta²n-the dí tanthe V;IPFV;SG;1;PRS
a²yu²nä ga ʔayunä V;IRR;SG;1
tsiki ndí tsiki V;IPFV;SG;1;PST
ue²n-t’ẹi da uent’ẹi V;IRR;SG;3
hä¹²mpi dí hämpi V;IPFV;SG;1;PRS
uä²fri bi uäfri V;PFV;SG;3
tọ¹²ge stá tọge V;PRF;SG;1;PRS
ño²gi xki ñogi V;PRF;3;PST
dä²xi xki däxi V;PRF;3;PST
jụki ngí jụki V;IPFV;SG;2;PST
ndẹ¹² ngí ndẹ V;IPFV;SG;2;PST
ʔñụ²t’-uẹndaui bi ʔñụt’uẹndaui V;PFV;SG;3
ts’änt’i xa ts’änt’i V;PRF;SG;3;PRS
mfẹ²t’i xki mfẹt’i V;PRF;3;PST
fọ²ke stá fọke V;PRF;SG;1;PRS
huts’i stá hüts’i V;PRF;SG;1;PRS
ʔuet’i ga ʔuët’i V;IRR;SG;1
tsiki gi tsiki V;IRR;SG;2
thẹts’i gá thẹts’i V;PFV;SG;2
jụ¹² dá jụ V;PFV;SG;1
kadi xká kadi V;PRF;SG;2;PRS
k’ont’i mí k’ont’i V;IPFV;SG;3;PST
k’agi xa k’agi V;PRF;SG;3;PRS
nthät’i stí nthät’i V;PRF;1;PST
pẹ²-ʔñäi ngí pẹʔñäi V;IPFV;SG;2;PST
ñu²ni stá ñuni V;PRF;SG;1;PRS
pụ²ʔhmi pụʔhmi V;IPFV;SG;3;PRS
tsụ²mʔi ndí tsụmʔi V;IPFV;SG;1;PST
ʔuẹʔmi xkí ʔuẹʔmi V;PRF;2;PST
nụ¹²-da stí nụda V;PRF;1;PST
ẹ²nte da ʔñẹnte V;IRR;SG;3
xani stí xani V;PRF;1;PST
nzo²hni mí nzohni V;IPFV;SG;3;PST
nga¹²nts’i bi ngants’i V;PFV;SG;3
ko¹²ts’i ngí kots’i V;IPFV;SG;2;PST
nguent’i xa nguent’i V;PRF;SG;3;PRS
ndo¹²di da ndodi V;IRR;SG;3
njo¹²ni ndí njoni V;IPFV;SG;1;PST
kụi stá kụi V;PRF;SG;1;PRS
ga²-ʔnthä xki ngaʔnthä V;PRF;3;PST
nxu²t’i stí nxut’i V;PRF;1;PST
ʔuäts’i bi ʔuäts’i V;PFV;SG;3
te²-tho xki ntetho V;PRF;3;PST
ntsu ngí ntsu V;IPFV;SG;2;PST
hñu¹² hñu V;IPFV;SG;3;PRS
be¹²t’e gí bet’e V;IPFV;SG;2;PRS
xọni bi xọni V;PFV;SG;3
ʔue²ge dí ʔuege V;IPFV;SG;1;PRS
nthẹ-xu²di gá nthẹxudi V;PFV;SG;2
nthẹ-ji² xa nthẹji V;PRF;SG;3;PRS
tẹ²t’i stá tẹt’i V;PRF;SG;1;PRS
huʔtsi ndí hüʔtsi V;IPFV;SG;1;PST
k’ua²t’i dí k’uat’i V;IPFV;SG;1;PRS
mpu²mbi mí mpumbi V;IPFV;SG;3;PST
ko²t’i ndí kot’i V;IPFV;SG;1;PST
ho²-ʔyo bi nhyoʔyo V;PFV;SG;3
pa¹²di bi padi V;PFV;SG;3
kä²-do xa nkädo V;PRF;SG;3;PRS
xa²ha xa xaha V;PRF;SG;3;PRS
nsa²-ya dí nsaya V;IPFV;SG;1;PRS
nkụi dá nkụi V;PFV;SG;1
ntsa¹²p-ts’ẹdi mí ntsapts’ẹdi V;IPFV;SG;3;PST
ñu¹²nt’i mí ñunt’i V;IPFV;SG;3;PST
toʔmi xkí toʔmi V;PRF;2;PST
xẹʔtsi xká xẹʔtsi V;PRF;SG;2;PRS
ʔyo²ʔmä²-ʔñu¹² ʔyoʔmäʔñu V;IPFV;SG;3;PRS
ñä²-te gá ñäte V;PFV;SG;2
tsi¹² tsi V;IPFV;SG;3;PRS
kọ¹²st’e kọst’e V;IPFV;SG;3;PRS
fụi gá fụi V;PFV;SG;2
t’i²ki stí t’iki V;PRF;1;PST
ä¹²xi mí ʔäxi V;IPFV;SG;3;PST
ga²ʔtsi xki gaʔtsi V;PRF;3;PST
hui¹²st’i da huist’i V;IRR;SG;3
pẹ²t-jụ¹²ni stí pẹtjụni V;PRF;1;PST
nda²n-gua xa ndangua V;PRF;SG;3;PRS
hya²ʔnga dí hyaʔnga V;IPFV;SG;1;PRS
a gí ʔa V;IPFV;SG;2;PRS
joki stí joki V;PRF;1;PST
thụ²ni gá thụni V;PFV;SG;2
hu²-hme ngí hühme V;IPFV;SG;2;PST
zi²thu mí zithu V;IPFV;SG;3;PST
tsiki xki tsiki V;PRF;3;PST
ndeki ndí ndeki V;IPFV;SG;1;PST
uä²hi xkí uähi V;PRF;2;PST
ntsa gá ntsa V;PFV;SG;2
bo²la bola V;IPFV;SG;3;PRS
thont’i bi dont’i V;PFV;SG;3
xu²mi mí xumi V;IPFV;SG;3;PST
hu²-nä²ni dí hünäni V;IPFV;SG;1;PRS
tsi²-ʔyụi stí ntsiʔyụi V;PRF;1;PST
ndẹ¹²t’i mí ndẹt’i V;IPFV;SG;3;PST
tsọ¹²ge bi tsọge V;PFV;SG;3
ʔyo¹²ni stí ʔyoni V;PRF;1;PST
ho ndí ho V;IPFV;SG;1;PST
nthäti bi nthäti V;PFV;SG;3
hẹ²n-za ndí hẹnza V;IPFV;SG;1;PST
ka¹²-k’yẹ ngí kak’yẹ V;IPFV;SG;2;PST
họ xki hyọ V;PRF;3;PST
ä²t’i ndí ʔät’i V;IPFV;SG;1;PST
ʔbẹpi ngí ʔbẹpi V;IPFV;SG;2;PST
hua²n-t’ä¹²hä ndí huant’ähä V;IPFV;SG;1;PST
k’ẹ dí k’ẹ V;IPFV;SG;1;PRS
hä¹²ni stí häni V;PRF;1;PST
do²-mbi xki dombi V;PRF;3;PST
jụi stá jụi V;PRF;SG;1;PRS
hi mí hi V;IPFV;SG;3;PST
ʔbẹ²t’i gá ʔbẹt’i V;PFV;SG;2
a²k-sei bi ʔñaksei V;PFV;SG;3
hẹ²ʔtsi bi hyẹʔtsi V;PFV;SG;3
mämbi xká mämbi V;PRF;SG;2;PRS
xụ²hmi stá xụhmi V;PRF;SG;1;PRS
nụ²ʔti stí nụʔti V;PRF;1;PST
ẹ-ʔuada dá ʔñẹʔuada V;PFV;SG;1
fonts’i gi fonts’i V;IRR;SG;2
ja¹²-hme ngí jahme V;IPFV;SG;2;PST
nkụ²ʔmi gá nkụʔmi V;PFV;SG;2
ụʔti xká ʔyụʔti V;PRF;SG;2;PRS
xọ²ʔhmi xki xọʔhmi V;PRF;3;PST
hyo²-ya ga nhyoya V;IRR;SG;1
sụ²ʔti mí sụʔti V;IPFV;SG;3;PST
fụ¹²n-gui ngí fụngui V;IPFV;SG;2;PST
ʔba²-sẹ stí ʔbasẹ V;PRF;1;PST
ts’i xkí ts’i V;PRF;2;PST
ts’i²ʔmi ts’iʔmi V;IPFV;SG;3;PRS
hụ¹²fi stí hụfi V;PRF;1;PST
nthẹ-xui da nthẹxui V;IRR;SG;3
ʔuẹ¹²ti ga ʔuẹti V;IRR;SG;1
tsi²-ʔyụi gí tsiʔyụi V;IPFV;SG;2;PRS
hwäʔmbi xká hwäʔmbi V;PRF;SG;2;PRS
bo¹²x-jua bi boxjua V;PFV;SG;3
bo¹²st’i mí bost’i V;IPFV;SG;3;PST
fọts’e xa mọts’e V;PRF;SG;3;PRS
ʔñu²n-the gá ʔñunthe V;PFV;SG;2
pọ¹²ts’e ngí pọts’e V;IPFV;SG;2;PST
zụ²ni da zụni V;IRR;SG;3
pumfri gi pumfri V;IRR;SG;2
xe²hai xehai V;IPFV;SG;3;PRS
ñä¹²ni stí ñäni V;PRF;1;PST
a²fi stí ʔñafi V;PRF;1;PST
oki xkí ʔoki V;PRF;2;PST
mo²t’i mí mot’i V;IPFV;SG;3;PST
tsa²ʔni mí tsaʔni V;IPFV;SG;3;PST
koʔtsi dá koʔtsi V;PFV;SG;1
ta²ka²-te dá takate V;PFV;SG;1
nxu²ni nxuni V;IPFV;SG;3;PRS
ne¹²hi nehi V;IPFV;SG;3;PRS
mpants’i xki mpants’i V;PRF;3;PST
xuni xki xuni V;PRF;3;PST
ọte mí ʔọte V;IPFV;SG;3;PST
tsọ¹²ge stí tsọge V;PRF;1;PST
pẹ¹²ʔtsi ndí pẹʔtsi V;IPFV;SG;1;PST
pä²nts’a²-hai xki pänts’ahai V;PRF;3;PST
ntsi¹²ts’i dá ntsits’i V;PFV;SG;1
ño¹²h-wi xká ñohwi V;PRF;SG;2;PRS
ʔmẹ²ha stá ʔmẹha V;PRF;SG;1;PRS
he¹² ga hë V;IRR;SG;1
ko¹²ts’i xkí kots’i V;PRF;2;PST
bẹ¹²xo xa bẹxo V;PRF;SG;3;PRS
hño¹²ga²-ñʔọde hñogañʔọde V;IPFV;SG;3;PRS
nu²hu mí nuhu V;IPFV;SG;3;PST
mfe²ʔtse xká mfeʔtse V;PRF;SG;2;PRS
kuui ndí kuui V;IPFV;SG;1;PST
fụ²ni stá fụni V;PRF;SG;1;PRS
ua²ʔti uaʔti V;IPFV;SG;3;PRS
ntẹ²ni xká ntẹni V;PRF;SG;2;PRS
t’i²gi da t’igi V;IRR;SG;3
nsemä-he¹² gí nsemähe V;IPFV;SG;2;PRS
tọ¹²ge ngí tọge V;IPFV;SG;2;PST
gä²ʔtsi ngí gäʔtsi V;IPFV;SG;2;PST
pọ²ʔte gí pọʔte V;IPFV;SG;2;PRS
pẹi gí pẹi V;IPFV;SG;2;PRS
neki ndí neki V;IPFV;SG;1;PST
mban-ji²-tho ndí mbanjitho V;IPFV;SG;1;PST
net’i xki net’i V;PRF;3;PST
pa¹²di dá padi V;PFV;SG;1
pẹpi da pẹpi V;IRR;SG;3
ụ²-ʔta gí ʔụʔta V;IPFV;SG;2;PRS
tai xa dai V;PRF;SG;3;PRS
ʔñä²xi ga ʔñäxi V;IRR;SG;1
huä¹²ki xki huäki V;PRF;3;PST
ha²-ne dá nhyane V;PFV;SG;1
ko¹²st’i ngí kost’i V;IPFV;SG;2;PST
ue²n-ga²nza¹²ya da uenganzaya V;IRR;SG;3
nxa²n-the ga nxanthe V;IRR;SG;1
jo²-hya mí johya V;IPFV;SG;3;PST
uä²hi da uähi V;IRR;SG;3
i²nga²-du²tu ʔingadutu V;IPFV;SG;3;PRS
k’o²ʔmi xa k’oʔmi V;PRF;SG;3;PRS
hest’i ngí hëst’i V;IPFV;SG;2;PST
yat’i gí yat’i V;IPFV;SG;2;PRS
pụ²t’i dá pụt’i V;PFV;SG;1
fo¹²ki gí foki V;IPFV;SG;2;PRS
re²sga xki resga V;PRF;3;PST
ʔro²t’i xa ʔrot’i V;PRF;SG;3;PRS
ga²ni gani V;IPFV;SG;3;PRS
jue²ni xa jueni V;PRF;SG;3;PRS
a²ʔ-thä stí ʔñaʔthä V;PRF;1;PST
nxo¹²ts’i mí nxots’i V;IPFV;SG;3;PST
mfa²ʔtsi mí mfaʔtsi V;IPFV;SG;3;PST
do²-mbi xa dombi V;PRF;SG;3;PRS
jụ¹² mí jụ V;IPFV;SG;3;PST
tä¹²n-k’a²hni da tänk’ahni V;IRR;SG;3
tsẹ²ka²-za¹² ngí tsẹkaza V;IPFV;SG;2;PST
kụi da gụi V;IRR;SG;3
o-fa²di stá ʔñofadi V;PRF;SG;1;PRS
go²-gu ngí gogu V;IPFV;SG;2;PST
hahni stá hahni V;PRF;SG;1;PRS
pẹi dá pẹi V;PFV;SG;1
ñohmi dí ñohmi V;IPFV;SG;1;PRS
k’o²ʔti stá k’oʔti V;PRF;SG;1;PRS
ntụ¹²ni dí ntụni V;IPFV;SG;1;PRS
man-thä¹²hi xa manthähi V;PRF;SG;3;PRS
xụ²ki xụki V;IPFV;SG;3;PRS
mpẹ¹²nkui ga mpẹnkui V;IRR;SG;1
ja²pa²bi gá japabi V;PFV;SG;2
k’o mí k’o V;IPFV;SG;3;PST
ti¹²ti titi V;IPFV;SG;3;PRS
k’ẹ²ʔti mí k’ẹʔti V;IPFV;SG;3;PST
punt’i punt’i V;IPFV;SG;3;PRS
nat’i dá nat’i V;PFV;SG;1
nọ²ma²-ñʔụ stí nọmañʔụ V;PRF;1;PST
xä¹²kui ndí xäkui V;IPFV;SG;1;PST
fọ²ta²-te stá fọtate V;PRF;SG;1;PRS
ụi da ʔyụi V;IRR;SG;3
gu¹²st’i dá gust’i V;PFV;SG;1
a²ʔ-thä dá ʔñaʔthä V;PFV;SG;1
fọ²ge stá mfọge V;PRF;SG;1;PRS
ja¹²-hme gá jahme V;PFV;SG;2
ge² gë V;IPFV;SG;3;PRS
ʔyo²ʔmä²-ʔñu¹² xkí ʔyoʔmäʔñu V;PRF;2;PST
ʔmẹgo xkí ʔmẹgo V;PRF;2;PST
ʔbụ²-tho ga ʔbụtho V;IRR;SG;1
ʔyo²fri ndí ʔyofri V;IPFV;SG;1;PST
k’o²ʔmi mí k’oʔmi V;IPFV;SG;3;PST
yat’i mí yat’i V;IPFV;SG;3;PST
ọthe stí ʔọthe V;PRF;1;PST
a²-ma²ñʔụ mí ʔamañʔụ V;IPFV;SG;3;PST
ʔuẹ¹²ti ʔuẹti V;IPFV;SG;3;PRS
pọ²-hñä pọhñä V;IPFV;SG;3;PRS
ʔñẹt’i gi ʔñẹt’i V;IRR;SG;2
tẹ¹²t’i stá tẹt’i V;PRF;SG;1;PRS
xadi xkí nxadi V;PRF;2;PST
xo¹²fo gá xofo V;PFV;SG;2
ñä¹²ni ngí ñäni V;IPFV;SG;2;PST
ʔña¹²ki da ʔñaki V;IRR;SG;3
ʔba²ha ndí ʔbaha V;IPFV;SG;1;PST
xọ¹²ka²-mbe¹²ni dí xọkambeni V;IPFV;SG;1;PRS
tsụ²ti ga tsụti V;IRR;SG;1
ja-nguẹ¹²nda xká janguẹnda V;PRF;SG;2;PRS
xuni xuni V;IPFV;SG;3;PRS
ts’o²n-tho bi ts’ontho V;PFV;SG;3
ʔña²ʔmi ngí ʔñaʔmi V;IPFV;SG;2;PST
gunt’i bi gunt’i V;PFV;SG;3
nkä²-dẹ²ti mí nkädẹti V;IPFV;SG;3;PST
nọni xki nọni V;PRF;3;PST
ẹ²nts’a²-te xká ʔñẹnts’ate V;PRF;SG;2;PRS
hwifi xká hwifi V;PRF;SG;2;PRS
mfọta-bọznä mfọtabọznä V;IPFV;SG;3;PRS
he²t’i xkí hñët’i V;PRF;2;PST
họ²t’a²-go²gu xa họt’agogu V;PRF;SG;3;PRS
ʔñẹt’i gá ʔñẹt’i V;PFV;SG;2
tsabi bi zabi V;PFV;SG;3
fo¹²st’e dá fost’e V;PFV;SG;1
njoʔtua-ne dá njoʔtuane V;PFV;SG;1
pẹ²ts’i¹²-nts’ụ stí pẹts’ints’ụ V;PRF;1;PST
mpụ¹²nga²-mẹfi gí mpụngamẹfi V;IPFV;SG;2;PRS
ko²pe²ra mí kopera V;IPFV;SG;3;PST
pe²-ʔnzä stí peʔnzä V;PRF;1;PST
tsẹ²ka²-za¹² xa ntsẹkaza V;PRF;SG;3;PRS
maʔti da maʔti V;IRR;SG;3
dọ²ʔnthi mí dọʔnthi V;IPFV;SG;3;PST
k’ui²st’i bi k’uist’i V;PFV;SG;3
pẹ²xni dí pẹxni V;IPFV;SG;1;PRS
nzäi xká nzäi V;PRF;SG;2;PRS
ne²te mí nete V;IPFV;SG;3;PST
pi²ki dá piki V;PFV;SG;1
ndo-ne stá ndone V;PRF;SG;1;PRS
pẹ¹²hni gá pẹhni V;PFV;SG;2
ọ²t’a²-ngo gi ʔñọt’ango V;IRR;SG;2
ä²hä da ʔñähä V;IRR;SG;3
e¹²ts’i ngí ʔëts’i V;IPFV;SG;2;PST
ya¹²xki bi yaxki V;PFV;SG;3
bọ¹²-kuẹ gí bọkuẹ V;IPFV;SG;2;PRS
xa²ʔtsi mí xaʔtsi V;IPFV;SG;3;PST
nde¹² bi nde V;PFV;SG;3
ntsa¹² ntsa V;IPFV;SG;3;PRS
na²ngi ndí nangi V;IPFV;SG;1;PST
ntso¹² dá ntso V;PFV;SG;1
nọ²nte xa nọnte V;PRF;SG;3;PRS
mẹ¹²s-t’e²k’ei mẹst’ëk’ëi V;IPFV;SG;3;PRS
hu²ts’i xa huts’i V;PRF;SG;3;PRS
pọ²t’e xki mọt’e V;PRF;3;PST
kụ²ʔ-sta kụʔsta V;IPFV;SG;3;PRS
o¹² stí ʔo V;PRF;1;PST
fọ²ta²-te gi fọtate V;IRR;SG;2
ʔñe²ni ga ʔñeni V;IRR;SG;1
hu¹²hni xa hñühni V;PRF;SG;3;PRS
ʔba¹²mpi dí ʔbampi V;IPFV;SG;1;PRS
se²ñä xki señä V;PRF;3;PST
fụi xkí fụi V;PRF;2;PST
jua²ts’i mí juats’i V;IPFV;SG;3;PST
ntsa ntsa V;IPFV;SG;3;PRS
e²kua²bi ngí ʔëkuabi V;IPFV;SG;2;PST
hi¹² xa hi V;PRF;SG;3;PRS
ñä²ʔ-thä xki ñäʔthä V;PRF;3;PST
ʔmẹgo xa ʔmẹgo V;PRF;SG;3;PRS
u¹²st’i dá ʔñust’i V;PFV;SG;1
zondi stá zondi V;PRF;SG;1;PRS
hñat’ui mí hñat’ui V;IPFV;SG;3;PST
has-tai xa nhyastai V;PRF;SG;3;PRS
xä¹²ʔkui ga xäʔkui V;IRR;SG;1
o¹²ti stí ʔoti V;PRF;1;PST
tsa²st’i ga tsast’i V;IRR;SG;1
ʔñọni mí ʔñọni V;IPFV;SG;3;PST
họ²ʔ-thä xkí hyọʔthä V;PRF;2;PST
handi ndí handi V;IPFV;SG;1;PST
kụ²ʔtsi bi kụʔtsi V;PFV;SG;3
edi dí ʔëdi V;IPFV;SG;1;PRS
ʔuẹi stá ʔuẹi V;PRF;SG;1;PRS
nxei ndí nxei V;IPFV;SG;1;PST
pụ²t’i mí pụt’i V;IPFV;SG;3;PST
hä²kua²bi xki hñäkua V;PRF;3;PST
sụ²ʔti xkí sụʔti V;PRF;2;PST
hu²ʔti da hñüʔti V;IRR;SG;3
ʔbụ²-tho gí ʔbụtho V;IPFV;SG;2;PRS
pänts’i gá pänts’i V;PFV;SG;2
mbanji mbanji V;IPFV;SG;3;PRS
hmäi hmäi V;IPFV;SG;3;PRS
pet’e xki pet’e V;PRF;3;PST
ʔbẹ¹²di ga ʔbẹdi V;IRR;SG;1
ntsa¹²-ʔri²hi xkí ntsaʔrihi V;PRF;2;PST
nts’a¹²ta²-ñäxu xa nts’atañäxu V;PRF;SG;3;PRS
fẹt’i gi fẹt’i V;IRR;SG;2
ʔbụk-ne dí ʔbụkne V;IPFV;SG;1;PRS
ʔbẹ²bo dí ʔbẹbo V;IPFV;SG;1;PRS
he¹²ts’e xká hyets’e V;PRF;SG;2;PRS
pọ¹²họ dá pọhọ V;PFV;SG;1
ä²x-ʔyo xa ʔñäxʔyo V;PRF;SG;3;PRS
tu²hu bi ntuhu V;PFV;SG;3
kat’i stá kat’i V;PRF;SG;1;PRS
o¹²ts’i xkí ʔyots’i V;PRF;2;PST
pọ²ke stí pọke V;PRF;1;PST
xai dí xai V;IPFV;SG;1;PRS
tẹ¹²t’i dí tẹt’i V;IPFV;SG;1;PRS
pọ²ʔtsui ndí pọʔtsui V;IPFV;SG;1;PST
njuai da njuai V;IRR;SG;3
ga²ʔtsi dá gaʔtsi V;PFV;SG;1
thụ²ʔmi gi thụʔmi V;IRR;SG;2
tsọ¹²ts’e mí tsọts’e V;IPFV;SG;3;PST
pa¹²m-hyä ngí pamhyä V;IPFV;SG;2;PST
ntsa¹²-ʔri²hi bi ntsaʔrihi V;PFV;SG;3
tụ²ki ngí tụki V;IPFV;SG;2;PST
pa¹²ti pati V;IPFV;SG;3;PRS
ʔñani xki ʔñani V;PRF;3;PST
ụ²ta²-te dá ʔụtate V;PFV;SG;1
ts’itsi da ts’itsi V;IRR;SG;3
ʔñẹ²nt’i stá ʔñẹnt’i V;PRF;SG;1;PRS
nxa²n-the xki nxanthe V;PRF;3;PST
nu¹²ngi da nungi V;IRR;SG;3
nt’ọʔtse da nt’ọʔtse V;IRR;SG;3
dä¹²nts’i da dänts’i V;IRR;SG;3
heki bi hñëki V;PFV;SG;3
nsu xki nsu V;PRF;3;PST
ʔñe²ni ʔñeni V;IPFV;SG;3;PRS
he²t’ä-nthä¹²hi gá hñët’anthähi V;PFV;SG;2
ʔñe¹²pi gá ʔñepi V;PFV;SG;2
dụʔti ndí dụʔti V;IPFV;SG;1;PST
xọ²ʔtse xki xọʔtse V;PRF;3;PST
ja¹²-bụ da jabụ V;IRR;SG;3
a²-the dá ʔñathe V;PFV;SG;1
jụki da gụki V;IRR;SG;3
that’i mí that’i V;IPFV;SG;3;PST
ʔbẹt’i bi ʔbẹt’i V;PFV;SG;3
njoʔtua-ne gá njoʔtuane V;PFV;SG;2
njotsui gi njotsui V;IRR;SG;2
ʔra²-ʔyo ndí ʔraʔyo V;IPFV;SG;1;PST
tọ¹²t’e dí tọt’e V;IPFV;SG;1;PRS
pụ¹²nt’i xkí pụnt’i V;PRF;2;PST
pọe da pọe V;IRR;SG;3
hñu²-xa²di mí hñuxadi V;IPFV;SG;3;PST
va²le bi vale V;PFV;SG;3
e¹²nä ga ʔëna V;IRR;SG;1
họ²-ndgu họndgu V;IPFV;SG;3;PRS
hñä²mbä-ndä dá hñämbändä V;PFV;SG;1
ʔyo¹²ni ga ʔyoni V;IRR;SG;1
oki gi ʔoki V;IRR;SG;2
ntsụi gí ntsụi V;IPFV;SG;2;PRS
nza²-ya gi nzaya V;IRR;SG;2
tsi²s-te stí tsiste V;PRF;1;PST
ʔña²nga²-ñhu²ni dí ʔñangañhuni V;IPFV;SG;1;PRS
hui¹²ts’i xká huits’i V;PRF;SG;2;PRS
yụ²ni xká ñụni V;PRF;SG;2;PRS
hụ²ʔti mí hụʔti V;IPFV;SG;3;PST
me¹²rhma ngí merhma V;IPFV;SG;2;PST
be²n-sẹ gí bensẹ V;IPFV;SG;2;PRS
aʔmi stí ʔaʔmi V;PRF;1;PST
pẹnts’i ndí pẹnts’i V;IPFV;SG;1;PST
nthẹ-ndä²hi da nthẹndähi V;IRR;SG;3
tsi²-mdo stí tsimdo V;PRF;1;PST
hu²ʔmi dá hüʔmi V;PFV;SG;1
heni gi heni V;IRR;SG;2
xaʔti xaʔti V;IPFV;SG;3;PRS
ʔñụi mí ʔñụi V;IPFV;SG;3;PST
nja mí nja V;IPFV;SG;3;PST
ne¹²ki xa neki V;PRF;SG;3;PRS
k’ẹ²ʔti stá k’ẹʔti V;PRF;SG;1;PRS
tọʔmi da tọʔmi V;IRR;SG;3
na¹²ti mí nati V;IPFV;SG;3;PST
ho²-du xa hodu V;PRF;SG;3;PRS
njot’i gi njot’i V;IRR;SG;2
thät’i gá thät’i V;PFV;SG;2
kụ²i stá kụi V;PRF;SG;1;PRS
xụ²-ñä xká xụñä V;PRF;SG;2;PRS
tsa xa za V;PRF;SG;3;PRS
nthẹui nthẹui V;IPFV;SG;3;PRS
da¹²do ndí dado V;IPFV;SG;1;PST
sẹ²-ya xká nsẹya V;PRF;SG;2;PRS
hä¹²mpi xká hñämpi V;PRF;SG;2;PRS
njụki mí njụki V;IPFV;SG;3;PST
tụ¹²ni da dụni V;IRR;SG;3
mfe²ʔtse mí mfeʔtse V;IPFV;SG;3;PST
tso¹²ts’i ngí tsots’i V;IPFV;SG;2;PST
fụti dí fụti V;IPFV;SG;1;PRS
gu¹²st’i xa gust’i V;PRF;SG;3;PRS
ta²ʔ-nthä da taʔnthä V;IRR;SG;3
pä²nts’a²-hai ndí pänts’ahai V;IPFV;SG;1;PST
hne²ki ndí hneki V;IPFV;SG;1;PST
fidi ndí fidi V;IPFV;SG;1;PST
po²t’i gá pot’i V;PFV;SG;2
hụ²ʔti xa hyụʔti V;PRF;SG;3;PRS
ts’ụ¹²t’i ts’ụt’i V;IPFV;SG;3;PRS
uänt’i dí uänt’i V;IPFV;SG;1;PRS
kụni gi kụni V;IRR;SG;2
tọ¹²ge xká tọge V;PRF;SG;2;PRS
tẹ²ʔmi xa dẹʔmi V;PRF;SG;3;PRS
k’agi xki k’agi V;PRF;3;PST
fụi xa fụi V;PRF;SG;3;PRS
xẹ¹²ni ngí xẹni V;IPFV;SG;2;PST
he²ʔti da hñëʔti V;IRR;SG;3
ẹi ga ʔẹi V;IRR;SG;1
jo¹²ni ga joni V;IRR;SG;1
pa²ʔ-nthä gá mpaʔnthä V;PFV;SG;2
tsa¹² dá tsa V;PFV;SG;1
nhui²xni nhuixni V;IPFV;SG;3;PRS
nko²-hai xa nkohai V;PRF;SG;3;PRS
xo²ʔtsi xká xoʔtsi V;PRF;SG;2;PRS
kụ¹²t’i gi kụt’i V;IRR;SG;2
tsụ¹² ga ntsụ V;IRR;SG;1
da¹²dri dí dadri V;IPFV;SG;1;PRS
hui²ʔtsi bi huiʔtsi V;PFV;SG;3
hui¹²st’i xki huist’i V;PRF;3;PST
pẹ¹²hni stá pẹhni V;PRF;SG;1;PRS
kä²ki käki V;IPFV;SG;3;PRS
ntuti gá ntuti V;PFV;SG;2
nu¹²ngi dá nungi V;PFV;SG;1
nu²-ma²ñho gí numañho V;IPFV;SG;2;PRS
ʔñan-the gí ʔñanthe V;IPFV;SG;2;PRS
pẹ²m-ʔyo pẹmʔyo V;IPFV;SG;3;PRS
ʔñofo xká ʔñofo V;PRF;SG;2;PRS
bi xa mbi V;PRF;SG;3;PRS
oʔtsi gi ʔoʔtsi V;IRR;SG;2
juäni ndí juäni V;IPFV;SG;1;PST
nxändi xkí nxändi V;PRF;2;PST
bu¹²nchi bi bunchi V;PFV;SG;3
ʔñatua-t’afi ndí ʔñatuat’afi V;IPFV;SG;1;PST
he¹² mí hë V;IPFV;SG;3;PST
te¹²ge tege V;IPFV;SG;3;PRS
ʔua²ʔmi bi ʔuaʔmi V;PFV;SG;3
nzo²fo stá nzofo V;PRF;SG;1;PRS
k’ụ²ʔti stí k’ụʔti V;PRF;1;PST
nzụni dí nzụni V;IPFV;SG;1;PRS
jut’i gí jut’i V;IPFV;SG;2;PRS
nxei gi nxei V;IRR;SG;2
tsa¹² tsa V;IPFV;SG;3;PRS
nku xki nku V;PRF;3;PST
hyọ²t’a²-da¹²da da hyọt’adada V;IRR;SG;3
nthẹ-xui ga nthẹxui V;IRR;SG;1
tsi¹²ts’i xa zits’i V;PRF;SG;3;PRS
ʔbẹ²di gá ʔbẹdi V;PFV;SG;2
tsa ngí tsa V;IPFV;SG;2;PST
yo-nụ²ʔti mí yonụʔti V;IPFV;SG;3;PST
ti²ʔti xki diʔti V;PRF;3;PST
xọke bi xọke V;PFV;SG;3
tsa²ʔni stá ntsaʔni V;PRF;SG;1;PRS
tẹ²ti ngí tẹti V;IPFV;SG;2;PST
ho²ki hoki V;IPFV;SG;3;PRS
a²ʔtsi gá ʔyaʔtsi V;PFV;SG;2
juäni gí juäni V;IPFV;SG;2;PRS
ma²ka²-huui makahuui V;IPFV;SG;3;PRS
xi²ki gí xiki V;IPFV;SG;2;PRS
ñä²-hñu gá ñähñu V;PFV;SG;2
ʔra²ʔtsi gá ʔraʔtsi V;PFV;SG;2
ntä¹²hmi ga ntähmi V;IRR;SG;1
pẹ²-ʔñäi gá pẹʔñäi V;PFV;SG;2
nxändi ga nxändi V;IRR;SG;1
pẹ²ʔti mí pẹʔti V;IPFV;SG;3;PST
änt’i da ʔänt’i V;IRR;SG;3
tho²ki xkí thoki V;PRF;2;PST
ntuti stí ntuti V;PRF;1;PST
ñä²-mä²ñho ga ñämäñho V;IRR;SG;1
kä²ts’i da käts’i V;IRR;SG;3
xä²ndi gá xändi V;PFV;SG;2
ts’ä¹²t’i xa ts’ät’i V;PRF;SG;3;PRS
ʔñox-jụ¹²ni ndí ʔñoxjụni V;IPFV;SG;1;PST
nxänts’i ngí nxänts’i V;IPFV;SG;2;PST
ne²-ʔñu gi neʔñu V;IRR;SG;2
hño²jä²ʔi da hñojäʔi V;IRR;SG;3
mbätsi xa mbätsi V;PRF;SG;3;PRS
te²xki mí texki V;IPFV;SG;3;PST
pi²ʔmi stá piʔmi V;PRF;SG;1;PRS
ʔyo²-mxu²di dá ʔñomxudi V;PFV;SG;1
hä¹²ni gi hñäni V;IRR;SG;2
ne²-du gí nedu V;IPFV;SG;2;PRS
fẹ²ta²-te dá mfẹtate V;PFV;SG;1
xo²ʔtsi mí xoʔtsi V;IPFV;SG;3;PST
ä²t’i xa ʔät’i V;PRF;SG;3;PRS
ndoʔspi-ñä xki ndoʔspiñä V;PRF;3;PST
nko²-hai da nkohai V;IRR;SG;3
kụni gí kụni V;IPFV;SG;2;PRS
nu²-ngo xki nungo V;PRF;3;PST
ʔbụ²-sẹ xki ʔmụsẹ V;PRF;3;PST
po¹²ni stí poni V;PRF;1;PST
nt’o¹²xi bi nt’oxi V;PFV;SG;3
tsit’i xa zit’i V;PRF;SG;3;PRS
ngä²hä stí ngähä V;PRF;1;PST
ẹ²n-do mí ʔẹndo V;IPFV;SG;3;PST
ʔñẹ²nt’i xki ʔñẹnt’i V;PRF;3;PST
hme¹²-ya gá hmeya V;PFV;SG;2
xa²ʔtsi xa xaʔtsi V;PRF;SG;3;PRS
ñụ²ni gí ñụni V;IPFV;SG;2;PRS
mpẹ¹²nkui dí mpẹnkui V;IPFV;SG;1;PRS
kụ²ʔ-sta stí kụʔsta V;PRF;1;PST
mbo-jä mbojä V;IPFV;SG;3;PRS
ʔrant’ui gi ʔrant’ui V;IRR;SG;2
nk’o²s-t’ẹ¹²di stá nk’ost’ẹdi V;PRF;SG;1;PRS
pẹ²xni stí pẹxni V;PRF;1;PST
hña²hni gí hñahni V;IPFV;SG;2;PRS
hña²ndi ngí hñandi V;IPFV;SG;2;PST
tsẹ²-nza dí tsẹnza V;IPFV;SG;1;PRS
the¹²ts’i xkí thets’i V;PRF;2;PST
ʔba²ha ʔbaha V;IPFV;SG;3;PRS
xo²gi xki xogi V;PRF;3;PST
pa²-ngọ mí pangọ V;IPFV;SG;3;PST
ʔñu²nts’i da ʔñunts’i V;IRR;SG;3
pọ²ge ngí pọge V;IPFV;SG;2;PST
ntu¹²ti xkí ntuti V;PRF;2;PST
xadi ngí xadi V;IPFV;SG;2;PST
ño¹²h-wi stá ñohwi V;PRF;SG;1;PRS
ue²ni xa ueni V;PRF;SG;3;PRS
do¹²ndo xká dondo V;PRF;SG;2;PRS
me¹²-ya xki meya V;PRF;3;PST
jụʔtsi xa jụʔtsi V;PRF;SG;3;PRS
zọ¹² xki zọ V;PRF;3;PST
tai ndí tai V;IPFV;SG;1;PST
k’ụ²ʔtsi da k’ụʔtsi V;IRR;SG;3
dent’i mí dent’i V;IPFV;SG;3;PST
kä²-bọhai mí käbọhai V;IPFV;SG;3;PST
pẹ¹²hi gí pẹhi V;IPFV;SG;2;PRS
hä²ki dí häki V;IPFV;SG;1;PRS
yo-thä²ʔti dá yothäʔti V;PFV;SG;1
nko²mfo²rme ga nkomforme V;IRR;SG;1
xọke gí xọke V;IPFV;SG;2;PRS
tsa²ʔni xa ntsaʔni V;PRF;SG;3;PRS
kụi dá kụi V;PFV;SG;1
zọ¹² xa zọ V;PRF;SG;3;PRS
pọ²ʔte ndí pọʔte V;IPFV;SG;1;PST
zo²hni ndí zohni V;IPFV;SG;1;PST
ʔna²ni bi ʔnani V;PFV;SG;3
hmä²ki stá hmäki V;PRF;SG;1;PRS
thä²ʔti ndí thäʔti V;IPFV;SG;1;PST
nlẹngu dí nlẹngu V;IPFV;SG;1;PRS
pa¹²fi xa pafi V;PRF;SG;3;PRS
pe²t’e pet’e V;IPFV;SG;3;PRS
mbe¹²ni mbeni V;IPFV;SG;3;PRS
e¹²ʔtse da ʔyeʔtse V;IRR;SG;3
mfa²nt’a²-ñä bi mfant’añä V;PFV;SG;3
kue²ke ga kueke V;IRR;SG;1
ẹkua²bi mí ʔẹkuabi V;IPFV;SG;3;PST
pụ²t’i gi pụt’i V;IRR;SG;2
nga¹²nts’i xa ngants’i V;PRF;SG;3;PRS
ts’ä¹²t’i dá ts’ät’i V;PFV;SG;1
ti²ka²-te ngí tikate V;IPFV;SG;2;PST
fo¹²st’e xki fost’e V;PRF;3;PST
man-thä¹²hi da manthähi V;IRR;SG;3
ko²ʔti bi koʔti V;PFV;SG;3
ma²ʔti xa maʔti V;PRF;SG;3;PRS
ko²ti xki goti V;PRF;3;PST
tọʔmi xki tọʔmi V;PRF;3;PST
pẹ²t-’yẹ bi pẹt’yẹ V;PFV;SG;3
hän-guẹ²nda gá hänguẹnda V;PFV;SG;2
ʔñụhwi gi ʔñụhwi V;IRR;SG;2
hwäni da hwäni V;IRR;SG;3
yopi dí yopi V;IPFV;SG;1;PRS
ta²ki ngí taki V;IPFV;SG;2;PST
ra²ncha stá rancha V;PRF;SG;1;PRS
k’ant’i k’ant’i V;IPFV;SG;3;PRS
ke²ni da keni V;IRR;SG;3
ju²x-huä¹²hi gá juxhuähi V;PFV;SG;2
ʔyo²-mxu²di ʔyomxudi V;IPFV;SG;3;PRS
hu²-jua hüjua V;IPFV;SG;3;PRS
ñat’i xkí ñat’i V;PRF;2;PST
nthät’i nthät’i V;IPFV;SG;3;PRS
tẹ²ni ga tẹni V;IRR;SG;1
be¹²t’e stí bet’e V;PRF;1;PST
ʔue²ngi stá ʔuengi V;PRF;SG;1;PRS
ne¹²ts’e da nets’e V;IRR;SG;3
jụi gí jụi V;IPFV;SG;2;PRS
ts’o²n-tho ts’ontho V;IPFV;SG;3;PRS
u²ʔti mí ʔuʔti V;IPFV;SG;3;PST
e²he xki ʔñëhe V;PRF;3;PST
tso¹²ts’i xa zots’i V;PRF;SG;3;PRS
xọ²ʔhmi dá xọʔhmi V;PFV;SG;1
nts’oki xki nts’oki V;PRF;3;PST
xu¹²st’i xa xust’i V;PRF;SG;3;PRS
ẹ²te ngí ʔẹte V;IPFV;SG;2;PST
k’ẹ mí k’ẹ V;IPFV;SG;3;PST
hyọ²t’a²-da¹²da gá hyọt’adada V;PFV;SG;2
tsụdi ndí tsụdi V;IPFV;SG;1;PST
mfi²ts’i gí mfits’i V;IPFV;SG;2;PRS
oʔtsi xki ʔoʔtsi V;PRF;3;PST
ne¹²ki dí neki V;IPFV;SG;1;PRS
ntra²si²sta bi ntrasista V;PFV;SG;3
pa²nthi xki mpanthi V;PRF;3;PST
k’ụ²t’i xki k’ụt’i V;PRF;3;PST
äni gá ʔñäni V;PFV;SG;2
thọ²t-hyä gi thọthyä V;IRR;SG;2
k’ont’i bi k’ont’i V;PFV;SG;3
ʔuäts’i ʔuäts’i V;IPFV;SG;3;PRS
kä²ts’i käts’i V;IPFV;SG;3;PRS
k’ua bi nk’ua V;PFV;SG;3
hä²mbi ndí hämbi V;IPFV;SG;1;PST
mpụ¹²nga²-k’eñä xkí mpụngak’eñä V;PRF;2;PST
xa²n-the xa nxanthe V;PRF;SG;3;PRS
zo²hni ngí zohni V;IPFV;SG;2;PST
tuʔtsi gí tuʔtsi V;IPFV;SG;2;PRS
a²-ma²ñʔụ stá ʔñamañʔụ V;PRF;SG;1;PRS
xa²xi xki xaxi V;PRF;3;PST
fo¹² mí fo V;IPFV;SG;3;PST
mẹ¹²ta²-ʔba ngí mẹtaʔba V;IPFV;SG;2;PST
jụi ngí jụi V;IPFV;SG;2;PST
the²nä²-te ndí thenäte V;IPFV;SG;1;PST
njot’i stí njot’i V;PRF;1;PST
ʔño¹²ui xká ʔñoui V;PRF;SG;2;PRS
nu¹²ni stá nuni V;PRF;SG;1;PRS
xọ²ge bi xọge V;PFV;SG;3
ugi stá ʔugi V;PRF;SG;1;PRS
njụ²t’i xká njụt’i V;PRF;SG;2;PRS
hue²ki xkí hueki V;PRF;2;PST
hä²kua²bi gá hñäkua V;PFV;SG;2
hu²ʔmi xa ñhüʔmi V;PRF;SG;3;PRS
that’i da dat’i V;IRR;SG;3
hä¹²mpi xkí hñämpi V;PRF;2;PST
pä²hi xa pähi V;PRF;SG;3;PRS
fa²s-te gi mfaste V;IRR;SG;2
hä²kua²bi xká hñäkua V;PRF;SG;2;PRS
xi²hni gá xihni V;PFV;SG;2
hya-znä xki hyaznä V;PRF;3;PST
yọʔte dí yọʔte V;IPFV;SG;1;PRS
ts’a¹²ti ts’ati V;IPFV;SG;3;PRS
pẹi stá pẹi V;PRF;SG;1;PRS
hmi²m-za dá hmimza V;PFV;SG;1
a²k-hñu²ni xa ʔñakhñuni V;PRF;SG;3;PRS
tẹ¹²-do bi tẹdo V;PFV;SG;3
ntsi¹²ts’i stí ntsits’i V;PRF;1;PST
juä²ni stá juäni V;PRF;SG;1;PRS
hu²ʔti dá hüʔti V;PFV;SG;1
bä²tsi ngí bätsi V;IPFV;SG;2;PST
nu¹² ndí nu V;IPFV;SG;1;PST
ʔbẹfa ʔbẹfa V;IPFV;SG;3;PRS
hogi da hogi V;IRR;SG;3
jäʔtsi gi jäʔtsi V;IRR;SG;2
pẹ²-jua stá pẹjua V;PRF;SG;1;PRS
nt’o¹²xi mí nt’oxi V;IPFV;SG;3;PST
tu xká tu V;PRF;SG;2;PRS
ñu¹²nt’i ñunt’i V;IPFV;SG;3;PRS
mfẹ²ni xki mfẹni V;PRF;3;PST
i¹²t’i bi ʔit’i V;PFV;SG;3
edi xká ʔñëdi V;PRF;SG;2;PRS
ʔyots’i da ʔyots’i V;IRR;SG;3
zụ²di mí zụdi V;IPFV;SG;3;PST
nthäti dá nthäti V;PFV;SG;1
ua²-nt’ä¹²hä gí uant’ähä V;IPFV;SG;2;PRS
mpọ¹²họ gí mpọhọ V;IPFV;SG;2;PRS
pẹ²-mäpa stí pẹmäpa V;PRF;1;PST
muʔmbi gi muʔmbi V;IRR;SG;2
go²ne gone V;IPFV;SG;3;PRS
he¹² bi hë V;PFV;SG;3
pẹsfi dí pẹsfi V;IPFV;SG;1;PRS
u¹²ts’i ndí ʔuts’i V;IPFV;SG;1;PST
fẹi ga fẹi V;IRR;SG;1
xat’i gí xat’i V;IPFV;SG;2;PRS
ñoho ndí ñoho V;IPFV;SG;1;PST
kadi kadi V;IPFV;SG;3;PRS
hña²ni mí hñani V;IPFV;SG;3;PST
ts’oma²-ñu²ni xká ts’omañuni V;PRF;SG;2;PRS
nsu ngí nsu V;IPFV;SG;2;PST
k’a²t’i ga k’at’i V;IRR;SG;1
hahni mí hahni V;IPFV;SG;3;PST
nxu²t’i xa nxut’i V;PRF;SG;3;PRS
fọnt’i ngí fọnt’i V;IPFV;SG;2;PST
kụ²ʔmi bi kụʔmi V;PFV;SG;3
e¹²nthi da ʔenthi V;IRR;SG;3
mpụ¹²nga²-zuʔue ga mpụngazuʔue V;IRR;SG;1
hue²t’i bi huet’i V;PFV;SG;3
nu²-ngo xká nungo V;PRF;SG;2;PRS
nk’o²ni xki nk’oni V;PRF;3;PST
ʔmẹgo ʔmẹgo V;IPFV;SG;3;PRS
xaʔti xki xaʔti V;PRF;3;PST
tsi²-mdo gá tsimdo V;PFV;SG;2
ʔuet’i gá ʔuët’i V;PFV;SG;2
tsụ²-te gá ntsụte V;PFV;SG;2
ʔñu²di bi ʔñudi V;PFV;SG;3
họ²ʔ-thä gá hyọʔthä V;PFV;SG;2
a²k-sei gá ʔñaksei V;PFV;SG;2
ndeki bi ndeki V;PFV;SG;3
he¹² he V;IPFV;SG;3;PRS
thụ²t’i gí thụt’i V;IPFV;SG;2;PRS
zo²ni ga zoni V;IRR;SG;1
poʔtsi mí poʔtsi V;IPFV;SG;3;PST
hwäts’i dá hwäts’i V;PFV;SG;1
ʔbẹ-bo dá ʔbẹbo V;PFV;SG;1
nta²ki ga ntaki V;IRR;SG;1
ga²ni da ngani V;IRR;SG;3
mfi²ts’i xká mfits’i V;PRF;SG;2;PRS
tsa¹²ha ndí tsaha V;IPFV;SG;1;PST
huts’i xkí hñüts’i V;PRF;2;PST
dä¹²-hmyä mí dähmyä V;IPFV;SG;3;PST
fụ²ki dá fụki V;PFV;SG;1
tẹ²ni xa dẹni V;PRF;SG;3;PRS
nt’o¹²xi nt’oxi V;IPFV;SG;3;PRS
ntu¹²hni mí ntuhni V;IPFV;SG;3;PST
kät’i bi gät’i V;PFV;SG;3
ʔya²i gí ʔyai V;IPFV;SG;2;PRS
nkụi stí nkụi V;PRF;1;PST
kụ²i xki yụi V;PRF;3;PST
k’ụ²-ne ngí k’ụne V;IPFV;SG;2;PST
nu²-ma²nt’ụ²tsa ngí numant’ụtsa V;IPFV;SG;2;PST
hura²-mụi dá huramụi V;PFV;SG;1
hei gá hñëi V;PFV;SG;2
tä¹² da da V;IRR;SG;3
mä¹²x-ʔo xa mäxʔo V;PRF;SG;3;PRS
mbụ²ni mbụni V;IPFV;SG;3;PRS
e²ʔtsa²-te ndí ʔëʔtsate V;IPFV;SG;1;PST
họ²t’a²-daʔthi stá họt’adaʔthi V;PRF;SG;1;PRS
a²k-sei gí ʔaksei V;IPFV;SG;2;PRS
yat’i bi yat’i V;PFV;SG;3
nthuui gi nthuui V;IRR;SG;2
aki bi ʔyaki V;PFV;SG;3
mu¹²-ndo gí mundo V;IPFV;SG;2;PRS
mpä²hi xkí mpähi V;PRF;2;PST
muhni gá muhni V;PFV;SG;2
kụ¹² xa yụ V;PRF;SG;3;PRS
kọnga²-ba¹²yo xa nkọngabayo V;PRF;SG;3;PRS
ntuti ndí ntuti V;IPFV;SG;1;PST
jä²ts’i bi gäts’i V;PFV;SG;3
ne¹²ts’e ga nets’e V;IRR;SG;1
mpi¹²ts’i gá mpits’i V;PFV;SG;2
kä²t’i da gät’i V;IRR;SG;3
hñu²ts’i dí hñuts’i V;IPFV;SG;1;PRS
mä²m-xa stí mämxa V;PRF;1;PST
thuki ga thuki V;IRR;SG;1
tu¹²ti xa duti V;PRF;SG;3;PRS
hñu²-xa²di xki hñuxadi V;PRF;3;PST
ʔbatbi da ʔbatbi V;IRR;SG;3
ti¹²ti xká titi V;PRF;SG;2;PRS
xo²s-thu¹²hu ngí xosthuhu V;IPFV;SG;2;PST
nku²ni mí nkuni V;IPFV;SG;3;PST
po²ʔtsi ga poʔtsi V;IRR;SG;1
ehni dí ʔehni V;IPFV;SG;1;PRS
ne²i xká nei V;PRF;SG;2;PRS
neʔtsi gí neʔtsi V;IPFV;SG;2;PRS
e¹²ʔtse dá ʔeʔtse V;PFV;SG;1
ʔba-nde¹² ngí ʔbande V;IPFV;SG;2;PST
ts’a²t’i gí ts’at’i V;IPFV;SG;2;PRS
tsẹti xki zẹti V;PRF;3;PST
ndu¹²-de dí ndude V;IPFV;SG;1;PRS
ʔmẹpo stí ʔmẹpo V;PRF;1;PST
fọm-ts’oni stí fọmts’oni V;PRF;1;PST
ts’iki gá ts’iki V;PFV;SG;2
fiʔtsi ngí fiʔtsi V;IPFV;SG;2;PST
k’a¹²hni stá k’ahni V;PRF;SG;1;PRS
sụ²ʔti ndí sụʔti V;IPFV;SG;1;PST
ẹt’i gá ʔyẹt’i V;PFV;SG;2
hu²-hme dí hühme V;IPFV;SG;1;PRS
jodo ndí jodo V;IPFV;SG;1;PST
ʔuẹt’i xki ʔuẹt’i V;PRF;3;PST
mpụ¹²nga²-ʔẹ¹²nxẹ mí mpụngaʔẹnxẹ V;IPFV;SG;3;PST
mbọ-t’o mí mbọt’o V;IPFV;SG;3;PST
nda²n-gua stá ndangua V;PRF;SG;1;PRS
e¹²st’e dí ʔest’e V;IPFV;SG;1;PRS
ọ²t’a²-ge¹²rra xkí ʔọt’agerra V;PRF;2;PST
munts’i xká munts’i V;PRF;SG;2;PRS
mponi xká mponi V;PRF;SG;2;PRS
ntsụ²ʔtsi xa ntsụʔtsi V;PRF;SG;3;PRS
ndo¹²ki xa ndoki V;PRF;SG;3;PRS
nats’i xká nats’i V;PRF;SG;2;PRS
ʔño¹²ui gá ʔñoui V;PFV;SG;2
nkụ²ni gá nkụni V;PFV;SG;2
k’ẹ xká k’ẹ V;PRF;SG;2;PRS
tsu xa ntsu V;PRF;SG;3;PRS
het’i da hñët’i V;IRR;SG;3
pẹ²xni pẹxni V;IPFV;SG;3;PRS
bis-tho gí bistho V;IPFV;SG;2;PRS
ụ¹²ts’i xká ʔyụts’i V;PRF;SG;2;PRS
tu²-the ga tuthe V;IRR;SG;1
ʔnra²nxu xa ʔnranxu V;PRF;SG;3;PRS
a²xa²-hai gí ʔaxahai V;IPFV;SG;2;PRS
ọ²t’a²-ngo gí ʔọt’ango V;IPFV;SG;2;PRS
ntoʔmi gá ntoʔmi V;PFV;SG;2
dụ²hụ stá dụhụ V;PRF;SG;1;PRS
bọ²-da mí bọda V;IPFV;SG;3;PST
nzụni bi nzụni V;PFV;SG;3
me¹²nthi xa menthi V;PRF;SG;3;PRS
tho xa tho V;PRF;SG;3;PRS
me¹²p-ya xa mepya V;PRF;SG;3;PRS
kä²-ʔbẹxuui käʔbẹxuui V;IPFV;SG;3;PRS
nxa¹² xkí nxa V;PRF;2;PST
fe¹²st’e ngí fest’e V;IPFV;SG;2;PST
k’e stá nk’ë V;PRF;SG;1;PRS
fụ²ʔti dí fụʔti V;IPFV;SG;1;PRS
hä²-thä xa hñäthä V;PRF;SG;3;PRS
thädi xkí thädi V;PRF;2;PST
hegi dá hëgi V;PFV;SG;1
nkät’i gi nkät’i V;IRR;SG;2
xo²fo dá nxofo V;PFV;SG;1
xiʔki gí xiʔki V;IPFV;SG;2;PRS
hwäni dá hwäni V;PFV;SG;1
the¹²ts’i mí thets’i V;IPFV;SG;3;PST
nt’ụ²ki xkí nt’ụki V;PRF;2;PST
kä²-bọhai ndí käbọhai V;IPFV;SG;1;PST
thọhni mí thọhni V;IPFV;SG;3;PST
ụ² bi ʔñụ V;PFV;SG;3
pẹ²m-ʔyo dí pẹmʔyo V;IPFV;SG;1;PRS
tä²-te stí ntäte V;PRF;1;PST
kä²-do xká nkädo V;PRF;SG;2;PRS
nthẹ-ji² mí nthẹji V;IPFV;SG;3;PST
ntä²mi xa ntämi V;PRF;SG;3;PRS
thọ²t-hyä xki thọthyä V;PRF;3;PST
tsẹ²-za tsẹza V;IPFV;SG;3;PRS
tsi¹² xká tsi V;PRF;SG;2;PRS
ndä ngí ndä V;IPFV;SG;2;PST
ʔbẹt’i ʔbẹt’i V;IPFV;SG;3;PRS
mpụ¹²ngi gí mpụngi V;IPFV;SG;2;PRS
ti²ka²-te gi tikate V;IRR;SG;2
hẹ¹²ni dá hẹni V;PFV;SG;1
mo²ʔmi moʔmi V;IPFV;SG;3;PRS
nsọ²hni gá nsọhni V;PFV;SG;2
ʔba²-ʔñu dá ʔbaʔñu V;PFV;SG;1
tsit’i xki zit’i V;PRF;3;PST
pats’i xkí pats’i V;PRF;2;PST
fọ²ke dá fọke V;PFV;SG;1
mpo¹²nt’i stí mpont’i V;PRF;1;PST
ʔña¹²-thä ndí ʔñathä V;IPFV;SG;1;PST
ue²n-ga²hai xki uengahai V;PRF;3;PST
hñu²ts’i ngí hñuts’i V;IPFV;SG;2;PST
ʔra stí ʔra V;PRF;1;PST
agi xki ʔyagi V;PRF;3;PST
hu²mụi stí hümụi V;PRF;1;PST
mpụ¹²nts’i ga mpụnts’i V;IRR;SG;1
k’ua²st’i xkí k’uast’i V;PRF;2;PST
pats’i stá pats’i V;PRF;SG;1;PRS
tụhụ dá tụhụ V;PFV;SG;1
họ²x-gi²ni xki nhyọxgini V;PRF;3;PST
the²-sẹ¹²hẹ mí thesẹhẹ V;IPFV;SG;3;PST
hño¹²ga²-jäʔi dá hñogajäʔi V;PFV;SG;1
thä²ʔti mí thäʔti V;IPFV;SG;3;PST
yopi ga yopi V;IRR;SG;1
tso²-mfe¹²ni xa zomfeni V;PRF;SG;3;PRS
ho²ki stá hoki V;PRF;SG;1;PRS
fat’ä²-juä¹² dá fat’äjuä V;PFV;SG;1
xänt’i ngí xänt’i V;IPFV;SG;2;PST
zondi bi zondi V;PFV;SG;3
hẹ-pụ ngí hẹpụ V;IPFV;SG;2;PST
yaki gá yaki V;PFV;SG;2
mpants’i gí mpants’i V;IPFV;SG;2;PRS
e¹²tsua (ra² nsu) xki ʔñetsua V;PRF;3;PST
ʔrant’ui gí ʔrant’ui V;IPFV;SG;2;PRS
mpẹfi xká mpẹfi V;PRF;SG;2;PRS
kua²ti gi kuati V;IRR;SG;2
fẹʔmi gá fẹʔmi V;PFV;SG;2
nga²s-te ga ngaste V;IRR;SG;1
nde²he gí ndehe V;IPFV;SG;2;PRS
e¹²nä gí ʔëna V;IPFV;SG;2;PRS
man-thä¹²hi xkí manthähi V;PRF;2;PST
zụ¹²ts’i gí zụts’i V;IPFV;SG;2;PRS
xuʔti mí xuʔti V;IPFV;SG;3;PST
ntsẹ²ni dí ntsẹni V;IPFV;SG;1;PRS
i²nga²-du²tu ga ʔingadutu V;IRR;SG;1
kä²ts’i bi käts’i V;PFV;SG;3
xä¹²nts’i gí xänts’i V;IPFV;SG;2;PRS
nthäti da nthäti V;IRR;SG;3
xụki stá xụki V;PRF;SG;1;PRS
pa-thä stá pathä V;PRF;SG;1;PRS
da¹²do xki dado V;PRF;3;PST
xo²fo ndí xofo V;IPFV;SG;1;PST
xọke stí xọke V;PRF;1;PST
män-tho dá mäntho V;PFV;SG;1
huts’i ga hüts’i V;IRR;SG;1
nk’o²ni bi nk’oni V;PFV;SG;3
nlo²chi xká nlochi V;PRF;SG;2;PRS
fo¹² xki fo V;PRF;3;PST
ñä²-mä²ñho ñämäñho V;IPFV;SG;3;PRS
pe ngí pe V;IPFV;SG;2;PST
nthint’i ngí nthint’i V;IPFV;SG;2;PST
nrri¹²ko ndí nrriko V;IPFV;SG;1;PST
ti¹²ti ndí titi V;IPFV;SG;1;PST
bụ²t’i xki bụt’i V;PRF;3;PST
pi¹²st’i gí pist’i V;IPFV;SG;2;PRS
ʔbẹki da ʔbẹki V;IRR;SG;3
ts’oma²-ñu²ni dá ts’omañuni V;PFV;SG;1
mpa¹²nt’i mpant’i V;IPFV;SG;3;PRS
tsụ²ki gá tsụki V;PFV;SG;2
mpụ¹²nts’i mpụnts’i V;IPFV;SG;3;PRS
pi²gi xkí pigi V;PRF;2;PST
ʔbẹ²t’o gi ʔbẹt’o V;IRR;SG;2
mo²ʔmi mí moʔmi V;IPFV;SG;3;PST
he¹²ni ndí heni V;IPFV;SG;1;PST
nzụni ga nzụni V;IRR;SG;1
o²t’i da ʔyot’i V;IRR;SG;3
a²-the gí ʔathe V;IPFV;SG;2;PRS
hä²kua²bi stá häkuabi V;PRF;SG;1;PRS
mfa²nt’i stá mfant’i V;PRF;SG;1;PRS
ntsụ²ʔtsi mí ntsụʔtsi V;IPFV;SG;3;PST
nọ¹²st’e dí nọst’e V;IPFV;SG;1;PRS
nrri¹²ko mí nrriko V;IPFV;SG;3;PST
fọts’e stí fọts’e V;PRF;1;PST
hẹ¹²xki mí hẹxki V;IPFV;SG;3;PST
tsa²-te gí tsate V;IPFV;SG;2;PRS
kadi-tho gí kaditho V;IPFV;SG;2;PRS
kue²t’e da wet’e V;IRR;SG;3
naʔmbi stí naʔmbi V;PRF;1;PST
thụ²ni stí thụni V;PRF;1;PST
hñahni gá hñahni V;PFV;SG;2
tsit’i ga tsit’i V;IRR;SG;1
hña²hni gi hñahni V;IRR;SG;2
jodo ngí jodo V;IPFV;SG;2;PST
ʔra²ʔmi bi ʔraʔmi V;PFV;SG;3
he²t’ä-nthä¹²hi dí het’änthähi V;IPFV;SG;1;PRS
nxa¹² stí nxa V;PRF;1;PST
nkụ²ni gi nkụni V;IRR;SG;2
ha²t’i xkí hyat’i V;PRF;2;PST
ẹnt’i xkí ʔyẹnt’i V;PRF;2;PST
pụʔti ngí pụʔti V;IPFV;SG;2;PST
kä²ni bi käni V;PFV;SG;3
hya²ʔnga gi nhyaʔnga V;IRR;SG;2
ne²i da nei V;IRR;SG;3
fẹʔtsi ndí fẹʔtsi V;IPFV;SG;1;PST
ja¹² xa ja V;PRF;SG;3;PRS
hñe¹²ts’e stá hñets’e V;PRF;SG;1;PRS
fẹt’i ndí fẹt’i V;IPFV;SG;1;PST
mo²t-mụi bi motmụi V;PFV;SG;3
uäki da uäki V;IRR;SG;3
hñä²mba²-de²he xkí hñämbadehe V;PRF;2;PST
mpo¹²nt’i ndí mpont’i V;IPFV;SG;1;PST
fụʔmi gí fụʔmi V;IPFV;SG;2;PRS
kuui gi kuui V;IRR;SG;2
pobo gá pobo V;PFV;SG;2
he¹² xkí hë V;PRF;2;PST
pe² pe V;IPFV;SG;3;PRS
fọ-jyä xa fọjyä V;PRF;SG;3;PRS
ko²t’i da got’i V;IRR;SG;3
fọmi da fọmi V;IRR;SG;3
hño²-sẹ stá hñosẹ V;PRF;SG;1;PRS
sẹ²yabi ga sẹyabi V;IRR;SG;1
he¹²ni xa hyeni V;PRF;SG;3;PRS
pe²ʔte gi peʔte V;IRR;SG;2
ndä-tsu ndätsu V;IPFV;SG;3;PRS
ʔmẹ-mpi¹²ts’i xki ʔmẹmpits’i V;PRF;3;PST
tsiti dá tsiti V;PFV;SG;1
uä²hi ndí uähi V;IPFV;SG;1;PST
ụʔti dí ʔụʔti V;IPFV;SG;1;PRS
pẹpi xkí pẹpi V;PRF;2;PST
fọ²ta²-te ga fọtate V;IRR;SG;1
nthọ²xni ga nthọxni V;IRR;SG;1
pẹ¹²ti xki pẹti V;PRF;3;PST
ʔba-nde¹² dá ʔbande V;PFV;SG;1
maki da maki V;IRR;SG;3
njänt’i xki njänt’i V;PRF;3;PST
pe²ng-tho bi pengtho V;PFV;SG;3
hñẹ²ki gi hñẹki V;IRR;SG;2
pẹ²-ʔñäi stá pẹʔñäi V;PRF;SG;1;PRS
neʔtsi xki neʔtsi V;PRF;3;PST
ʔñe¹²pi da ʔñepi V;IRR;SG;3
toi ga toi V;IRR;SG;1
kọ²ʔte dí kọʔte V;IPFV;SG;1;PRS
ʔba²-ne bi ʔmane V;PFV;SG;3
eni stá ʔëni V;PRF;SG;1;PRS
jụts’i mí jụts’i V;IPFV;SG;3;PST
dä²xi ga däxi V;IRR;SG;1
nzo²hni ga nzohni V;IRR;SG;1
mähwi mähwi V;IPFV;SG;3;PRS
ʔmẹ²ʔmi bi ʔmẹʔmi V;PFV;SG;3
u²t’a²-nä¹²ni gí ʔut’anäni V;IPFV;SG;2;PRS
pọ²ʔtse stí pọʔtse V;PRF;1;PST
he²ke xkí hyeke V;PRF;2;PST
hui²ʔtsi gá huiʔtsi V;PFV;SG;2
nko²ntra xa nkontra V;PRF;SG;3;PRS
k’ui²st’i k’uist’i V;IPFV;SG;3;PRS
xut’i mí xut’i V;IPFV;SG;3;PST
ʔbẹpi xki ʔbẹpi V;PRF;3;PST
ọ²ts’e xki ʔọts’e V;PRF;3;PST
jondi stá jondi V;PRF;SG;1;PRS
xa²ha dá xaha V;PFV;SG;1
ñụ²ni stí ñụni V;PRF;1;PST
o²xi stá ʔñoxi V;PRF;SG;1;PRS
mpa¹²di gi mpadi V;IRR;SG;2
xọ²ʔta²-za¹² ngí xọʔtaza V;IPFV;SG;2;PST
aʔmi gí ʔaʔmi V;IPFV;SG;2;PRS
tsọ¹²ni bi zọni V;PFV;SG;3
mä²m-xa xa mämxa V;PRF;SG;3;PRS
ko¹²ts’i ndí kots’i V;IPFV;SG;1;PST
pa²ʔmbi gi paʔmbi V;IRR;SG;2
k’ụ¹²nts’i stá nk’ụnts’i V;PRF;SG;1;PRS
a²t’i dí ʔat’i V;IPFV;SG;1;PRS
hmi²-bojä¹² ndí hmibojä V;IPFV;SG;1;PST
tä¹²ki xa ntäki V;PRF;SG;3;PRS
fọge gá fọge V;PFV;SG;2
hä² gi hñä V;IRR;SG;2
ʔya²ha ngí ʔyaha V;IPFV;SG;2;PST
mpụ¹²nga²-k’eñä dí mpụngak’eñä V;IPFV;SG;1;PRS
fụ²gi dá fụgi V;PFV;SG;1
niʔtsi mí niʔtsi V;IPFV;SG;3;PST
he²te stí hete V;PRF;1;PST
fo²nt’i gí font’i V;IPFV;SG;2;PRS
ko²pe²ra ndí kopera V;IPFV;SG;1;PST
zụ²di zụdi V;IPFV;SG;3;PRS
k’a¹²hni xa k’ahni V;PRF;SG;3;PRS
hogi hogi V;IPFV;SG;3;PRS
pọ¹²ni dí pọni V;IPFV;SG;1;PRS
hñe¹²ts’e gí hñets’e V;IPFV;SG;2;PRS
at’i gi ʔyat’i V;IRR;SG;2
zẹdi gi zẹdi V;IRR;SG;2
mädi bi mädi V;PFV;SG;3
ndo²ʔmi dí ndoʔmi V;IPFV;SG;1;PRS
xaʔti stí xaʔti V;PRF;1;PST
jot’i stá jot’i V;PRF;SG;1;PRS
kats’i bi gats’i V;PFV;SG;3
ha¹²xki xki haxki V;PRF;3;PST
ntsä²t’i ndí ntsät’i V;IPFV;SG;1;PST
tut’i dá tut’i V;PFV;SG;1
ntra²si²sta xkí ntrasista V;PRF;2;PST
pa¹²nts’i stí pants’i V;PRF;1;PST
ñä²-te xa ñäte V;PRF;SG;3;PRS
jụ¹² stí jụ V;PRF;1;PST
u²ti xká ʔuti V;PRF;SG;2;PRS
hmi²p-ts’ẹdi xká hmipts’ẹdi V;PRF;SG;2;PRS
ʔba¹²xni gi ʔbaxni V;IRR;SG;2
nxaʔmi ngí nxaʔmi V;IPFV;SG;2;PST
ta²ki dí taki V;IPFV;SG;1;PRS
xa²n-the da nxanthe V;IRR;SG;3
tọ¹²ke gí tọke V;IPFV;SG;2;PRS
ʔbẹ²bo gi ʔmẹbo V;IRR;SG;2
mpụ¹²nga²-nxadi ngí mpụnganxadi V;IPFV;SG;2;PST
họ²-ndgu mí họndgu V;IPFV;SG;3;PST
xi²hni ngí xihni V;IPFV;SG;2;PST
dent’i ndí dent’i V;IPFV;SG;1;PST
ʔba²ni bi ʔbani V;PFV;SG;3
hu²mụi xká hñümụi V;PRF;SG;2;PRS
tsọ¹²ge ga tsọge V;IRR;SG;1
mip-ʔyẹ mí mipʔyẹ V;IPFV;SG;3;PST
fọ²t’e da fọt’e V;IRR;SG;3
ʔñe²nt’i da ʔñent’i V;IRR;SG;3
fẹt’i xa mẹt’i V;PRF;SG;3;PRS
ʔñe²-ñä stá ʔñeñä V;PRF;SG;1;PRS
xọ²ni gá xọni V;PFV;SG;2
po²gi xká pogi V;PRF;SG;2;PRS
fat’ä²-juä¹² xki fat’äjuä V;PRF;3;PST
xahni bi xahni V;PFV;SG;3
a²ka²-te stí ʔñakate V;PRF;1;PST
nxadi da nxadi V;IRR;SG;3
bo¹² ndí bo V;IPFV;SG;1;PST
mähwi da mähwi V;IRR;SG;3
poʔtsi poʔtsi V;IPFV;SG;3;PRS
pụʔtsi gá pụʔtsi V;PFV;SG;2
ñä²ki ñäki V;IPFV;SG;3;PRS
ʔyọ²ke dá ʔyọke V;PFV;SG;1
xani gí xani V;IPFV;SG;2;PRS
nkä¹²-xuui stá nkäxuui V;PRF;SG;1;PRS
ntra²si²sta dí ntrasista V;IPFV;SG;1;PRS
ʔba¹²hni dí ʔbahni V;IPFV;SG;1;PRS
tsi²-mdo ndí tsimdo V;IPFV;SG;1;PST
pụ²t’i xká pụt’i V;PRF;SG;2;PRS
ʔyopi ga ʔyopi V;IRR;SG;1
nxa²ha xa nxaha V;PRF;SG;3;PRS
yo-ñä¹²hi xki yoñähi V;PRF;3;PST
kue¹²nt’i stá kuent’i V;PRF;SG;1;PRS
ʔuengi xkí ʔuengi V;PRF;2;PST
a²n-sei da ʔñansëi V;IRR;SG;3
hwäts’i xa hwäts’i V;PRF;SG;3;PRS
hñu²ts’i xkí hñuts’i V;PRF;2;PST
xẹ²t’i ga xẹt’i V;IRR;SG;1
hä²-thä häthä V;IPFV;SG;3;PRS
ụ²n-te xki ʔñụnte V;PRF;3;PST
ndo-ne ngí ndone V;IPFV;SG;2;PST
t’i xa t’i V;PRF;SG;3;PRS
juä²ni gí juäni V;IPFV;SG;2;PRS
ne¹²ts’e xki nets’e V;PRF;3;PST
nda²ni xká ndani V;PRF;SG;2;PRS
uä²nts’i uänts’i V;IPFV;SG;3;PRS
nta²ni dá ntani V;PFV;SG;1
ä²hä ʔähä V;IPFV;SG;3;PRS
punt’i dá punt’i V;PFV;SG;1
kụ¹²ki xa kụki V;PRF;SG;3;PRS
ho²pi ga hopi V;IRR;SG;1
a²ki xká ʔyaki V;PRF;SG;2;PRS
nts’ẹ²di xká nts’ẹdi V;PRF;SG;2;PRS
nzo¹²-ñä xa nzoñä V;PRF;SG;3;PRS
pa ndí pa V;IPFV;SG;1;PST
tsa²-ʔyẹ da tsaʔyẹ V;IRR;SG;3
mbanji ngí mbanji V;IPFV;SG;2;PST
te¹²de da tede V;IRR;SG;3
to¹²nt’i xki tont’i V;PRF;3;PST
sẹ²-ya ngí sẹya V;IPFV;SG;2;PST
nku²mä²-ʔri²hi stá nkumäʔrihi V;PRF;SG;1;PRS
pat’i xki mpat’i V;PRF;3;PST
ntụtua-ʔri²hi ngí ntụtuaʔrihi V;IPFV;SG;2;PST
ntsẹ xa ntsẹ V;PRF;SG;3;PRS
hño-ya hñoya V;IPFV;SG;3;PRS
ʔbẹ¹²-tho stá ʔbẹtho V;PRF;SG;1;PRS
e²-ñä bi ʔñeñä V;PFV;SG;3
he²he bi nhyehe V;PFV;SG;3
ʔñu¹²ni ngí ʔñuni V;IPFV;SG;2;PST
nzo¹²-ñä xki nzoñä V;PRF;3;PST
hant-hyä da hyanthyä V;IRR;SG;3
ntẹ²ni stí ntẹni V;PRF;1;PST
tụ¹²nts’i xkí tụnts’i V;PRF;2;PST
pe²-ʔnzä xkí peʔnzä V;PRF;2;PST
ʔbụ¹²i xkí ʔbụi V;PRF;2;PST
jondi xkí jondi V;PRF;2;PST
ueʔte dí ueʔte V;IPFV;SG;1;PRS
ntsụ²di ndí ntsụdi V;IPFV;SG;1;PST
mfọ¹²-te ngí mfọte V;IPFV;SG;2;PST
ntsụi xkí ntsụi V;PRF;2;PST
piʔti ga piʔti V;IRR;SG;1
mungi stá mungi V;PRF;SG;1;PRS
hñu¹² xki hñu V;PRF;3;PST
hu¹²hni gi hñühni V;IRR;SG;2
si²gi da sigi V;IRR;SG;3
ta²-mhai mí tamhai V;IPFV;SG;3;PST
thä²ʔti thäʔti V;IPFV;SG;3;PRS
ọ²t’a²-ge¹²rra ndí ʔọt’agerra V;IPFV;SG;1;PST
hue²ki stá hueki V;PRF;SG;1;PRS
ʔbẹ²ni xká ʔmẹni V;PRF;SG;2;PRS
ne¹²hi ga nehi V;IRR;SG;1
pi¹²st’i dí pist’i V;IPFV;SG;1;PRS
kä²ki ndí käki V;IPFV;SG;1;PST
ho²nga²-ʔyo xa nhyongaʔyo V;PRF;SG;3;PRS
ut’i dá ʔut’i V;PFV;SG;1
nk’o²ni-tho nk’onitho V;IPFV;SG;3;PRS
hño²jä²ʔi mí hñojäʔi V;IPFV;SG;3;PST
ts’aki gá ts’aki V;PFV;SG;2
fọt’e xká fọt’e V;PRF;SG;2;PRS
foʔmi xkí foʔmi V;PRF;2;PST
pa mí pa V;IPFV;SG;3;PST
pi²xi stí pixi V;PRF;1;PST
tsẹ²ki stá tsẹki V;PRF;SG;1;PRS
nxa²ha gi nxaha V;IRR;SG;2
pẹ²m-ʔyo xkí pẹmʔyo V;PRF;2;PST
ẹkua²bi ga ʔẹkuabi V;IRR;SG;1
jut’i gá jut’i V;PFV;SG;2
tsiki tsiki V;IPFV;SG;3;PRS
maʔtä-juä¹² ga maʔtäjuä V;IRR;SG;1
nti²ki ga ntiki V;IRR;SG;1
ñä²-mfọ bi ñämfọ V;PFV;SG;3
fọ²ta²-te da fọtate V;IRR;SG;3
noki xki noki V;PRF;3;PST
joki ga joki V;IRR;SG;1
pa²xi gi paxi V;IRR;SG;2
dụ²-zụ dụzụ V;IPFV;SG;3;PRS
mi¹²hi gi mihi V;IRR;SG;2
e²k’ua¹²-mba gi ʔñek’uamba V;IRR;SG;2
nk’ẹ²ni xkí nk’ẹni V;PRF;2;PST
ʔbẹki dá ʔbẹki V;PFV;SG;1
ñäni xki ñäni V;PRF;3;PST
kụ²ki xká kụki V;PRF;SG;2;PRS
ha²x-mahai ngí haxmahai V;IPFV;SG;2;PST
ndu²s-te dí nduste V;IPFV;SG;1;PRS
hñei hñei V;IPFV;SG;3;PRS
hu xká hñü V;PRF;SG;2;PRS
ʔuä²ts’i gá ʔuäts’i V;PFV;SG;2
ne²xni da nexni V;IRR;SG;3
tụ²ʔtsi dá tụʔtsi V;PFV;SG;1
ta²ʔti xkí taʔti V;PRF;2;PST
pụ²xki xká pụxki V;PRF;SG;2;PRS
pụ¹²nts’i bi pụnts’i V;PFV;SG;3
họ-du da họdu V;IRR;SG;3
e²he da ʔñëhe V;IRR;SG;3
xiʔki gá xiʔki V;PFV;SG;2
bụ-do ga bụdo V;IRR;SG;1
ntọ²ʔtse da ntọʔtse V;IRR;SG;3
ñä¹²ni da ñäni V;IRR;SG;3
bi bi V;IPFV;SG;3;PRS
mfọ¹²-te gá mfọte V;PFV;SG;2
njotsui bi njotsui V;PFV;SG;3
thoʔti stá thoʔti V;PRF;SG;1;PRS
pọ²ʔtse gí pọʔtse V;IPFV;SG;2;PRS
tsụdi dí tsụdi V;IPFV;SG;1;PRS
họ²x-yä xki nhyọxyä V;PRF;3;PST
mpasia gá mpasia V;PFV;SG;2
ẹ²-ʔt-fi gá ʔñẹʔthfi V;PFV;SG;2
nde¹² ngí nde V;IPFV;SG;2;PST
ntsa xká ntsa V;PRF;SG;2;PRS
hu²ʔmi gí huʔmi V;IPFV;SG;2;PRS
ụi ga ʔụi V;IRR;SG;1
ti²ʔti stá tiʔti V;PRF;SG;1;PRS
ndo-ne da ndone V;IRR;SG;3
ntsabi gí ntsabi V;IPFV;SG;2;PRS
ntu¹²ti xká ntuti V;PRF;SG;2;PRS
dụ da ndụ V;IRR;SG;3
hä¹²ts’i dí häts’i V;IPFV;SG;1;PRS
nọt’e da nọt’e V;IRR;SG;3
tsẹ²-nza ga ntsẹnza V;IRR;SG;1
ka¹²-k’yẹ kak’yẹ V;IPFV;SG;3;PRS
kụ¹² kụ V;IPFV;SG;3;PRS
ti²di xa tidi V;PRF;SG;3;PRS
tọ¹²ke xa tọke V;PRF;SG;3;PRS
nọ¹²nts’i nọnts’i V;IPFV;SG;3;PRS
kadi-tho mí kaditho V;IPFV;SG;3;PST
pụ²ʔti gi pụʔti V;IRR;SG;2
u¹²t’i gi ʔñüt’i V;IRR;SG;2
ntsa ndí ntsa V;IPFV;SG;1;PST
ʔui²-thä gi ʔuïthä V;IRR;SG;2
fe¹²t’e mí fet’e V;IPFV;SG;3;PST
kụ²ʔmi xkí kụʔmi V;PRF;2;PST
nthọ²xni xká nthọxni V;PRF;SG;2;PRS
ʔua²ʔmi xki ʔuaʔmi V;PRF;3;PST
ko²t’i xkí kot’i V;PRF;2;PST
ma²m-thu¹²hu xa mamthuhu V;PRF;SG;3;PRS
tsi²-mdo dá tsimdo V;PFV;SG;1
ndo¹²ki dá ndoki V;PFV;SG;1
ọts’e stá ʔọts’e V;PRF;SG;1;PRS
a²fi ndí ʔäfi V;IPFV;SG;1;PST
hñahni xa hñahni V;PRF;SG;3;PRS
k’ami mí k’ami V;IPFV;SG;3;PST
nts’o¹²ni bi nts’oni V;PFV;SG;3
pẹpi xki pẹpi V;PRF;3;PST
ụ²-ngu mí ʔụngu V;IPFV;SG;3;PST
nta¹²ko xa ntako V;PRF;SG;3;PRS
a²k-sei xkí ʔñaksei V;PRF;2;PST
ʔña¹²ni dá ʔñani V;PFV;SG;1
ʔro²t’i ʔrot’i V;IPFV;SG;3;PRS
tä²-te xa ntäte V;PRF;SG;3;PRS
tsẹ²t’i xká tsẹt’i V;PRF;SG;2;PRS
dent’i xkí dent’i V;PRF;2;PST
edi ga ʔëdi V;IRR;SG;1
thät’i ndí thät’i V;IPFV;SG;1;PST
ʔui² da ʔuï V;IRR;SG;3
pẹ²pa²-te gá pẹpate V;PFV;SG;2
ndo-ne xká ndone V;PRF;SG;2;PRS
hä¹²xi gá hñäxi V;PFV;SG;2
ʔñe¹²-da stá ʔñeda V;PRF;SG;1;PRS
ja¹²-nä¹²nä gí janänä V;IPFV;SG;2;PRS
ñän-t’e²k’ei xa ñänt’ek’ei V;PRF;SG;3;PRS
thọ²t-hyä dí thọthyä V;IPFV;SG;1;PRS
ntụ¹²ni dá ntụni V;PFV;SG;1
kaʔtsi stí kaʔtsi V;PRF;1;PST
nzo¹²-ñä mí nzoñä V;IPFV;SG;3;PST
pe²ng-tho xa pengtho V;PRF;SG;3;PRS
xot’i mí xot’i V;IPFV;SG;3;PST
ñu²ni dá ñuni V;PFV;SG;1
ts’iki dí ts’iki V;IPFV;SG;1;PRS
ra²ncha gí rancha V;IPFV;SG;2;PRS
fo¹²ki da foki V;IRR;SG;3
hñahni ga hñahni V;IRR;SG;1
tẹ²ʔmi tẹʔmi V;IPFV;SG;3;PRS
jụʔtsi ga jụʔtsi V;IRR;SG;1
nxaʔmi stí nxaʔmi V;PRF;1;PST
ts’o²-da ndí ts’oda V;IPFV;SG;1;PST
ẹt’i ndí ʔẹt’i V;IPFV;SG;1;PST
ye²ʔtsi xki yeʔtsi V;PRF;3;PST
nsu ndí nsu V;IPFV;SG;1;PST
mit’i ga mit’i V;IRR;SG;1
be²n-sẹ ngí bensẹ V;IPFV;SG;2;PST
fe²ʔtse xki feʔtse V;PRF;3;PST
ʔba²ʔti dí ʔbaʔti V;IPFV;SG;1;PRS
hwäʔmbi dá hwäʔmbi V;PFV;SG;1
nxu²ni stí nxuni V;PRF;1;PST
pist’i dí pist’i V;IPFV;SG;1;PRS
tọ¹²ke tọke V;IPFV;SG;3;PRS
yo²bri ngí yobri V;IPFV;SG;2;PST
piʔti gi piʔti V;IRR;SG;2
jä²ts’i gi jäts’i V;IRR;SG;2
ko²hi stá kohi V;PRF;SG;1;PRS
ndẹ¹² ndí ndẹ V;IPFV;SG;1;PST
fụ²t’i gá fụt’i V;PFV;SG;2
po¹²n-tho xká pontho V;PRF;SG;2;PRS
pumfri ndí pumfri V;IPFV;SG;1;PST
ye²ʔtsi xa yeʔtsi V;PRF;SG;3;PRS
kọ²ʔte ga nkọʔte V;IRR;SG;1
eni ʔëni V;IPFV;SG;3;PRS
po¹²nt’i xa pont’i V;PRF;SG;3;PRS
nta¹²ko dá ntako V;PFV;SG;1
hña²ndi dá hñandi V;PFV;SG;1
hñẹ²ki xkí hñẹki V;PRF;2;PST
ọde stí ʔọde V;PRF;1;PST
ʔbat’i mí ʔbat’i V;IPFV;SG;3;PST
jat’i xki gat’i V;PRF;3;PST
mfi²ts’i gá mfits’i V;PFV;SG;2
ʔbẹ²go gí ʔbẹgo V;IPFV;SG;2;PRS
ẹʔtsi xa ʔẹʔtsi V;PRF;SG;3;PRS
tut’i ga tut’i V;IRR;SG;1
jua²ts’i dí juats’i V;IPFV;SG;1;PRS
xụ² ga xụ V;IRR;SG;1
hño²ʔti ndí hñoʔti V;IPFV;SG;1;PST
tsọ¹²họ xa tsọhọ V;PRF;SG;3;PRS
ẹts’i ʔẹts’i V;IPFV;SG;3;PRS
tsa²n-te xkí ntsante V;PRF;2;PST
nge¹²-ne ndí ngene V;IPFV;SG;1;PST
zo²n-da bi nzonda V;PFV;SG;3
fats’i mí fats’i V;IPFV;SG;3;PST
änt’i ngí ʔänt’i V;IPFV;SG;2;PST
tẹ gi tẹ V;IRR;SG;2
k’e gá nk’ë V;PFV;SG;2
pu²ni dí puni V;IPFV;SG;1;PRS
ʔbẹ¹²di stí ʔbẹdi V;PRF;1;PST
hụ¹²fi gí hụfi V;IPFV;SG;2;PRS
ʔbat’i gá ʔbat’i V;PFV;SG;2
to²t’i mí tot’i V;IPFV;SG;3;PST
xọ²ʔta²-za¹² stí xọʔtaza V;PRF;1;PST
hñei ngí hñei V;IPFV;SG;2;PST
tsi¹²ts’i ngí tsits’i V;IPFV;SG;2;PST
re²pe²la dá repela V;PFV;SG;1
ọ²t’a²-ngo xká ʔñọt’ango V;PRF;SG;2;PRS
pụʔti da mụʔti V;IRR;SG;3
xä¹²ndi gá xändi V;PFV;SG;2
hu²ʔmi stí hüʔmi V;PRF;1;PST
bụ¹²ʔtsi da bụʔtsi V;IRR;SG;3
zẹdi zẹdi V;IPFV;SG;3;PRS
bụ¹²-gu stá bụgu V;PRF;SG;1;PRS
mämbi ndí mämbi V;IPFV;SG;1;PST
xe²hai gí xehai V;IPFV;SG;2;PRS
ntụtua-ʔri²hi xká ntụtuaʔrihi V;PRF;SG;2;PRS
ʔra²ʔtsi mí ʔraʔtsi V;IPFV;SG;3;PST
mfa²nt’a²-ñä mfant’añä V;IPFV;SG;3;PRS
nthẹ-xu²di stá nthẹxudi V;PRF;SG;1;PRS
tsẹ²ki da zẹki V;IRR;SG;3
ño¹²h-wi mí ñohwi V;IPFV;SG;3;PST
ne²te gi nete V;IRR;SG;2
ta²ka²-te mí takate V;IPFV;SG;3;PST
hñu¹² stí hñu V;PRF;1;PST
nka²la²mbre xki nkalambre V;PRF;3;PST
te gí te V;IPFV;SG;2;PRS
xọt’e ndí xọt’e V;IPFV;SG;1;PST
punt’i gi punt’i V;IRR;SG;2
pa¹²nt’i ga pant’i V;IRR;SG;1
njänt’i njänt’i V;IPFV;SG;3;PRS
họ²ke ga họke V;IRR;SG;1
ts’ụ¹²ti dí ts’ụti V;IPFV;SG;1;PRS
xats’i mí xats’i V;IPFV;SG;3;PST
hest’i mí hëst’i V;IPFV;SG;3;PST
jo¹²ni bi joni V;PFV;SG;3
ho gi hyo V;IRR;SG;2
ʔbẹ¹²ts’i ʔbẹts’i V;IPFV;SG;3;PRS
ts’änt’i da ts’änt’i V;IRR;SG;3
ʔba²ʔti da ʔbaʔti V;IRR;SG;3
xu¹²st’i ga xust’i V;IRR;SG;1
xi²xi xki xixi V;PRF;3;PST
xo¹²fo xkí xofo V;PRF;2;PST
nde¹² gi nde V;IRR;SG;2
ts’o²-da dá ts’oda V;PFV;SG;1
kue¹²mi dí kuemi V;IPFV;SG;1;PRS
do²ʔmi gi doʔmi V;IRR;SG;2
ndo bi ndo V;PFV;SG;3
nku gi nku V;IRR;SG;2
kue²t’e mí kuet’e V;IPFV;SG;3;PST
nä²-thä da näthä V;IRR;SG;3
t’a¹²xki t’axki V;IPFV;SG;3;PRS
ʔra²ʔtsi gí ʔraʔtsi V;IPFV;SG;2;PRS
kue¹²te xká kuete V;PRF;SG;2;PRS
hñe²ts’i ndí hñëts’i V;IPFV;SG;1;PST
xẹ²gi mí xẹgi V;IPFV;SG;3;PST
hñi da hñi V;IRR;SG;3
the²nä²-te da thenäte V;IRR;SG;3
ʔba²-sẹ bi ʔbasẹ V;PFV;SG;3
mpu²mbi gá mpumbi V;PFV;SG;2
mponi mponi V;IPFV;SG;3;PRS
tho²ʔtsi dí thoʔtsi V;IPFV;SG;1;PRS
xaʔti bi xaʔti V;PFV;SG;3
dẹ²-spi xki ndẹspi V;PRF;3;PST
pe xkí pe V;PRF;2;PST
hñọ¹²ʔ-xu xki hñọʔxu V;PRF;3;PST
kä²-do dá nkädo V;PFV;SG;1
thẹts’i ndí thẹts’i V;IPFV;SG;1;PST
k’ue¹²nt’i xa k’uent’i V;PRF;SG;3;PRS
mä²m-xa gi mämxa V;IRR;SG;2
ha²ni xa hyani V;PRF;SG;3;PRS
hant-hyä mí hanthyä V;IPFV;SG;3;PST
mfa²di da mfadi V;IRR;SG;3
ʔña²nga²-ñhu²ni ʔñangañhuni V;IPFV;SG;3;PRS
mfe²ʔtse ngí mfeʔtse V;IPFV;SG;2;PST
nxaki gi nxaki V;IRR;SG;2
mpụ¹²ni bi mpụni V;PFV;SG;3
ne¹²hi stí nehi V;PRF;1;PST
kuete xa kuete V;PRF;SG;3;PRS
punt’i da punt’i V;IRR;SG;3
pụ²nts’i xki mụnts’i V;PRF;3;PST
thi¹²nt’i xki dint’i V;PRF;3;PST
pat’i mí pat’i V;IPFV;SG;3;PST
hu²ʔmbi gi hñüʔmbi V;IRR;SG;2
ẹ²nts’a²-te dí ʔẹnts’ate V;IPFV;SG;1;PRS
pẹ²gi pẹgi V;IPFV;SG;3;PRS
pats’i xa mats’i V;PRF;SG;3;PRS
ja-nguẹ¹²nda janguẹnda V;IPFV;SG;3;PRS
xongi da xongi V;IRR;SG;3
họ²x-yä họxyä V;IPFV;SG;3;PRS
pa-thä bi pathä V;PFV;SG;3
nxat’i xká nxat’i V;PRF;SG;2;PRS
fụi da fụi V;IRR;SG;3
k’ụ¹²nts’i bi nk’ụnts’i V;PFV;SG;3
e²-ñä xki ʔñeñä V;PRF;3;PST
pẹ²t-hme ga pẹthme V;IRR;SG;1
hẹ²n-the xki nhyẹnthe V;PRF;3;PST
ho¹² xkí ho V;PRF;2;PST
dä²hñei xki ndähñe V;PRF;3;PST
hụ¹²fi hụfi V;IPFV;SG;3;PRS
ja¹-²mäsu stí jamäsu V;PRF;1;PST
tsiti gá tsiti V;PFV;SG;2
u²di ndí ʔudi V;IPFV;SG;1;PST
hua²xi ngí huaxi V;IPFV;SG;2;PST
jụmpa²bi jụmpabi V;IPFV;SG;3;PRS
e²ʔtsa²-te ʔëʔtsate V;IPFV;SG;3;PRS
pọ¹²họ bi pọhọ V;PFV;SG;3
xuni dá xuni V;PFV;SG;1
honi mí honi V;IPFV;SG;3;PST
hu²ʔmi dá huʔmi V;PFV;SG;1
xo¹²fo dá xofo V;PFV;SG;1
tsi bi zi V;PFV;SG;3
ma²te²ne da matene V;IRR;SG;3
jo¹²ts’i gí jots’i V;IPFV;SG;2;PRS
he²ʔmi mí heʔmi V;IPFV;SG;3;PST
ts’ụ²-xẹ¹²ni xa ts’ụxẹni V;PRF;SG;3;PRS
pa² ga pa V;IRR;SG;1
ñä²-mä²ñʔụ gá ñämäñʔụ V;PFV;SG;2
pẹhni gá pẹhni V;PFV;SG;2
ani ndí ʔani V;IPFV;SG;1;PST
jue²ni ngí jueni V;IPFV;SG;2;PST
zo²-te gi zote V;IRR;SG;2
hẹ¹²ni xká hyẹni V;PRF;SG;2;PRS
mpants’i xká mpants’i V;PRF;SG;2;PRS
o²k-jä xká ʔñokjä V;PRF;SG;2;PRS
xi²ʔtsi dá xiʔtsi V;PFV;SG;1
ga²-ʔnthä xa ngaʔnthä V;PRF;SG;3;PRS
ts’i²hni dá ts’ihni V;PFV;SG;1
foʔtsi xa foʔtsi V;PRF;SG;3;PRS
pẹ²m-ʔyo gi pẹmʔyo V;IRR;SG;2
ñä²-sẹ ga ñäsẹ V;IRR;SG;1
u²-spi stá ʔñuspi V;PRF;SG;1;PRS
nko²ʔmi xki nkoʔmi V;PRF;3;PST
bis-tho da bistho V;IRR;SG;3
mbu²ku dí mbuku V;IPFV;SG;1;PRS
pe²ʔte ga peʔte V;IRR;SG;1
hñẹ²ki dá hñẹki V;PFV;SG;1
sụ¹²ni xká sụni V;PRF;SG;2;PRS
hño²-sẹ bi hñosẹ V;PFV;SG;3
ʔnra²nxu dá ʔnranxu V;PFV;SG;1
ue²n-ga²nza¹²ya dí uenganzaya V;IPFV;SG;1;PRS
mu²nts’i ngí munts’i V;IPFV;SG;2;PST
nä²via ga nävia V;IRR;SG;1
hmät’i ngí hmät’i V;IPFV;SG;2;PST
hñä¹²ts’i bi hñäts’i V;PFV;SG;3
pe²te da pete V;IRR;SG;3
njot’i da njot’i V;IRR;SG;3
po²ho mí poho V;IPFV;SG;3;PST
nu²-ma²nt’ụ²tsa gí numant’ụtsa V;IPFV;SG;2;PRS
xa²s-te bi nxaste V;PFV;SG;3
njuats’i stí njuats’i V;PRF;1;PST
ta²ka²-pa xki takapa V;PRF;3;PST
ta²ʔ-nthä xkí taʔnthä V;PRF;2;PST
hẹ²ʔti xki hyẹʔti V;PRF;3;PST
te ngí te V;IPFV;SG;2;PST
nxa²n-the stí nxanthe V;PRF;1;PST
xi²t’i ndí xit’i V;IPFV;SG;1;PST
ko²hi dá kohi V;PFV;SG;1
hen-thä¹²hi mí hënthähi V;IPFV;SG;3;PST
pe²ni ndí peni V;IPFV;SG;1;PST
a²k-sei gi ʔñaksei V;IRR;SG;2
ʔyo²-mfọ bi ʔñomfọ V;PFV;SG;3
thụ²ni gi thụni V;IRR;SG;2
ndä-tsu gí ndätsu V;IPFV;SG;2;PRS
xänts’i dá xänts’i V;PFV;SG;1
ka²mfri kamfri V;IPFV;SG;3;PRS
ʔbẹ²-mfo bi ʔbẹmfo V;PFV;SG;3
do¹²ni gá doni V;PFV;SG;2
mpụʔtsa-ñäxu dí mpụʔtsañäxu V;IPFV;SG;1;PRS
ñuts’i xa ñuts’i V;PRF;SG;3;PRS
ʔñä²xi xká ʔñäxi V;PRF;SG;2;PRS
ʔuẹ¹²ti stí ʔuẹti V;PRF;1;PST
da²ʔthi daʔthi V;IPFV;SG;3;PRS
hẹ²ka²-ndäpo mí hẹkandäpo V;IPFV;SG;3;PST
ndä-ne xká ndäne V;PRF;SG;2;PRS
ʔbụki ngí ʔbụki V;IPFV;SG;2;PST
kai mí kai V;IPFV;SG;3;PST
kọnga²-ba¹²yo ngí kọngabayo V;IPFV;SG;2;PST
tsụ²-te gí tsụte V;IPFV;SG;2;PRS
pẹ²t-jụ¹²ni da pẹtjụni V;IRR;SG;3
ʔñẹni ʔñẹni V;IPFV;SG;3;PRS
nku²mä²-ʔri²hi gá nkumäʔrihi V;PFV;SG;2
tẹ¹²-da-ʔñu¹² bi tẹdaʔñu V;PFV;SG;3
nda²n-gua da ndangua V;IRR;SG;3
ntsu²ni stá ntsuni V;PRF;SG;1;PRS
fọ-jyä bi fọjyä V;PFV;SG;3
foti stá foti V;PRF;SG;1;PRS
thẹ¹²lo da thẹlo V;IRR;SG;3
yụ²ni xa ñụni V;PRF;SG;3;PRS
mpa¹²nt’i dá mpant’i V;PFV;SG;1
mpasia ngí mpasia V;IPFV;SG;2;PST
ti xa ti V;PRF;SG;3;PRS
fo²nt’i xká font’i V;PRF;SG;2;PRS
tsa²-ʔyo ndí tsaʔyo V;IPFV;SG;1;PST
yat’i dí yat’i V;IPFV;SG;1;PRS
ko²ʔti gi koʔti V;IRR;SG;2
ọ²ge xki ʔyọge V;PRF;3;PST
puʔti stá puʔti V;PRF;SG;1;PRS
mfẹ²ni stá mfẹni V;PRF;SG;1;PRS
gant’i xká gant’i V;PRF;SG;2;PRS
ts’o¹²ni ndí ts’oni V;IPFV;SG;1;PST
se²nti senti V;IPFV;SG;3;PRS
käts’i gi käts’i V;IRR;SG;2
hñẹ²ki stí hñẹki V;PRF;1;PST
nko²ntra stá nkontra V;PRF;SG;1;PRS
he²ʔti gi hñëʔti V;IRR;SG;2
ue²n-t’ẹi xká uent’ẹi V;PRF;SG;2;PRS
ọ²t’a²-bu¹²hla bi ʔñọt’abuhla V;PFV;SG;3
po¹²ni mí poni V;IPFV;SG;3;PST
pa¹²m-hyä gí pamhyä V;IPFV;SG;2;PRS
ñat’i dá ñat’i V;PFV;SG;1
ʔñupi bi ʔñupi V;PFV;SG;3
nxu²-mfọ xkí nxumfọ V;PRF;2;PST
ʔmi¹²fi mí ʔmifi V;IPFV;SG;3;PST
ndä-ne ga ndäne V;IRR;SG;1
nes-t’i¹²hi bi nest’ihi V;PFV;SG;3
ẹ²nte dí ʔẹnte V;IPFV;SG;1;PRS
re²sga ndí resga V;IPFV;SG;1;PST
ẹ-ʔuada xki ʔñẹʔuada V;PRF;3;PST
ja¹²-da¹²da gí jadada V;IPFV;SG;2;PRS
mfọ²k-to mí mfọkto V;IPFV;SG;3;PST
zọte xkí zọte V;PRF;2;PST
nga¹²nts’i ndí ngants’i V;IPFV;SG;1;PST
ʔra²-mbi bi ʔrambi V;PFV;SG;3
pa¹²t’i xkí pat’i V;PRF;2;PST
xont’i xont’i V;IPFV;SG;3;PRS
ʔbẹ¹²pi xkí ʔbẹpi V;PRF;2;PST
jụ¹²st’i ngí jụst’i V;IPFV;SG;2;PST
ñäni xkí ñäni V;PRF;2;PST
ʔbọ²t’e gi ʔbọt’e V;IRR;SG;2
pọ²ʔtse xkí pọʔtse V;PRF;2;PST
ʔba²ʔti xká ʔbaʔti V;PRF;SG;2;PRS
ra²ncha stí rancha V;PRF;1;PST
xa¹²xi gi xaxi V;IRR;SG;2
mban-ji²-tho ngí mbanjitho V;IPFV;SG;2;PST
hmä¹²hni dá hmähni V;PFV;SG;1
ts’ä¹² xki ts’ä V;PRF;3;PST
tsa ndí tsa V;IPFV;SG;1;PST
xọt’e xkí xọt’e V;PRF;2;PST
pẹ²ʔti dí pẹʔti V;IPFV;SG;1;PRS
mẹ¹²ta²-ʔba da mẹtaʔba V;IRR;SG;3
ʔyọ² xa ʔyọ V;PRF;SG;3;PRS
kụ¹²t’i ga kụt’i V;IRR;SG;1
ʔyots’i ʔyots’i V;IPFV;SG;3;PRS
ho²ʔti xkí hoʔti V;PRF;2;PST
fa¹²ti gi fati V;IRR;SG;2
emei dá ʔëmei V;PFV;SG;1
kụ²ʔ-sta mí kụʔsta V;IPFV;SG;3;PST
ntsụ²di mí ntsụdi V;IPFV;SG;3;PST
ʔña¹²ni stí ʔñani V;PRF;1;PST
bụ¹²ts’i xki bụts’i V;PRF;3;PST
hahni bi hyahni V;PFV;SG;3
ẹnts’i gi ʔyẹnts’i V;IRR;SG;2
mat’a-juä¹² stí mat’ajuä V;PRF;1;PST
poki xa poki V;PRF;SG;3;PRS
i¹²t’i mí ʔit’i V;IPFV;SG;3;PST
mẹ¹²s-t’e²k’ei stí mẹst’ëk’ëi V;PRF;1;PST
nda²ni gí ndani V;IPFV;SG;2;PRS
ti²ka²-te tikate V;IPFV;SG;3;PRS
ntsụ²di gá ntsụdi V;PFV;SG;2
ʔuäts’i stá ʔuäts’i V;PRF;SG;1;PRS
käi mí käi V;IPFV;SG;3;PST
ta²st’i gí tast’i V;IPFV;SG;2;PRS
dont’i stí dont’i V;PRF;1;PST
xa²ha bi xaha V;PFV;SG;3
uänt’i da uänt’i V;IRR;SG;3
k’ont’i da k’ont’i V;IRR;SG;3
ts’iki mí ts’iki V;IPFV;SG;3;PST
mpasia bi mpasia V;PFV;SG;3
ue²n-ga²hai uengahai V;IPFV;SG;3;PRS
ra²ncha gá rancha V;PFV;SG;2
be¹²he xkí behe V;PRF;2;PST
tsụ²ti gi tsụti V;IRR;SG;2
pọ²n-jụ gá mpọnjụ V;PFV;SG;2
o²-tho xki ʔñotho V;PRF;3;PST
tẹ²xi ngí tẹxi V;IPFV;SG;2;PST
k’a¹²ts’i bi k’ats’i V;PFV;SG;3
ndä¹²-ta gá ndäta V;PFV;SG;2
ntra²si²sta dá ntrasista V;PFV;SG;1
u¹²ts’i dí ʔuts’i V;IPFV;SG;1;PRS
ja²pi stá japi V;PRF;SG;1;PRS
ụ²ta²-te gá ʔụtate V;PFV;SG;2
ẹt’i bi ʔyẹt’i V;PFV;SG;3
juʔti stí juʔti V;PRF;1;PST
tsu¹²st’i xki tsust’i V;PRF;3;PST
ts’a²tsi gí ts’atsi V;IPFV;SG;2;PRS
xuni gí xuni V;IPFV;SG;2;PRS
ʔño¹²ui gi ʔñoui V;IRR;SG;2
xẹts’i xa xẹts’i V;PRF;SG;3;PRS
kụ¹²hni gí kụhni V;IPFV;SG;2;PRS
pẹ¹²hi stá pẹhi V;PRF;SG;1;PRS
hyẹ¹²hẹ xki hyẹhẹ V;PRF;3;PST
ta²ka²-pa gí takapa V;IPFV;SG;2;PRS
po¹²nt’i dá pont’i V;PFV;SG;1
xi¹²ʔtsi xa xiʔtsi V;PRF;SG;3;PRS
mpasia gí mpasia V;IPFV;SG;2;PRS
pụ²ʔhmi xki mpụʔhmi V;PRF;3;PST
mpa¹²di stí mpadi V;PRF;1;PST
họ-du xki họdu V;PRF;3;PST
e¹²nthi ngí ʔenthi V;IPFV;SG;2;PST
ẹnt’i ngí ʔẹnt’i V;IPFV;SG;2;PST
họ²t’a²-daʔthi xa họt’adaʔthi V;PRF;SG;3;PRS
joʔmi gá joʔmi V;PFV;SG;2
ot’i ndí ʔot’i V;IPFV;SG;1;PST
bụ da mbụ V;IRR;SG;3
pumfri dí pumfri V;IPFV;SG;1;PRS
mfa²nt’a²-ñä ndí mfant’añä V;IPFV;SG;1;PST
tu xkí tu V;PRF;2;PST
k’ụ²ʔtsi ndí k’ụʔtsi V;IPFV;SG;1;PST
fọnt’i mí fọnt’i V;IPFV;SG;3;PST
xọ²ge xki xọge V;PRF;3;PST
tsẹ²t’i bi zẹt’i V;PFV;SG;3
nani xká nani V;PRF;SG;2;PRS
bụ¹²ts’i xkí bụts’i V;PRF;2;PST
xụ²ki bi xụki V;PFV;SG;3
tẹ²xi xa ntẹxi V;PRF;SG;3;PRS
xa²s-te da nxaste V;IRR;SG;3
to¹²nt’i da tont’i V;IRR;SG;3
jua²-sẹ¹²hẹ stí juasẹhẹ V;PRF;1;PST
pẹ²-snä xkí pẹsnä V;PRF;2;PST
nani dí nani V;IPFV;SG;1;PRS
kọ²de ngí kọde V;IPFV;SG;2;PST
ja¹²-mẹ²ti xká jamẹti V;PRF;SG;2;PRS
pe²ng-tho xká pengtho V;PRF;SG;2;PRS
ju²x-huä¹²hi juxhuähi V;IPFV;SG;3;PRS
tsẹti stí tsẹti V;PRF;1;PST
ne-pe ngí nepe V;IPFV;SG;2;PST
pä²hi xki pähi V;PRF;3;PST
ʔra²-mbi xká ʔrambi V;PRF;SG;2;PRS
hme¹²-ya dí hmeya V;IPFV;SG;1;PRS
mpẹ¹²ts’i gí mpẹts’i V;IPFV;SG;2;PRS
uẹ dí uẹ V;IPFV;SG;1;PRS
hegi stá hëgi V;PRF;SG;1;PRS
tsit’i gí tsit’i V;IPFV;SG;2;PRS
tsụ¹² xká tsụ V;PRF;SG;2;PRS
yụki bi yụki V;PFV;SG;3
thädi gí thädi V;IPFV;SG;2;PRS
po¹²nt’i ga pont’i V;IRR;SG;1
u²nga²-ngüẹ¹²nda ga ʔungangüẹnda V;IRR;SG;1
hẹ²n-the mí hẹnthe V;IPFV;SG;3;PST
ja²pa²bi xká japabi V;PRF;SG;2;PRS
yo¹²ho xkí yoho V;PRF;2;PST
ta²ki taki V;IPFV;SG;3;PRS
ko¹²nts’i ndí konts’i V;IPFV;SG;1;PST
pẹ²ʔti ndí pẹʔti V;IPFV;SG;1;PST
ẹ-ʔuada bi ʔñẹʔuada V;PFV;SG;3
tu stí tu V;PRF;1;PST
ẹnt’i xa ʔyẹnt’i V;PRF;SG;3;PRS
mä²-te gá mäte V;PFV;SG;2
xo²s-thu¹²hu bi nxosthuhu V;PFV;SG;3
ʔyots’i xki ʔyots’i V;PRF;3;PST
kät’i da gät’i V;IRR;SG;3
hwifi gi hwifi V;IRR;SG;2
nda²n-gua stí ndangua V;PRF;1;PST
nti²ki bi ntiki V;PFV;SG;3
be²n-sẹ da bensẹ V;IRR;SG;3
pa stí ma V;PRF;1;PST
xụ²-ñä gá xụñä V;PFV;SG;2
ʔyo²-ua bi ʔñogua V;PFV;SG;3
nti mí nti V;IPFV;SG;3;PST
zofo xká zofo V;PRF;SG;2;PRS
da gá da V;PFV;SG;2
ä¹²xi ngí ʔäxi V;IPFV;SG;2;PST
xa¹²gi xa xagi V;PRF;SG;3;PRS
fani ga fani V;IRR;SG;1
jodo gi jodo V;IRR;SG;2
pu²ni ga puni V;IRR;SG;1
nguent’i stá nguent’i V;PRF;SG;1;PRS
k’a²ʔtsi gá k’aʔtsi V;PFV;SG;2
uits’i stá uits’i V;PRF;SG;1;PRS
nxänts’i xki nxänts’i V;PRF;3;PST
mä¹²x-ʔo da mäxʔo V;IRR;SG;3
ka²mfri bi gamfri V;PFV;SG;3
i¹²ni dí ʔini V;IPFV;SG;1;PRS
jụi xkí jụi V;PRF;2;PST
uʔtsi gá ʔñüʔtsi V;PFV;SG;2
họ²t’e stí họt’e V;PRF;1;PST
ñän-t’e²k’ei ga ñänt’ek’ei V;IRR;SG;1
ani bi ʔyani V;PFV;SG;3
hñọ²t-hyä xkí hñọthyä V;PRF;2;PST
ʔbaʔmi stá ʔbaʔmi V;PRF;SG;1;PRS
thẹti ndí thẹti V;IPFV;SG;1;PST
ẹt’i xká ʔyẹt’i V;PRF;SG;2;PRS
jue²ni xkí jueni V;PRF;2;PST
ntsẹ²ni ga ntsẹni V;IRR;SG;1
ʔmẹpo ndí ʔmẹpo V;IPFV;SG;1;PST
o²k-jä da ʔñokjä V;IRR;SG;3
fe¹²st’e stá fest’e V;PRF;SG;1;PRS
nu¹² nu V;IPFV;SG;3;PRS
xa²ʔtsi gá xaʔtsi V;PFV;SG;2
ko²ti bi goti V;PFV;SG;3
nọ¹²-nge bi nọnge V;PFV;SG;3
kụ²ki dá kụki V;PFV;SG;1
me¹²ta²-xọ²ni mí metaxọni V;IPFV;SG;3;PST
häi gá hñäi V;PFV;SG;2
bụ¹²-gu gí bụgu V;IPFV;SG;2;PRS
ʔyo²-mfọ stá ʔñomfọ V;PRF;SG;1;PRS
ñä²-mä²ñʔụ dí ñämäñʔụ V;IPFV;SG;1;PRS
mu²nts’i da munts’i V;IRR;SG;3
o¹² da ʔyo V;IRR;SG;3
tänt’i mí tänt’i V;IPFV;SG;3;PST
pe²te dí pete V;IPFV;SG;1;PRS
fụ²ʔtsi xká fụʔtsi V;PRF;SG;2;PRS
nthẹ-ji² nthẹji V;IPFV;SG;3;PRS
hä² ngí hä V;IPFV;SG;2;PST
ho²k’-bọts’e da hok’bọts’e V;IRR;SG;3
hmä²n-the gí hmänthe V;IPFV;SG;2;PRS
tro¹²zo trozo V;IPFV;SG;3;PRS
k’ẹ²ʔti da k’ẹʔti V;IRR;SG;3
tsä²ki gi tsäki V;IRR;SG;2
da xkí da V;PRF;2;PST
ʔbẹgo gi ʔbẹgo V;IRR;SG;2
ʔñe²nt’i xa ʔñent’i V;PRF;SG;3;PRS
xänts’i gi xänts’i V;IRR;SG;2
tsọ¹²ge mí tsọge V;IPFV;SG;3;PST
fụ²x-hwä²hi gá mfụxhwähi V;PFV;SG;2
hi¹² gi hi V;IRR;SG;2
a²k-sei xa ʔñaksei V;PRF;SG;3;PRS
täni bi ntäni V;PFV;SG;3
jụ¹² gá jụ V;PFV;SG;2
tsant’i da tsant’i V;IRR;SG;3
pọ²ʔtse bi pọʔtse V;PFV;SG;3
k’a²ʔtsi dí k’aʔtsi V;IPFV;SG;1;PRS
ndẹ¹² xká ndẹ V;PRF;SG;2;PRS
hei hëi V;IPFV;SG;3;PRS
jụts’i xa gụts’i V;PRF;SG;3;PRS
thọhni dí thọhni V;IPFV;SG;1;PRS
mbu²ku gá mbuku V;PFV;SG;2
ts’ahni stá ts’ahni V;PRF;SG;1;PRS
ʔba-ñä xki ʔbañä V;PRF;3;PST
ts’ụ¹²ti xki ts’ụti V;PRF;3;PST
nthint’i mí nthint’i V;IPFV;SG;3;PST
ma-ñä bi mañä V;PFV;SG;3
ntsụi dá ntsụi V;PFV;SG;1
hu²-ʔuada ga ñhüʔuada V;IRR;SG;1
kuete da kuete V;IRR;SG;3
hu²-nä²ni gá ñhünäni V;PFV;SG;2
tọ¹²ge stí tọge V;PRF;1;PST
ntsabi xkí ntsabi V;PRF;2;PST
pa¹²ts’i xká pats’i V;PRF;SG;2;PRS
zi²thu dí zithu V;IPFV;SG;1;PRS
nä²via xa nävia V;PRF;SG;3;PRS
tẹ²t’i mí tẹt’i V;IPFV;SG;3;PST
ntsụi bi ntsụi V;PFV;SG;3
gä²ʔtsi mí gäʔtsi V;IPFV;SG;3;PST
ne¹²hi ndí nehi V;IPFV;SG;1;PST
kụ¹² da yụ V;IRR;SG;3
nzi²m-xu²di ndí nzimxudi V;IPFV;SG;1;PST
ñä xkí ñä V;PRF;2;PST
po²nts’i ndí ponts’i V;IPFV;SG;1;PST
xi²t’i ngí xit’i V;IPFV;SG;2;PST
ʔro¹²ti dá ʔroti V;PFV;SG;1
bu¹²nchi ngí bunchi V;IPFV;SG;2;PST
kụ²ʔ-sta xkí kụʔsta V;PRF;2;PST
nxu²tsi stí nxutsi V;PRF;1;PST
hma²ʔtsi dí hmaʔtsi V;IPFV;SG;1;PRS
nxändi gí nxändi V;IPFV;SG;2;PRS
pe¹²nts’i xkí pents’i V;PRF;2;PST
ndä-ne gí ndäne V;IPFV;SG;2;PRS
he²te dá hete V;PFV;SG;1
mbe¹²ni dá mbeni V;PFV;SG;1
gä¹²ʔtsi xkí gäʔtsi V;PRF;2;PST
koʔtsi ndí koʔtsi V;IPFV;SG;1;PST
kä²ki da gäki V;IRR;SG;3
fonts’i gí fonts’i V;IPFV;SG;2;PRS
ndu²-mụi da ndumụi V;IRR;SG;3
dä²xi däxi V;IPFV;SG;3;PRS
nguent’i da nguent’i V;IRR;SG;3
tsụ²-t’yụi tsụt’yụi V;IPFV;SG;3;PRS
pa²ʔ-nthä mí paʔnthä V;IPFV;SG;3;PST
mfe²ʔtse xa mfeʔtse V;PRF;SG;3;PRS
ñäni xká ñäni V;PRF;SG;2;PRS
ʔñe¹²pi gí ʔñepi V;IPFV;SG;2;PRS
fọ²ge ndí fọge V;IPFV;SG;1;PST
ät’i xká ʔät’i V;PRF;SG;2;PRS
ntä¹²hmi gí ntähmi V;IPFV;SG;2;PRS
hä¹²ts’i häts’i V;IPFV;SG;3;PRS
the²de xki nthede V;PRF;3;PST
k’äʔtsi gi k’äʔtsi V;IRR;SG;2
pi¹²ts’i stí pits’i V;PRF;1;PST
uits’i ga uits’i V;IRR;SG;1
pi²xi mí pixi V;IPFV;SG;3;PST
do²-mbi gá dombi V;PFV;SG;2
tsä²t’i ndí tsät’i V;IPFV;SG;1;PST
hmä²ʔtsi mí hmäʔtsi V;IPFV;SG;3;PST
nọ¹²st’e ga nọst’e V;IRR;SG;1
huts’i dá hüts’i V;PFV;SG;1
xẹki dá xẹki V;PFV;SG;1
kụi ndí kụi V;IPFV;SG;1;PST
ñat’i stí ñat’i V;PRF;1;PST
te¹²hmi xki tehmi V;PRF;3;PST
zi²thu bi nzithu V;PFV;SG;3
nga²s-te xki ngaste V;PRF;3;PST
jo²ʔo xki njoʔo V;PRF;3;PST
ga²ni bi ngani V;PFV;SG;3
fụʔmi da fụʔmi V;IRR;SG;3
tsụ¹² stí ntsụ V;PRF;1;PST
fọ¹²te gi fọte V;IRR;SG;2
nxaki dá nxaki V;PFV;SG;1
äkui gí ʔäkui V;IPFV;SG;2;PRS
ntụ²ni bi ntụni V;PFV;SG;3
tsa²-ya xki ntsaya V;PRF;3;PST
ʔñan-the ga ʔñanthe V;IRR;SG;1
ma²ka²-nk’o¹²ʔni xki makank’oʔni V;PRF;3;PST
pa¹²ʔtsi xkí paʔtsi V;PRF;2;PST
ndo¹²ki mí ndoki V;IPFV;SG;3;PST
xụt’i gí xụt’i V;IPFV;SG;2;PRS
thọ²t-hyä stí thọthyä V;PRF;1;PST
o¹²ts’i xa ʔyots’i V;PRF;SG;3;PRS
puʔti xa puʔti V;PRF;SG;3;PRS
fix-ʔyẹ xki fixʔyẹ V;PRF;3;PST
toi gí toi V;IPFV;SG;2;PRS
jua²ti ngí juati V;IPFV;SG;2;PST
hñä²mba²-de²he xa hñämbadehe V;PRF;SG;3;PRS
ä¹²tsi mí ʔätsi V;IPFV;SG;3;PST
nọ²xke mí nọxke V;IPFV;SG;3;PST
nga¹²nts’i ga ngants’i V;IRR;SG;1
xä²ndi ngí xändi V;IPFV;SG;2;PST
mpẹ¹²nkui da mpẹnkui V;IRR;SG;3
xọke ndí xọke V;IPFV;SG;1;PST
nku¹²ui xa nkuui V;PRF;SG;3;PRS
u²ʔ-thyä gí ʔuʔthyä V;IPFV;SG;2;PRS
saʔtsi xa saʔtsi V;PRF;SG;3;PRS
hẹ²ʔmi ngí hẹʔmi V;IPFV;SG;2;PST
agi xa ʔyagi V;PRF;SG;3;PRS
e¹²ʔtse ʔeʔtse V;IPFV;SG;3;PRS
ge² ga ngë V;IRR;SG;1
bọ¹²-kuẹ da bọkuẹ V;IRR;SG;3
zọte gá zọte V;PFV;SG;2
te gá te V;PFV;SG;2
fo¹²ki xki foki V;PRF;3;PST
jụʔmi da gụʔmi V;IRR;SG;3
ho²ka²-ngu¹² dá hokangu V;PFV;SG;1
ta²n-the xki tanthe V;PRF;3;PST
jua²ti da juati V;IRR;SG;3
tẹ¹²hẹ dá tẹhẹ V;PFV;SG;1
dän-tsu stí däntsu V;PRF;1;PST
a²k-hñu²ni xkí ʔñakhñuni V;PRF;2;PST
pä¹²di xki pädi V;PRF;3;PST
tsẹ²ʔmi xká tsẹʔmi V;PRF;SG;2;PRS
do²-mbi gí dombi V;IPFV;SG;2;PRS
dụ²-zụ ga dụzụ V;IRR;SG;1
be²ntya bentya V;IPFV;SG;3;PRS
tsi¹²ni xa tsini V;PRF;SG;3;PRS
mbä²ts-jäʔi xká mbätsjäʔi V;PRF;SG;2;PRS
a xká ʔya V;PRF;SG;2;PRS
hma²ʔtsi ndí hmaʔtsi V;IPFV;SG;1;PST
hñọ²t-hyä xká hñọthyä V;PRF;SG;2;PRS
k’o²hni gí k’ohni V;IPFV;SG;2;PRS
ñä²-sẹ gá ñäsẹ V;PFV;SG;2
zo²hni xkí zohni V;PRF;2;PST
ʔra²ʔmi ga ʔraʔmi V;IRR;SG;1
ẹ²nte dá ʔñẹnte V;PFV;SG;1
yo¹²ʔti dá yoʔti V;PFV;SG;1
ʔuẹʔmi gi ʔuẹʔmi V;IRR;SG;2
hmä¹²hni stí hmähni V;PRF;1;PST
ñoni gi ñoni V;IRR;SG;2
tẹ¹²xi dá tẹxi V;PFV;SG;1
ʔyo¹²-ʔthä da ʔyoʔthä V;IRR;SG;3
jo²-hya stá johya V;PRF;SG;1;PRS
pẹ²ʔti ngí pẹʔti V;IPFV;SG;2;PST
mpẹ¹²ts’i gá mpẹts’i V;PFV;SG;2
hñọ¹²-me gí hñọme V;IPFV;SG;2;PRS
nzo²hni stí nzohni V;PRF;1;PST
pọ²ts’e gí pọts’e V;IPFV;SG;2;PRS
mfụki bi mfụki V;PFV;SG;3
mä-ya xká mäya V;PRF;SG;2;PRS
ñä¹²ni mí ñäni V;IPFV;SG;3;PST
tsa²-ya gí tsaya V;IPFV;SG;2;PRS
da²ʔthi gí daʔthi V;IPFV;SG;2;PRS
nta²ti dí ntati V;IPFV;SG;1;PRS
hwät’i xki hwät’i V;PRF;3;PST
tso¹²gi da zogi V;IRR;SG;3
ts’ụ²-xẹ¹²ni gá ts’ụxẹni V;PFV;SG;2
tänt’i dá tänt’i V;PFV;SG;1
ʔbọnt’e xki ʔbọnt’e V;PRF;3;PST
ngụt’i gá ngụt’i V;PFV;SG;2
pe²-ʔnzä dí peʔnzä V;IPFV;SG;1;PRS
ts’i²ʔmi ndí ts’iʔmi V;IPFV;SG;1;PST
ts’o²-da gá ts’oda V;PFV;SG;2
nkụ²ʔmi bi nkụʔmi V;PFV;SG;3
nä²via bi nävia V;PFV;SG;3
ka²mfri dí kamfri V;IPFV;SG;1;PRS
xa²ha gá xaha V;PFV;SG;2
tọʔtui gí tọʔtui V;IPFV;SG;2;PRS
nta²ti gí ntati V;IPFV;SG;2;PRS
be¹²t’e xká bet’e V;PRF;SG;2;PRS
hñu²ts’i mí hñuts’i V;IPFV;SG;3;PST
ja²pa²bi xa japabi V;PRF;SG;3;PRS
emei dí ʔëmei V;IPFV;SG;1;PRS
tsọ²ni mí tsọni V;IPFV;SG;3;PST
mungi mí mungi V;IPFV;SG;3;PST
ʔñẹnts’i stá ʔñẹnts’i V;PRF;SG;1;PRS
kọ¹²st’e ga kọst’e V;IRR;SG;1
ue²n-t’ẹi ndí uent’ẹi V;IPFV;SG;1;PST
xu²mi xumi V;IPFV;SG;3;PRS
pọ¹²ts’e gí pọts’e V;IPFV;SG;2;PRS
nsọ²hni nsọhni V;IPFV;SG;3;PRS
ʔbọ²ni bi ʔbọni V;PFV;SG;3
he²kä-nde¹² xká hyekande V;PRF;SG;2;PRS
pọ²ke ngí pọke V;IPFV;SG;2;PST
ʔbẹt’i dí ʔbẹt’i V;IPFV;SG;1;PRS
ʔñọ²t’a²-da¹²da ndí ʔñọt’adada V;IPFV;SG;1;PST
huä¹²ʔtsi xa huäʔtsi V;PRF;SG;3;PRS
mpẹ¹²hni ndí mpẹhni V;IPFV;SG;1;PST
mä²-te gí mäte V;IPFV;SG;2;PRS
ue²n-ga²hai stá uengahai V;PRF;SG;1;PRS
tro¹²zo dá trozo V;PFV;SG;1
he²t’i da hñët’i V;IRR;SG;3
nthät’i dí nthät’i V;IPFV;SG;1;PRS
ot’i gi ʔyoti V;IRR;SG;2
xo²fo xkí nxofo V;PRF;2;PST
ntho²hni nthohni V;IPFV;SG;3;PRS
tsọ²nte xki ntsọnte V;PRF;3;PST
ʔñatua-t’afi gá ʔñatuat’afi V;PFV;SG;2
ʔba²ʔti gí ʔbaʔti V;IPFV;SG;2;PRS
ʔbambi dá ʔbambi V;PFV;SG;1
tu²ki bi tuki V;PFV;SG;3
hmä²ki ngí hmäki V;IPFV;SG;2;PST
ọ²t’a²-ngo mí ʔọt’ango V;IPFV;SG;3;PST
ʔñägi dí ʔñägi V;IPFV;SG;1;PRS
k’ua²-mba mí k’uamba V;IPFV;SG;3;PST
xa²xi xa xaxi V;PRF;SG;3;PRS
be¹²he ndí behe V;IPFV;SG;1;PST
hwäʔmbi dí hwäʔmbi V;IPFV;SG;1;PRS
he²t’i bi hñët’i V;PFV;SG;3
dụ²hụ gí dụhụ V;IPFV;SG;2;PRS
ʔyo²mbi xki ʔyombi V;PRF;3;PST
mfụ²t’a²-ngä¹²hä xa mfụt’angähä V;PRF;SG;3;PRS
tsiti mí tsiti V;IPFV;SG;3;PST
ʔbẹ²-mfo xkí ʔbẹmfo V;PRF;2;PST
hñọ¹²-me da hñọme V;IRR;SG;3
ntsa¹²-ʔri²hi xká ntsaʔrihi V;PRF;SG;2;PRS
tai ga tai V;IRR;SG;1
tai stí tai V;PRF;1;PST
hño-ya ndí hñoya V;IPFV;SG;1;PST
fọ¹²te stí fọte V;PRF;1;PST
fụ²ʔtsi fụʔtsi V;IPFV;SG;3;PRS
nọʔtse ndí nọʔtse V;IPFV;SG;1;PST
mfọta-bọznä gi mfọtabọznä V;IRR;SG;2
ntọ²ts’e bi ntọts’e V;PFV;SG;3
ʔñai gí ʔñai V;IPFV;SG;2;PRS
ha¹²t’i xki hyat’i V;PRF;3;PST
zi²thu stá nzithu V;PRF;SG;1;PRS
nọ¹²st’e ndí nọst’e V;IPFV;SG;1;PST
pụ²t’i gá pụt’i V;PFV;SG;2
k’e dí k’ë V;IPFV;SG;1;PRS
pä¹²di pädi V;IPFV;SG;3;PRS
ntụhụ gá ntụhụ V;PFV;SG;2
xe²ʔti gi xeʔti V;IRR;SG;2
njäʔi xki njäʔi V;PRF;3;PST
häʔmi ndí häʔmi V;IPFV;SG;1;PST
ʔmẹ-mpi¹²ts’i xká ʔmẹmpits’i V;PRF;SG;2;PRS
ñä²-mfọ gi ñämfọ V;IRR;SG;2
tsọ²ʔte dá tsọʔte V;PFV;SG;1
ʔba¹²hni xká ʔbahni V;PRF;SG;2;PRS
sụ²ʔti gí sụʔti V;IPFV;SG;2;PRS
pe²t’e stí pet’e V;PRF;1;PST
njo-zụ xkí njozụ V;PRF;2;PST
pụ²ʔtsa²-te da pụʔtsate V;IRR;SG;3
joki bi goki V;PFV;SG;3
ts’ä¹²t’i ngí ts’ät’i V;IPFV;SG;2;PST
to²t’i xa dot’i V;PRF;SG;3;PRS
pẹ¹²hni bi pẹhni V;PFV;SG;3
jụʔmi xká jụʔmi V;PRF;SG;2;PRS
ụ¹²ts’i gí ʔụts’i V;IPFV;SG;2;PRS
xa²ʔtsi dá xaʔtsi V;PFV;SG;1
jụmpa²bi stí jụmpabi V;PRF;1;PST
mpi¹²ts’i stí mpits’i V;PRF;1;PST
ntuti ga ntuti V;IRR;SG;1
ja²bi stí jabi V;PRF;1;PST
nu²-mxa dá numxa V;PFV;SG;1
e² mbi¹²da xkí ʔñëmbida V;PRF;2;PST
hña-nthyä dí hñanthyä V;IPFV;SG;1;PRS
ʔba-nde¹² gi ʔbande V;IRR;SG;2
ʔbaʔmi ngí ʔbaʔmi V;IPFV;SG;2;PST
hue²ki xki hueki V;PRF;3;PST
e¹²st’e stá ʔest’e V;PRF;SG;1;PRS
ʔyo²mbi xa ʔyombi V;PRF;SG;3;PRS
me¹²ta²-xọ²ni stí metaxọni V;PRF;1;PST
uẹ ga uẹ V;IRR;SG;1
tụ²ʔtsi tụʔtsi V;IPFV;SG;3;PRS
tso²ʔtsi mí tsoʔtsi V;IPFV;SG;3;PST
xa²ha ngí xaha V;IPFV;SG;2;PST
nu²-mä²nsu gá numänsu V;PFV;SG;2
po²ki dá poki V;PFV;SG;1
ntụ¹²ngi xa ntụngi V;PRF;SG;3;PRS
do²-ʔyẹ xkí ndoʔyẹ V;PRF;2;PST
he¹²ts’e ngí hets’e V;IPFV;SG;2;PST
yọʔte xa yọʔte V;PRF;SG;3;PRS
toʔtsi toʔtsi V;IPFV;SG;3;PRS
ti¹²hi xká ntihi V;PRF;SG;2;PRS
kọnga²-ba¹²yo xki nkọngabayo V;PRF;3;PST
xe²ʔmi xká xeʔmi V;PRF;SG;2;PRS
ñä²-te gí ñäte V;IPFV;SG;2;PRS
kä²ʔmi xa gäʔmi V;PRF;SG;3;PRS
mpọ¹²họ dí mpọhọ V;IPFV;SG;1;PRS
pet’e gá pet’e V;PFV;SG;2
ʔuaki gí ʔuaki V;IPFV;SG;2;PRS
paʔti xká paʔti V;PRF;SG;2;PRS
nts’o²ʔmi stí nts’oʔmi V;PRF;1;PST
ja¹-²mäsu dá jamäsu V;PFV;SG;1
xa²ndä-po da xandäpo V;IRR;SG;3
ñä xa ñä V;PRF;SG;3;PRS
nda¹²ndi-ñähmu bi ndandiñähmu V;PFV;SG;3
ye²ʔtsi gá yeʔtsi V;PFV;SG;2
piʔti ngí piʔti V;IPFV;SG;2;PST
kue²ke gá kueke V;PFV;SG;2
pe²x-ʔyo dí pexʔyo V;IPFV;SG;1;PRS
kọ¹²st’e xa gọst’e V;PRF;SG;3;PRS
ä¹²ni dí ʔäni V;IPFV;SG;1;PRS
nọ²nte mí nọnte V;IPFV;SG;3;PST
to¹²nt’i ngí tont’i V;IPFV;SG;2;PST
k’oʔm-nxä¹²t’ä gá nk’oʔmnxät’ä V;PFV;SG;2
pa¹²nts’i dí pants’i V;IPFV;SG;1;PRS
mbu¹²-xa xki mbuxa V;PRF;3;PST
ʔmaʔma-ts’ụtbi da ʔmaʔmats’ụtbi V;IRR;SG;3
ha²t’i xká hyat’i V;PRF;SG;2;PRS
tso¹²gi ngí tsogi V;IPFV;SG;2;PST
ọ²ʔte gí ʔọʔte V;IPFV;SG;2;PRS
ʔñatua-t’afi stá ʔñatuat’afi V;PRF;SG;1;PRS
fiʔtsi fiʔtsi V;IPFV;SG;3;PRS
ntsi¹² gí ntsi V;IPFV;SG;2;PRS
hu²-tho stí hütho V;PRF;1;PST
va²le mí vale V;IPFV;SG;3;PST
hmi²p-ts’ẹdi ga hmipts’ẹdi V;IRR;SG;1
be²ñʔä-juä¹² xki beñʔäjuä V;PRF;3;PST
uä²fri xki uäfri V;PRF;3;PST
ʔñan-the gi ʔñanthe V;IRR;SG;2
ụ²ʔti bi ʔyụʔti V;PFV;SG;3
kata²-tho xa katatho V;PRF;SG;3;PRS
thụni ndí thụni V;IPFV;SG;1;PST
hu²-nä²ni gi ñhünäni V;IRR;SG;2
yo¹²ʔti da yoʔti V;IRR;SG;3
nu¹²ni gi nuni V;IRR;SG;2
mpẹ¹²nkui gí mpẹnkui V;IPFV;SG;2;PRS
ta²ʔ-nthä bi taʔnthä V;PFV;SG;3
mbä²ts-jäʔi da mbätsjäʔi V;IRR;SG;3
toi dá toi V;PFV;SG;1
tso²-mfe¹²ni ndí tsomfeni V;IPFV;SG;1;PST
ntsa¹² xkí ntsa V;PRF;2;PST
he²ge bi hyege V;PFV;SG;3
k’o²hni gá k’ohni V;PFV;SG;2
ʔra²ts’i xká ʔrats’i V;PRF;SG;2;PRS
tu¹² dí tu V;IPFV;SG;1;PRS
mfi²ts’i dá mfits’i V;PFV;SG;1
jo¹²ts’i dá jots’i V;PFV;SG;1
fẹʔtsi gí fẹʔtsi V;IPFV;SG;2;PRS
t’i²st’i xa t’ist’i V;PRF;SG;3;PRS
ʔñụhwi ndí ʔñụhwi V;IPFV;SG;1;PST
tsẹdi xki tsẹdi V;PRF;3;PST
to²ki toki V;IPFV;SG;3;PRS
pe²ni xa peni V;PRF;SG;3;PRS
ja¹²-bätsi ga jabätsi V;IRR;SG;1
i¹²ni dá ʔini V;PFV;SG;1
yụ²ni gí yụni V;IPFV;SG;2;PRS
ts’i²ʔti bi ts’iʔti V;PFV;SG;3
hwä²ki gí hwäki V;IPFV;SG;2;PRS
fụ²ni gi fụni V;IRR;SG;2
ntsi¹² ndí ntsi V;IPFV;SG;1;PST
ntsi¹² xa ntsi V;PRF;SG;3;PRS
hño²-sẹ gá hñosẹ V;PFV;SG;2
ʔmaʔma-ts’ụtbi gá ʔmaʔmats’ụtbi V;PFV;SG;2
nọ¹²ni nọni V;IPFV;SG;3;PRS
japi gí japi V;IPFV;SG;2;PRS
he¹² xká hë V;PRF;SG;2;PRS
nxụ bi nxụ V;PFV;SG;3
ntsabi gá ntsabi V;PFV;SG;2
tsä¹²mi xkí tsämi V;PRF;2;PST
ndu²pä-te stá ndupäte V;PRF;SG;1;PRS
män-tho mäntho V;IPFV;SG;3;PRS
zi²ki bi ziki V;PFV;SG;3
hant-hyä xki hyanthyä V;PRF;3;PST
ñe²ʔmi xká ñeʔmi V;PRF;SG;2;PRS
thä¹²ʔtsi bi thäʔtsi V;PFV;SG;3
yo-ñä¹²hi bi yoñähi V;PFV;SG;3
nọʔtse ga nọʔtse V;IRR;SG;1
nxuui xa nxuui V;PRF;SG;3;PRS
ʔra²-mbi da ʔrambi V;IRR;SG;3
pe¹²nts’i gi pents’i V;IRR;SG;2
kadi ngí kadi V;IPFV;SG;2;PST
kä²ʔmi xkí käʔmi V;PRF;2;PST
pa²mʔi stí mpamʔi V;PRF;1;PST
ʔra²ʔmi gi ʔraʔmi V;IRR;SG;2
uäki uäki V;IPFV;SG;3;PRS
pụ²nts’i dí pụnts’i V;IPFV;SG;1;PRS
fọ²mä²-te gí fọmäte V;IPFV;SG;2;PRS
tsi²-mdo ga tsimdo V;IRR;SG;1
xe¹²ni xki xeni V;PRF;3;PST
dent’i ngí dent’i V;IPFV;SG;2;PST
jua²-sẹ¹²hẹ xki ʔuasẹhẹ V;PRF;3;PST
nrri¹²ko ga nrriko V;IRR;SG;1
fọmi dá fọmi V;PFV;SG;1
dọ²ni xa dọni V;PRF;SG;3;PRS
nts’a¹²ta²-ñäxu da nts’atañäxu V;IRR;SG;3
hmi¹²-nzụ gí hminzụ V;IPFV;SG;2;PRS
nthä²di stí nthädi V;PRF;1;PST
ʔñu¹²ni gí ʔñuni V;IPFV;SG;2;PRS
po¹²nä²-ʔro²njua ponäʔronjua V;IPFV;SG;3;PRS
ʔbẹ²t’o gí ʔbẹt’o V;IPFV;SG;2;PRS
hä²ʔtsui dí häʔtsui V;IPFV;SG;1;PRS
pọ²ʔtse dá pọʔtse V;PFV;SG;1
teke gá teke V;PFV;SG;2
ue²n-ga²nza¹²ya xká uenganzaya V;PRF;SG;2;PRS
k’ụ²-ne ga nk’ụne V;IRR;SG;1
tu²-mä²nthu¹²hu xa tumänthuhu V;PRF;SG;3;PRS
däki däki V;IPFV;SG;3;PRS
ne-pe bi nepe V;PFV;SG;3
hño²jä²ʔi xká hñojäʔi V;PRF;SG;2;PRS
hñe¹² xká hñe V;PRF;SG;2;PRS
tọ¹²ge ga tọge V;IRR;SG;1
he²ge xki hyege V;PRF;3;PST
hä²-thä gí häthä V;IPFV;SG;2;PRS
xọke xki xọke V;PRF;3;PST
tsa²ʔni stí ntsaʔni V;PRF;1;PST
tẹ²ti gi tẹti V;IRR;SG;2
xọke xọke V;IPFV;SG;3;PRS
mämbi gi mämbi V;IRR;SG;2
ya²st’i xká yast’i V;PRF;SG;2;PRS
pants’i xa mants’i V;PRF;SG;3;PRS
koʔtsi ngí koʔtsi V;IPFV;SG;2;PST
ʔbẹ²go xki ʔmẹgo V;PRF;3;PST
tsi²ʔti bi ziʔti V;PFV;SG;3
tsa²-ʔyo xká tsaʔyo V;PRF;SG;2;PRS
hmi¹²-nzụ gi hminzụ V;IRR;SG;2
kụ²ʔmi xa kụʔmi V;PRF;SG;3;PRS
äkui ndí ʔäkui V;IPFV;SG;1;PST
nä¹²ni stá näni V;PRF;SG;1;PRS
nxu²t’i gá nxut’i V;PFV;SG;2
ko²ti gi koti V;IRR;SG;2
ʔbọnt’e bi ʔbọnt’e V;PFV;SG;3
häʔti xká hñäʔti V;PRF;SG;2;PRS
tho²gi stá thogi V;PRF;SG;1;PRS
te²-tho tetho V;IPFV;SG;3;PRS
jäpi gi jäpi V;IRR;SG;2
kä¹² bi gä V;PFV;SG;3
ve²nga bi venga V;PFV;SG;3
kua²ti xká kuati V;PRF;SG;2;PRS
tu²-mthu¹²hu tumthuhu V;IPFV;SG;3;PRS
tsụ²t’i ga tsụt’i V;IRR;SG;1
juʔti xká juʔti V;PRF;SG;2;PRS
k’ụ²ʔtsi xkí k’ụʔtsi V;PRF;2;PST
tụhụ stá tụhụ V;PRF;SG;1;PRS
pẹ¹²ti xa pẹti V;PRF;SG;3;PRS
ne²i gí nei V;IPFV;SG;2;PRS
tsa²ʔni tsaʔni V;IPFV;SG;3;PRS
xọ²ʔte xa xọʔte V;PRF;SG;3;PRS
ñä ngí ñä V;IPFV;SG;2;PST
hụ²ʔti da hyụʔti V;IRR;SG;3
pẹ²-tsa²thä xki pẹtsathä V;PRF;3;PST
pẹ²t-’yẹ ga pẹt’yẹ V;IRR;SG;1
hñẹ²ki stá hñẹki V;PRF;SG;1;PRS
ts’a²tsi xa ts’atsi V;PRF;SG;3;PRS
ndo-ne gi ndone V;IRR;SG;2
he²t’ä-nthä¹²hi ngí het’änthähi V;IPFV;SG;2;PST
pant’i stí pant’i V;PRF;1;PST
nti²ki xkí ntiki V;PRF;2;PST
bu²hla stá buhla V;PRF;SG;1;PRS
nga²s-te xká ngaste V;PRF;SG;2;PRS
ndu²s-te xkí nduste V;PRF;2;PST
ẹ²nts’a²-pa xa ʔñẹnts’apa V;PRF;SG;3;PRS
änt’i bi ʔänt’i V;PFV;SG;3
pọ²te stí pọte V;PRF;1;PST
tsiti stí tsiti V;PRF;1;PST
ndä dá ndä V;PFV;SG;1
pet’e xká pet’e V;PRF;SG;2;PRS
hwäʔmbi bi hwäʔmbi V;PFV;SG;3
nts’ẹ²di stí nts’ẹdi V;PRF;1;PST
k’ụ²ʔti xkí k’ụʔti V;PRF;2;PST
ʔra²-ʔyo da ʔraʔyo V;IRR;SG;3
o²xi ga ʔñoxi V;IRR;SG;1
ụ²ta²-te xa ʔñụtate V;PRF;SG;3;PRS
ngụt’i gi ngụt’i V;IRR;SG;2
juʔmi gá juʔmi V;PFV;SG;2
ẹ²nt’a²-hme xa ʔñẹnt’ahme V;PRF;SG;3;PRS
k’oʔm-nxä¹²t’ä xa nk’oʔmnxät’ä V;PRF;SG;3;PRS
fụ²ni xká fụni V;PRF;SG;2;PRS
pe²ng-tho ndí pengtho V;IPFV;SG;1;PST
tsu¹²t’i dí tsut’i V;IPFV;SG;1;PRS
hmipabi ga hmipabi V;IRR;SG;1
the²de gi nthede V;IRR;SG;2
yọ²t’e xa yọt’e V;PRF;SG;3;PRS
tsụ¹²-jụ²mhai ndí tsụjụmhai V;IPFV;SG;1;PST
ñụ²ni xká ñụni V;PRF;SG;2;PRS
be²n-sẹ xki bensẹ V;PRF;3;PST
po²ʔtsi gi poʔtsi V;IRR;SG;2
ʔui² ʔuï V;IPFV;SG;3;PRS
tsụ¹²-jụ²mhai stá ntsụjụmhai V;PRF;SG;1;PRS
ntu²ts’i mí ntuts’i V;IPFV;SG;3;PST
xo²ki gi xoki V;IRR;SG;2
ʔñägi da ʔñägi V;IRR;SG;3
nthụ²xni xki nthụxni V;PRF;3;PST
hme¹²-ya ndí hmeya V;IPFV;SG;1;PST
hant’i da hyant’i V;IRR;SG;3
nlo²nko dá nlonko V;PFV;SG;1
mpụ¹²nga²-ʔẹ¹²nxẹ stá mpụngaʔẹnxẹ V;PRF;SG;1;PRS
ne²-ua stá negua V;PRF;SG;1;PRS
ʔba¹²mpi xa ʔbampi V;PRF;SG;3;PRS
nt’ụ²ki da nt’ụki V;IRR;SG;3
tsụ²ki xkí tsụki V;PRF;2;PST
nai dá nai V;PFV;SG;1
kä²ʔmi gí käʔmi V;IPFV;SG;2;PRS
kụ²ʔ-sta ndí kụʔsta V;IPFV;SG;1;PST
hui²ʔtsi stá huiʔtsi V;PRF;SG;1;PRS
ja¹²-mẹ²ti ndí jamẹti V;IPFV;SG;1;PST
ʔño¹²nse xa ʔñonse V;PRF;SG;3;PRS
pa²ʔmbi ndí paʔmbi V;IPFV;SG;1;PST
tso¹²ts’i stá tsots’i V;PRF;SG;1;PRS
hmi²m-t’ẹi mí hmimt’ẹi V;IPFV;SG;3;PST
ʔba²-ʔñu ga ʔbaʔñu V;IRR;SG;1
xụ²hmi gí xụhmi V;IPFV;SG;2;PRS
ja-nguẹ¹²nda ndí janguẹnda V;IPFV;SG;1;PST
tsa²-te xká ntsate V;PRF;SG;2;PRS
ñä¹²ni gí ñäni V;IPFV;SG;2;PRS
pä²hi xkí pähi V;PRF;2;PST
ya²st’i dá yast’i V;PFV;SG;1
njuäni dá njuäni V;PFV;SG;1
hä²ʔtsui stá häʔtsui V;PRF;SG;1;PRS
mpọ¹²họ stá mpọhọ V;PRF;SG;1;PRS
xani gi xani V;IRR;SG;2
mfa²di ndí mfadi V;IPFV;SG;1;PST
họ²t’a²-daʔthi ndí họt’adaʔthi V;IPFV;SG;1;PST
pụ²ʔti mí pụʔti V;IPFV;SG;3;PST
tụ¹²ni tụni V;IPFV;SG;3;PRS
tsẹ²ki ga tsẹki V;IRR;SG;1
njuäni ndí njuäni V;IPFV;SG;1;PST
mu²ʔmfi xa muʔmfi V;PRF;SG;3;PRS
tho²ʔtsi thoʔtsi V;IPFV;SG;3;PRS
hu¹²hni ndí hühni V;IPFV;SG;1;PST
do²-gu xa dogu V;PRF;SG;3;PRS
nu¹²ni ga nuni V;IRR;SG;1
fọt’e xki mọt’e V;PRF;3;PST
pa¹²di da padi V;IRR;SG;3
gä²ʔtsi gi ngäʔtsi V;IRR;SG;2
be²ñʔä-juä¹² xa beñʔäjuä V;PRF;SG;3;PRS
pọ²ke gá pọke V;PFV;SG;2
ntsẹ²ni bi ntsẹni V;PFV;SG;3
thi¹²nt’i bi dint’i V;PFV;SG;3
kụ¹²ts’i mí kụts’i V;IPFV;SG;3;PST
ʔui²-thä ndí ʔuïthä V;IPFV;SG;1;PST
tsa¹² ndí tsa V;IPFV;SG;1;PST
ʔmi¹²fi xki ʔmifi V;PRF;3;PST
ʔba²i gi ʔbai V;IRR;SG;2
hyọ²t’a²-da¹²da xká hyọt’adada V;PRF;SG;2;PRS
yo-kụni mí yokụni V;IPFV;SG;3;PST
ẹʔtsi dá ʔẹʔtsi V;PFV;SG;1
pẹ²-jua pẹjua V;IPFV;SG;3;PRS
joʔtsi xká joʔtsi V;PRF;SG;2;PRS
e¹²di xká ʔñëdi V;PRF;SG;2;PRS
hmä²ni gí hmäni V;IPFV;SG;2;PRS
nkä²t’i mí nkät’i V;IPFV;SG;3;PST
be²ntya xki bentya V;PRF;3;PST
ʔra²ʔmi ndí ʔraʔmi V;IPFV;SG;1;PST
xọ²ni ga xọni V;IRR;SG;1
tẹ²ʔmi ndí tẹʔmi V;IPFV;SG;1;PST
xei dá xei V;PFV;SG;1
ʔua²gi ʔuagi V;IPFV;SG;3;PRS
ha²ni xki hyani V;PRF;3;PST
ʔñe²ni dá ʔñeni V;PFV;SG;1
yo-ñä¹²hi xa yoñähi V;PRF;SG;3;PRS
ʔrant’ui mí ʔrant’ui V;IPFV;SG;3;PST
kunt’ẹi mí kunt’ẹi V;IPFV;SG;3;PST
naʔmbi da naʔmbi V;IRR;SG;3
re²sga xa resga V;PRF;SG;3;PRS
ts’oki mí ts’oki V;IPFV;SG;3;PST
xọ²te bi xọte V;PFV;SG;3
fọ²ge gá mfọge V;PFV;SG;2
ts’änt’i xki ts’änt’i V;PRF;3;PST
ntsa xki ntsa V;PRF;3;PST
dä²ʔs-thu¹²hu stá däʔsthuhu V;PRF;SG;1;PRS
ʔua²ʔmi xa ʔuaʔmi V;PRF;SG;3;PRS
uʔtsi xká ʔñüʔtsi V;PRF;SG;2;PRS
ve²nga ndí venga V;IPFV;SG;1;PST
tsọ²nte gi ntsọnte V;IRR;SG;2
tsẹ²ki gí tsẹki V;IPFV;SG;2;PRS
ọde ndí ʔọde V;IPFV;SG;1;PST
nkä¹²xi nkäxi V;IPFV;SG;3;PRS
thọge xa dọge V;PRF;SG;3;PRS
hño¹²-sko xa hñosko V;PRF;SG;3;PRS
tọ²ʔmi xa dọʔmi V;PRF;SG;3;PRS
ko¹²mi xká komi V;PRF;SG;2;PRS
mpu²m-hai bi mpumhai V;PFV;SG;3
xongi dá xongi V;PFV;SG;1
t’i²ki bi t’iki V;PFV;SG;3
mbọ-da² xa mbọda V;PRF;SG;3;PRS
ẹkua²bi ndí ʔẹkuabi V;IPFV;SG;1;PST
uä²nts’i ga uänts’i V;IRR;SG;1
ʔra²-nxu gá ʔranxu V;PFV;SG;2
zụ²di bi zụdi V;PFV;SG;3
k’o²ʔmi gí k’oʔmi V;IPFV;SG;2;PRS
fa²-spi xa faspi V;PRF;SG;3;PRS
ngä²hä stá ngähä V;PRF;SG;1;PRS
ets’e dá ʔets’e V;PFV;SG;1
pẹ²t’i ndí pẹt’i V;IPFV;SG;1;PST
ʔño²ki xa ʔñoki V;PRF;SG;3;PRS
e¹²nthi xki ʔenthi V;PRF;3;PST
thẹts’i gi thẹts’i V;IRR;SG;2
mpu²m-hai da mpumhai V;IRR;SG;3
ʔuäts’i ndí ʔuäts’i V;IPFV;SG;1;PST
hyo²-ya stí nhyoya V;PRF;1;PST
nọ¹²ni gí nọni V;IPFV;SG;2;PRS
pats’i bi mats’i V;PFV;SG;3
mo¹²ngi xa mongi V;PRF;SG;3;PRS
nku²ni stá nkuni V;PRF;SG;1;PRS
he²ʔtsi gí heʔtsi V;IPFV;SG;2;PRS
nxani xká nxani V;PRF;SG;2;PRS
pọ²ni gí pọni V;IPFV;SG;2;PRS
ʔñụhwi ʔñụhwi V;IPFV;SG;3;PRS
jo¹² ndí jo V;IPFV;SG;1;PST
ʔmaʔma-ts’ụtbi ndí ʔmaʔmats’ụtbi V;IPFV;SG;1;PST
ye²ʔtsi ngí yeʔtsi V;IPFV;SG;2;PST
ta²ʔ-nthä dá taʔnthä V;PFV;SG;1
ʔro¹²ti mí ʔroti V;IPFV;SG;3;PST
joki da goki V;IRR;SG;3
pụni xki mụni V;PRF;3;PST
fụ²t’i xki fụt’i V;PRF;3;PST
ʔro²t’i mí ʔrot’i V;IPFV;SG;3;PST
njue²ni ndí njueni V;IPFV;SG;1;PST
do²-zụ stí dozụ V;PRF;1;PST
k’o²hni bi k’ohni V;PFV;SG;3
hña²xni ngí hñaxni V;IPFV;SG;2;PST
fẹ²ta²-te xa mfẹtate V;PRF;SG;3;PRS
emei mí ʔëmei V;IPFV;SG;3;PST
nt’ọʔtse ngí nt’ọʔtse V;IPFV;SG;2;PST
po¹²n-tho bi pontho V;PFV;SG;3
nu²-mä²nsu xkí numänsu V;PRF;2;PST
ʔñe¹²ts’i gá ʔñets’i V;PFV;SG;2
hä²ʔtsui xkí hñäʔtsui V;PRF;2;PST
tso²ʔti ga tsoʔti V;IRR;SG;1
tsi²mʔi dí tsimʔi V;IPFV;SG;1;PRS
ụ²n-te ʔụnte V;IPFV;SG;3;PRS
jäpi stí jäpi V;PRF;1;PST
ta²ka²-te xká takate V;PRF;SG;2;PRS
fo²nt’i gá font’i V;PFV;SG;2
kụ²ʔ-nxuui gá kụʔnxuui V;PFV;SG;2
do²-mbi stí dombi V;PRF;1;PST
tho²t’i gi thot’i V;IRR;SG;2
ʔra²-ʔyo ʔraʔyo V;IPFV;SG;3;PRS
bo²la xká bola V;PRF;SG;2;PRS
jut’i xa gut’i V;PRF;SG;3;PRS
naʔti gí naʔti V;IPFV;SG;2;PRS
thoʔti ga thoʔti V;IRR;SG;1
ụ² bi ʔụ V;PFV;SG;3
ñohmi gá ñohmi V;PFV;SG;2
do¹²ndo gá dondo V;PFV;SG;2
mpa¹²nt’i xkí mpant’i V;PRF;2;PST
tsẹti bi zẹti V;PFV;SG;3
ʔbẹ¹²pi gí ʔbẹpi V;IPFV;SG;2;PRS
ụ²-ngu gá ʔñụngu V;PFV;SG;2
ʔñọt’e xká ʔñọt’e V;PRF;SG;2;PRS
ʔbụki xki ʔbụki V;PRF;3;PST
o²k-jä stí ʔñokjä V;PRF;1;PST
ko²ti ga koti V;IRR;SG;1
tu²-mä²nthu¹²hu dá tumänthuhu V;PFV;SG;1
mfọ²k-to bi mfọkto V;PFV;SG;3
xahni ga xahni V;IRR;SG;1
ñuts’i bi ñuts’i V;PFV;SG;3
nu¹²ni mí nuni V;IPFV;SG;3;PST
toʔmi da doʔmi V;IRR;SG;3
tso¹²-tho gí tsotho V;IPFV;SG;2;PRS
fọ¹²te ndí fọte V;IPFV;SG;1;PST
xipi dí xipi V;IPFV;SG;1;PRS
ntsa¹²p-ts’ẹdi da ntsapts’ẹdi V;IRR;SG;3
ʔyo²mbi dá ʔyombi V;PFV;SG;1
yont’bi gí yont’bi V;IPFV;SG;2;PRS
thụ²ʔmi ndí thụʔmi V;IPFV;SG;1;PST
zi²thu gí zithu V;IPFV;SG;2;PRS
ụ²ta²-te xká ʔụtate V;PRF;SG;2;PRS
mfẹtsa²-ñä gi mfẹtsañä V;IRR;SG;2
fani ngí fani V;IPFV;SG;2;PST
kụ²n-the xki nkụnthe V;PRF;3;PST
he²he gá nhyehe V;PFV;SG;2
ọ²t’a²-bu¹²hla gí ʔọt’abuhla V;IPFV;SG;2;PRS
kä²-bọhai xa nkäbọhai V;PRF;SG;3;PRS
nọ²ma²-ñʔụ stá nọmañʔụ V;PRF;SG;1;PRS
ñobri gi ñobri V;IRR;SG;2
fa²s-te stí mfaste V;PRF;1;PST
kue¹²te gí kuete V;IPFV;SG;2;PRS
mbätsi bi mbätsi V;PFV;SG;3
joʔtsi xkí joʔtsi V;PRF;2;PST
pọ¹²ts’e bi mọts’e V;PFV;SG;3
yo-kụni stí yokụni V;PRF;1;PST
họt’e bi hyọt’e V;PFV;SG;3
nsu da nsu V;IRR;SG;3
ʔñe-mei dá ʔñemei V;PFV;SG;1
ʔña²ʔmi stá ʔñaʔmi V;PRF;SG;1;PRS
jondi ga jondi V;IRR;SG;1
pi²ji xki piji V;PRF;3;PST
mfidi stá mfidi V;PRF;SG;1;PRS
pants’i stí pants’i V;PRF;1;PST
ụ¹²ts’i xki ʔyụts’i V;PRF;3;PST
ntsä²t’i ntsät’i V;IPFV;SG;3;PRS
nọ²ts’e ndí nọts’e V;IPFV;SG;1;PST
nku xa nku V;PRF;SG;3;PRS
nsọ²hni gí nsọhni V;IPFV;SG;2;PRS
hi¹² stí hi V;PRF;1;PST
mpu²mbi ndí mpumbi V;IPFV;SG;1;PST
mbo²-to xki mboto V;PRF;3;PST
nku²ni xkí nkuni V;PRF;2;PST
fẹ²ta²-te gí fẹtate V;IPFV;SG;2;PRS
njänt’i bi njänt’i V;PFV;SG;3
ndeki ngí ndeki V;IPFV;SG;2;PST
ndu²-mụi xki ndumụi V;PRF;3;PST
kä²ʔmi bi gäʔmi V;PFV;SG;3
go²-gu xká ngogu V;PRF;SG;2;PRS
kuete gí kuete V;IPFV;SG;2;PRS
ʔñu²di ndí ʔñudi V;IPFV;SG;1;PST
nats’i gá nats’i V;PFV;SG;2
ha²ni hani V;IPFV;SG;3;PRS
nde¹² xká nde V;PRF;SG;2;PRS
ʔyo²mbi dí ʔyombi V;IPFV;SG;1;PRS
e¹²ts’i dí ʔëts’i V;IPFV;SG;1;PRS
ʔui² xká ʔuï V;PRF;SG;2;PRS
hest’i xká hñëst’i V;PRF;SG;2;PRS
kue²nt’i bi kuent’i V;PFV;SG;3
pọ²ʔtse gi pọʔtse V;IRR;SG;2
xo²ki mí xoki V;IPFV;SG;3;PST
tho xki tho V;PRF;3;PST
mä-ya ga mäya V;IRR;SG;1
k’äʔtsi mí k’äʔtsi V;IPFV;SG;3;PST
ʔñe²nt’i dá ʔñent’i V;PFV;SG;1
nä¹²ni stí näni V;PRF;1;PST
yo²ho mí yoho V;IPFV;SG;3;PST
mpụ¹²ngi mí mpụngi V;IPFV;SG;3;PST
mpụʔtsa-ñäxu stá mpụʔtsañäxu V;PRF;SG;1;PRS
hua¹²hni dá huahni V;PFV;SG;1
mpụ¹²nga²-k’eñä stá mpụngak’eñä V;PRF;SG;1;PRS
ʔbụ²-tho xká ʔbụtho V;PRF;SG;2;PRS
thọ²t-hyä bi thọthyä V;PFV;SG;3
po²gi bi pogi V;PFV;SG;3
bụnt’i xki bụnt’i V;PRF;3;PST
tho²ki xká thoki V;PRF;SG;2;PRS
pe¹²ngi xa mengi V;PRF;SG;3;PRS
tẹ²t’i da dẹt’i V;IRR;SG;3
ñohmi ñohmi V;IPFV;SG;3;PRS
ʔba²ʔti dá ʔbaʔti V;PFV;SG;1
past’i xká past’i V;PRF;SG;2;PRS
ndo²ʔmi xká ndoʔmi V;PRF;SG;2;PRS
ja¹²-bụ bi jabụ V;PFV;SG;3
ntsa¹²-ʔri²hi da ntsaʔrihi V;IRR;SG;3
mpa¹²di ndí mpadi V;IPFV;SG;1;PST
fo¹²ki dá foki V;PFV;SG;1
u²di bi ʔudi V;PFV;SG;3
ʔro¹²ti stí ʔroti V;PRF;1;PST
tsụ²ʔtsi gi tsụʔtsi V;IRR;SG;2
äkui gá ʔñäkui V;PFV;SG;2
da¹²do xká dado V;PRF;SG;2;PRS
ts’i²hni xká ts’ihni V;PRF;SG;2;PRS
nkä²-dẹ²ti xki nkädẹti V;PRF;3;PST
nlo²nko mí nlonko V;IPFV;SG;3;PST
hwiʔtsi bi hwiʔtsi V;PFV;SG;3
kä¹²xi gá käxi V;PFV;SG;2
koʔtsi xki goʔtsi V;PRF;3;PST
ọ²t’a²-ngo ngí ʔọt’ango V;IPFV;SG;2;PST
ʔuẹi dá ʔuẹi V;PFV;SG;1
ʔñẹnts’i ʔñẹnts’i V;IPFV;SG;3;PRS
mpụ¹²ni ga mpụni V;IRR;SG;1
kụ²ʔ-sta xki kụʔsta V;PRF;3;PST
hui¹²ts’i stí huits’i V;PRF;1;PST
fẹki gi fẹki V;IRR;SG;2
ta¹²ha gí taha V;IPFV;SG;2;PRS
ko²pe²ra da kopera V;IRR;SG;3
ho²pi stí hopi V;PRF;1;PST
ʔyo²fri xki ʔyofri V;PRF;3;PST
toʔtsi gi toʔtsi V;IRR;SG;2
kụ²n-the gí kụnthe V;IPFV;SG;2;PRS
hụ²ʔti bi hyụʔti V;PFV;SG;3
họ²x-gi²ni gí họxgini V;IPFV;SG;2;PRS
xuʔti dá xuʔti V;PFV;SG;1
ne¹²ts’e stá nets’e V;PRF;SG;1;PRS
nxụki xkí nxụki V;PRF;2;PST
nu¹²ngi stí nungi V;PRF;1;PST
t’i²ki gí t’iki V;IPFV;SG;2;PRS
ẹnt’i gí ʔẹnt’i V;IPFV;SG;2;PRS
ñä²-sẹ ngí ñäsẹ V;IPFV;SG;2;PST
bụ-do bi bụdo V;PFV;SG;3
ʔyo² ndí ʔyo V;IPFV;SG;1;PST
kua²ti xa kuati V;PRF;SG;3;PRS
ʔuẹi xkí ʔuẹi V;PRF;2;PST
dụ gi dụ V;IRR;SG;2
fiʔtsi stá fiʔtsi V;PRF;SG;1;PRS
ndẹ¹² xkí ndẹ V;PRF;2;PST
tọʔmi xkí tọʔmi V;PRF;2;PST
hñeni xa hñeni V;PRF;SG;3;PRS
mungi ga mungi V;IRR;SG;1
xụ²-ñä xụñä V;IPFV;SG;3;PRS
hwits’i da hwits’i V;IRR;SG;3
yo-ñä¹²hi ga yoñähi V;IRR;SG;1
juʔtsi xki juʔtsi V;PRF;3;PST
fụ²gi stí fụgi V;PRF;1;PST
kue²ke mí kueke V;IPFV;SG;3;PST
ʔñu²nts’i ʔñunts’i V;IPFV;SG;3;PRS
hant’i ndí hant’i V;IPFV;SG;1;PST
ʔmaʔma-nza¹²ya da ʔmaʔmanzaya V;IRR;SG;3
hwifi gá hwifi V;PFV;SG;2
hua²xi xa huaxi V;PRF;SG;3;PRS
zondi ga zondi V;IRR;SG;1
tsẹ²-nza xkí ntsẹnza V;PRF;2;PST
fa¹²ti dá fati V;PFV;SG;1
nts’o²ʔmi stá nts’oʔmi V;PRF;SG;1;PRS
fe²ʔtse dí feʔtse V;IPFV;SG;1;PRS
nts’ẹ²di nts’ẹdi V;IPFV;SG;3;PRS
nti²ni mí ntini V;IPFV;SG;3;PST
ho²ka²-ngu¹² dí hokangu V;IPFV;SG;1;PRS
ne²-ua bi negua V;PFV;SG;3
hñọn-the mí hñọnthe V;IPFV;SG;3;PST
dụʔti gá dụʔti V;PFV;SG;2
fọ²ʔmi xa fọʔmi V;PRF;SG;3;PRS
ho²-te dí hote V;IPFV;SG;1;PRS
hä¹²xi stí häxi V;PRF;1;PST
ñu²ni ga ñuni V;IRR;SG;1
dä²ʔs-thu¹²hu xká däʔsthuhu V;PRF;SG;2;PRS
nxa²ha ngí nxaha V;IPFV;SG;2;PST
pọ²ge gí pọge V;IPFV;SG;2;PRS
tipi xa tipi V;PRF;SG;3;PRS
ets’e ndí ʔets’e V;IPFV;SG;1;PST
go²fo ndí gofo V;IPFV;SG;1;PST
ue²n-gade²he da uengadehe V;IRR;SG;3
tsụ²-jụ gí tsụjụ V;IPFV;SG;2;PRS
ti²ʔti xká tiʔti V;PRF;SG;2;PRS
ʔmẹgo dí ʔmẹgo V;IPFV;SG;1;PRS
fụʔmi xki fụʔmi V;PRF;3;PST
hẹ²n-za xa nhyẹnza V;PRF;SG;3;PRS
mfẹ²ni da mfẹni V;IRR;SG;3
ʔba²i ʔbai V;IPFV;SG;3;PRS
xe²ʔmi ga xeʔmi V;IRR;SG;1
pa¹²di gi padi V;IRR;SG;2
pa²-ngọ dá mpangọ V;PFV;SG;1
hña²ndi stí hñandi V;PRF;1;PST
tsi ga tsi V;IRR;SG;1
jua²ts’i ndí juats’i V;IPFV;SG;1;PST
uʔtsi dí ʔüʔtsi V;IPFV;SG;1;PRS
u¹²st’i ngí ʔust’i V;IPFV;SG;2;PST
pẹ¹²ts’i stá pẹts’i V;PRF;SG;1;PRS
mu²ʔmfi muʔmfi V;IPFV;SG;3;PRS
nge¹²-ne xkí ngene V;PRF;2;PST
jue²ni gá jueni V;PFV;SG;2
xipi mí xipi V;IPFV;SG;3;PST
he²t’ä-nthä¹²hi ndí het’änthähi V;IPFV;SG;1;PST
kụ²i stí kụi V;PRF;1;PST
nthọ²ge ngí nthọge V;IPFV;SG;2;PST
ts’ahni gí ts’ahni V;IPFV;SG;2;PRS
ha²ni dá hani V;PFV;SG;1
ʔba²ha xa ʔbaha V;PRF;SG;3;PRS
jụʔtsi xki jụʔtsi V;PRF;3;PST
ntsa bi ntsa V;PFV;SG;3
nza²-ya stá nzaya V;PRF;SG;1;PRS
pẹnts’i mí pẹnts’i V;IPFV;SG;3;PST
ʔmẹpo gí ʔmẹpo V;IPFV;SG;2;PRS
pa²xi stá paxi V;PRF;SG;1;PRS
nko²mfo²rme stí nkomforme V;PRF;1;PST
ts’änt’i ngí ts’änt’i V;IPFV;SG;2;PST
jodo ga jodo V;IRR;SG;1
hme¹²-ya gi hmeya V;IRR;SG;2
mfọ²k-to gá mfọkto V;PFV;SG;2
yaʔm-tho xki yaʔmtho V;PRF;3;PST
xont’i ndí xont’i V;IPFV;SG;1;PST
me¹²-ya bi meya V;PFV;SG;3
ka¹²-k’yẹ da kak’yẹ V;IRR;SG;3
tsẹti ngí tsẹti V;IPFV;SG;2;PST
pụ¹²nt’i stá pụnt’i V;PRF;SG;1;PRS
k’o²ʔtsi xká k’oʔtsi V;PRF;SG;2;PRS
xa²ʔtsi ga xaʔtsi V;IRR;SG;1
ueʔte ngí ueʔte V;IPFV;SG;2;PST
nxi²ni stí nxini V;PRF;1;PST
uänt’i ndí uänt’i V;IPFV;SG;1;PST
hmi²-bojä¹² dí hmibojä V;IPFV;SG;1;PRS
pa¹²ti dí pati V;IPFV;SG;1;PRS
nthẹ¹² xká nthẹ V;PRF;SG;2;PRS
hue¹²ts’i mí huets’i V;IPFV;SG;3;PST
hä²spi xa hñäspi V;PRF;SG;3;PRS
mfots’i ndí mfots’i V;IPFV;SG;1;PST
ʔñụ²-tsa gá ʔñụtsa V;PFV;SG;2
jụ stí jụ V;PRF;1;PST
nza²-ya da nzaya V;IRR;SG;3
tsọ¹²ni gá tsọni V;PFV;SG;2
ʔño¹²ui ʔñoui V;IPFV;SG;3;PRS
hñọt’e gá hñọt’e V;PFV;SG;2
kai xa gai V;PRF;SG;3;PRS
e²h-ya ga ʔñëhya V;IRR;SG;1
tsa²-ʔyo gá tsaʔyo V;PFV;SG;2
fẹi ndí fẹi V;IPFV;SG;1;PST
bä²tsi dí bätsi V;IPFV;SG;1;PRS
ñän-t’e²k’ei xká ñänt’ek’ei V;PRF;SG;2;PRS
xa²ha dí xaha V;IPFV;SG;1;PRS
poki da poki V;IRR;SG;3
ọt’e ndí ʔọt’e V;IPFV;SG;1;PST
njuä²ni gi njuäni V;IRR;SG;2
nxa¹² ga nxa V;IRR;SG;1
ti¹²ti gí titi V;IPFV;SG;2;PRS
tsụ²-te xkí ntsụte V;PRF;2;PST
k’ụ²ʔtsi stá k’ụʔtsi V;PRF;SG;1;PRS
hu²mụi da hñümụi V;IRR;SG;3
oʔtsi dá ʔoʔtsi V;PFV;SG;1
hñei xki hñei V;PRF;3;PST
ts’o² xká ts’o V;PRF;SG;2;PRS
tsa¹²di dí tsadi V;IPFV;SG;1;PRS
u²ni gá ʔuni V;PFV;SG;2
änt’i xkí ʔänt’i V;PRF;2;PST
ño²gi xkí ñogi V;PRF;2;PST
pet’e da pet’e V;IRR;SG;3
nex-t’i¹²hi bi next’ihi V;PFV;SG;3
tsa²n-te stá ntsante V;PRF;SG;1;PRS
hu ga hü V;IRR;SG;1
ja¹² da nja V;IRR;SG;3
naʔtsi stí naʔtsi V;PRF;1;PST
nxaki xkí nxaki V;PRF;2;PST
hue¹²ts’i xki huets’i V;PRF;3;PST
hẹ²n-the gi nhyẹnthe V;IRR;SG;2
xi²xi da xixi V;IRR;SG;3
ʔñä²xi gí ʔñäxi V;IPFV;SG;2;PRS
tsä²t’i da zät’i V;IRR;SG;3
juʔti ngí juʔti V;IPFV;SG;2;PST
ẹ²nte xká ʔñẹnte V;PRF;SG;2;PRS
hño-ya dá hñoya V;PFV;SG;1
ʔñẹmba-ya¹² gi ʔñẹmbaya V;IRR;SG;2
pumfri gí pumfri V;IPFV;SG;2;PRS
nụ¹²-da ga nụda V;IRR;SG;1
kọ¹²xke kọxke V;IPFV;SG;3;PRS
neki xki neki V;PRF;3;PST
nga¹²nts’i ngants’i V;IPFV;SG;3;PRS
mpu²mbi dí mpumbi V;IPFV;SG;1;PRS
re²sga bi resga V;PFV;SG;3
ne²-ʔñu dí neʔñu V;IPFV;SG;1;PRS
hi dí hi V;IPFV;SG;1;PRS
ta²n-thä gí tanthä V;IPFV;SG;2;PRS
tsụ²t’i gá tsụt’i V;PFV;SG;2
kụ²ni gi kụni V;IRR;SG;2
net’i stá net’i V;PRF;SG;1;PRS
nts’oki dá nts’oki V;PFV;SG;1
ntu²ts’i gá ntuts’i V;PFV;SG;2
hu²-ʔuada xkí ñhüʔuada V;PRF;2;PST
pẹ-mna xká pẹmna V;PRF;SG;2;PRS
a²ʔ-thä xkí ʔñaʔthä V;PRF;2;PST
hñụ²fi ngí hñụfi V;IPFV;SG;2;PST
pa¹²t’i gi pat’i V;IRR;SG;2
jäpi xká jäpi V;PRF;SG;2;PRS
nxụki stí nxụki V;PRF;1;PST
häk-me¹²ya xki häkmeya V;PRF;3;PST
xu¹²st’i xust’i V;IPFV;SG;3;PRS
ntụtua-ʔri²hi bi ntụtuaʔrihi V;PFV;SG;3
zọte zọte V;IPFV;SG;3;PRS
mat’a-juä¹² dá mat’ajuä V;PFV;SG;1
ä²hä gá ʔñähä V;PFV;SG;2
tẹ²t’i dá tẹt’i V;PFV;SG;1
hmi²m-za ngí hmimza V;IPFV;SG;2;PST
ʔuä²ka²-hya²di bi ʔuäkahyadi V;PFV;SG;3
tsi²s-te xki tsiste V;PRF;3;PST
ọ²t’a²-bu¹²hla ga ʔñọt’abuhla V;IRR;SG;1
tu¹²ts’i gi tuts’i V;IRR;SG;2
ha²ha stá nhyaha V;PRF;SG;1;PRS
xaki gá xaki V;PFV;SG;2
pẹ²xni gá pẹxni V;PFV;SG;2
däki xká däki V;PRF;SG;2;PRS
teke dá teke V;PFV;SG;1
pe stá pe V;PRF;SG;1;PRS
mẹ¹²s-t’e²k’ei ga mẹst’ëk’ëi V;IRR;SG;1
nu¹²ngi bi nungi V;PFV;SG;3
jụ xkí jụ V;PRF;2;PST
hest’i stá hëst’i V;PRF;SG;1;PRS
ua²ʔti gi uaʔti V;IRR;SG;2
puʔti ngí puʔti V;IPFV;SG;2;PST
hñọ²t-hyä xki hñọthyä V;PRF;3;PST
taki mí taki V;IPFV;SG;3;PST
hñọn-the xki hñọnthe V;PRF;3;PST
nọt’e stá nọt’e V;PRF;SG;1;PRS
ʔñụ²-tsa da ʔñụtsa V;IRR;SG;3
pụ²ʔhmi ndí pụʔhmi V;IPFV;SG;1;PST
ẹ²gi ndí ʔẹgi V;IPFV;SG;1;PST
ntu²ts’i ntuts’i V;IPFV;SG;3;PRS
be²ñʔä-juä¹² ndí beñʔäjuä V;IPFV;SG;1;PST
ñä²-hñu ñähñu V;IPFV;SG;3;PRS
pẹ²ʔti dá pẹʔti V;PFV;SG;1
ʔrọ²ʔtse xa ʔrọʔtse V;PRF;SG;3;PRS
be²n-sẹ xa bensẹ V;PRF;SG;3;PRS
kue²ke xká kueke V;PRF;SG;2;PRS
hä¹²ni ngí häni V;IPFV;SG;2;PST
pẹ²ʔti xki pẹʔti V;PRF;3;PST
ẹ²n-do bi ʔñẹndo V;PFV;SG;3
kä²i dá käi V;PFV;SG;1
k’ụ²-ne bi nk’ụne V;PFV;SG;3
nta¹²ko gá ntako V;PFV;SG;2
ja²pi xká japi V;PRF;SG;2;PRS
ʔba²i stí ʔbai V;PRF;1;PST
mpụʔtsa-ñäxu mí mpụʔtsañäxu V;IPFV;SG;3;PST
nthẹui xkí nthẹui V;PRF;2;PST
mä-ya ndí mäya V;IPFV;SG;1;PST
äni ngí ʔäni V;IPFV;SG;2;PST
huʔtsi dí hüʔtsi V;IPFV;SG;1;PRS
mu²ui da muui V;IRR;SG;3
bụ²t’i stí bụt’i V;PRF;1;PST
mẹ¹²s-t’e²k’ei xki mẹst’ëk’ëi V;PRF;3;PST
ʔra²ʔtsi gi ʔraʔtsi V;IRR;SG;2
nta¹²ko xki ntako V;PRF;3;PST
ta²n-the stí tanthe V;PRF;1;PST
mfa²nt’a²-ñä xká mfant’añä V;PRF;SG;2;PRS
ngent’i ngent’i V;IPFV;SG;3;PRS
dẹ²-spi da ndẹspi V;IRR;SG;3
bọ²-da stá bọda V;PRF;SG;1;PRS
nọ¹²st’e xká nọst’e V;PRF;SG;2;PRS
xẹts’i da xẹts’i V;IRR;SG;3
ta²ki stí taki V;PRF;1;PST
tso²ʔti xa zoʔti V;PRF;SG;3;PRS
se²nti xkí senti V;PRF;2;PST
pọ²ts’e dá pọts’e V;PFV;SG;1
ñäti bi ñäti V;PFV;SG;3
k’a²ʔtsi stá k’aʔtsi V;PRF;SG;1;PRS
ani dí ʔani V;IPFV;SG;1;PRS
pi²nts’i pints’i V;IPFV;SG;3;PRS
ʔbụki xkí ʔbụki V;PRF;2;PST
hñe²ts’i stá hñëts’i V;PRF;SG;1;PRS
ntsu da ntsu V;IRR;SG;3
be¹²t’e dí bet’e V;IPFV;SG;1;PRS
jä²ts’i jäts’i V;IPFV;SG;3;PRS
hnohwi dí hnohwi V;IPFV;SG;1;PRS
hyo²-ya gá nhyoya V;PFV;SG;2
tu²huui mí tuhuui V;IPFV;SG;3;PST
ndä ga ndä V;IRR;SG;1
hua²xi ndí huaxi V;IPFV;SG;1;PST
thuui ndí thuui V;IPFV;SG;1;PST
ä¹²ni gá ʔäni V;PFV;SG;2
da stá da V;PRF;SG;1;PRS
fẹt’i gí fẹt’i V;IPFV;SG;2;PRS
ʔra¹²-mä²nu¹² ga ʔramänu V;IRR;SG;1
ʔuẹi gi ʔuẹi V;IRR;SG;2
xo²ki dí xoki V;IPFV;SG;1;PRS
k’äʔtsi bi k’äʔtsi V;PFV;SG;3
ʔba²ha stá ʔbaha V;PRF;SG;1;PRS
k’o²ʔti xki k’oʔti V;PRF;3;PST
hnọ²ʔtse mí hnọʔtse V;IPFV;SG;3;PST
jodo stí jodo V;PRF;1;PST
häk-me¹²ya ga häkmeya V;IRR;SG;1
äni ndí ʔäni V;IPFV;SG;1;PST
fọmi dí fọmi V;IPFV;SG;1;PRS
bụ¹²ts’i dá bụts’i V;PFV;SG;1
a²xa²-hai da ʔaxahai V;IRR;SG;3
te¹²de dá tede V;PFV;SG;1
ʔuä²ts’i ga ʔuäts’i V;IRR;SG;1
pä¹²di ga pädi V;IRR;SG;1
juʔmi xká juʔmi V;PRF;SG;2;PRS
xats’i ngí xats’i V;IPFV;SG;2;PST
ai xká ʔai V;PRF;SG;2;PRS
nthint’i xa nthint’i V;PRF;SG;3;PRS
xọni da xọni V;IRR;SG;3
ts’i²hni stá ts’ihni V;PRF;SG;1;PRS
tsa¹² xki za V;PRF;3;PST
mẹ¹²ñ-ʔyẹ stá mẹñʔyẹ V;PRF;SG;1;PRS
ha²x-mahai xki hyaxmahai V;PRF;3;PST
tsọ²nte ga ntsọnte V;IRR;SG;1
fo¹²st’e ga fost’e V;IRR;SG;1
ʔñẹni xki ʔñẹni V;PRF;3;PST
pa da ma V;IRR;SG;3
xọ²ni xkí xọni V;PRF;2;PST
tsa²-ya stí ntsaya V;PRF;1;PST
tso²ʔti xki zoʔti V;PRF;3;PST
ʔyo²ʔmä²-ʔñu¹² gá ʔyoʔmäʔñu V;PFV;SG;2
fo¹² fo V;IPFV;SG;3;PRS
te²-tho ndí tetho V;IPFV;SG;1;PST
the¹²ts’i xki thets’i V;PRF;3;PST
ọ²t’a²-bu¹²hla xa ʔñọt’abuhla V;PRF;SG;3;PRS
ge² ngí gë V;IPFV;SG;2;PST
tso¹²-tho dí tsotho V;IPFV;SG;1;PRS
gäts’i da gäts’i V;IRR;SG;3
hñọ²ts’e bi hñọts’e V;PFV;SG;3
mbu²ku mbuku V;IPFV;SG;3;PRS
te¹²st’i ngí test’i V;IPFV;SG;2;PST
ʔña¹²ni mí ʔñani V;IPFV;SG;3;PST
ka¹²hmi da kahmi V;IRR;SG;3
be¹²he gá behe V;PFV;SG;2
tho da tho V;IRR;SG;3
xä¹²ki mí xäki V;IPFV;SG;3;PST
nthụ²ni mí nthụni V;IPFV;SG;3;PST
nts’a¹²ta²-ñäxu dá nts’atañäxu V;PFV;SG;1
pe da pe V;IRR;SG;3
mbi²tabi xki mbitabi V;PRF;3;PST
mä²di xkí mädi V;PRF;2;PST
mä²di da mädi V;IRR;SG;3
ʔñai ndí ʔñai V;IPFV;SG;1;PST
ʔyopi bi ʔyopi V;PFV;SG;3
pụ¹²nt’i ga pụnt’i V;IRR;SG;1
hẹ¹²ts’i bi hyẹts’i V;PFV;SG;3
ọ²ke gi ʔyọke V;IRR;SG;2
ts’ä¹² ngí ts’ä V;IPFV;SG;2;PST
ja¹²-bụ stá jabụ V;PRF;SG;1;PRS
ʔmẹ²-mfo bi ʔmẹmfo V;PFV;SG;3
ñän-t’e²k’ei xki ñänt’ek’ei V;PRF;3;PST
nda¹²ndi-ñähmu dá ndandiñähmu V;PFV;SG;1
po²nts’i xa ponts’i V;PRF;SG;3;PRS
tä¹²hä stí tähä V;PRF;1;PST
kụ²ts’i xki kụts’i V;PRF;3;PST
ne¹²ts’e stí nets’e V;PRF;1;PST
ho²ki ngí hoki V;IPFV;SG;2;PST
pa-thä gá pathä V;PFV;SG;2
do¹²ndo stí dondo V;PRF;1;PST
te dá te V;PFV;SG;1
ʔñe²he bi ʔñëhë V;PFV;SG;3
ei dí ʔëi V;IPFV;SG;1;PRS
ʔbo²ni ʔboni V;IPFV;SG;3;PRS
ọ²nä²-te gá ʔọnäte V;PFV;SG;2
ʔmẹ²ha xkí ʔmẹha V;PRF;2;PST
zẹ²tui bi zẹtui V;PFV;SG;3
a²n-sei gi ʔñansëi V;IRR;SG;2
nu²-ma²ñho da numañho V;IRR;SG;3
bọ²-da xki bọda V;PRF;3;PST
ñoho mí ñoho V;IPFV;SG;3;PST
pẹ²ts’i¹²-nts’ụ da pẹts’ints’ụ V;IRR;SG;3
tsä¹²ni ndí tsäni V;IPFV;SG;1;PST
pẹ¹²hi bi pẹhi V;PFV;SG;3
jua²-sẹ¹²hẹ ndí juasẹhẹ V;IPFV;SG;1;PST
gunt’i ga gunt’i V;IRR;SG;1
ts’oki xki ts’oki V;PRF;3;PST
ts’o¹²ni xká ts’oni V;PRF;SG;2;PRS
dụ xa ndụ V;PRF;SG;3;PRS
po¹²ni xká poni V;PRF;SG;2;PRS
foʔtsi da foʔtsi V;IRR;SG;3
ʔmẹ²-mfo da ʔmẹmfo V;IRR;SG;3
u¹²t’i gí ʔüt’i V;IPFV;SG;2;PRS
mban-ji²-tho bi mbanjitho V;PFV;SG;3
hä²spi gá hñäspi V;PFV;SG;2
pẹnt’i ga pẹnt’i V;IRR;SG;1
pi²ki gi piki V;IRR;SG;2
ʔui²-te stí ʔuite V;PRF;1;PST
xụ²-ñä da xụñä V;IRR;SG;3
ho²nga²-ʔyo da nhyongaʔyo V;IRR;SG;3
tsiti xká tsiti V;PRF;SG;2;PRS
nxo¹²ts’i ga nxots’i V;IRR;SG;1
ʔba²-sẹ xkí ʔbasẹ V;PRF;2;PST
ʔyo¹²-ʔthä stí ʔyoʔthä V;PRF;1;PST
mipa-ñä stí mipañä V;PRF;1;PST
ja²pi ga japi V;IRR;SG;1
tẹ¹²xi stí tẹxi V;PRF;1;PST
su gí su V;IPFV;SG;2;PRS
jụt’i dá jụt’i V;PFV;SG;1
ʔragi stá ʔragi V;PRF;SG;1;PRS
ti²ʔti gá tiʔti V;PFV;SG;2
ko²ʔtui xká koʔtui V;PRF;SG;2;PRS
mungi xa mungi V;PRF;SG;3;PRS
nxänts’i gá nxänts’i V;PFV;SG;2
se²ñä dá señä V;PFV;SG;1
k’o²ʔmi xká k’oʔmi V;PRF;SG;2;PRS
mbo²-to da mboto V;IRR;SG;3
mo²ʔtsi xa moʔtsi V;PRF;SG;3;PRS
nthẹ-xui gí nthẹxui V;IPFV;SG;2;PRS
ue²n-ga²hai xkí uengahai V;PRF;2;PST
hñä²mbä²-nt’ẹi gá hñämbant’ẹi V;PFV;SG;2
juʔti ndí juʔti V;IPFV;SG;1;PST
o²xi gi ʔñoxi V;IRR;SG;2
ʔbụ²-tho gi ʔbụtho V;IRR;SG;2
tipi stá tipi V;PRF;SG;1;PRS
tets’e xa dets’e V;PRF;SG;3;PRS
ʔñan-the stá ʔñanthe V;PRF;SG;1;PRS
hnọ²ʔtse gi hnọʔtse V;IRR;SG;2
hño¹²ga²-jäʔi xká hñogajäʔi V;PRF;SG;2;PRS
tsa²-te dí tsate V;IPFV;SG;1;PRS
xụki ndí xụki V;IPFV;SG;1;PST
pe²m-ts’e ga pemts’e V;IRR;SG;1
ʔba²ti xki ʔbati V;PRF;3;PST
ko¹²ts’i xká kots’i V;PRF;SG;2;PRS
huä¹²ki ngí huäki V;IPFV;SG;2;PST
fa¹²ti fati V;IPFV;SG;3;PRS
tsiki mí tsiki V;IPFV;SG;3;PST
de²sia stá desia V;PRF;SG;1;PRS
tämi stí tämi V;PRF;1;PST
fọ²ʔmi xki fọʔmi V;PRF;3;PST
tro¹²zo stí trozo V;PRF;1;PST
tho²ki gí thoki V;IPFV;SG;2;PRS
pe²te xká pete V;PRF;SG;2;PRS
ño¹²h-wi ñohwi V;IPFV;SG;3;PRS
pa²t’i bi mat’i V;PFV;SG;3
ne²-ʔñu gí neʔñu V;IPFV;SG;2;PRS
nk’a-thụ ngí nk’athụ V;IPFV;SG;2;PST
ʔbẹ¹²di mí ʔbẹdi V;IPFV;SG;3;PST
maʔti gi maʔti V;IRR;SG;2
nọ²ma²-ñʔụ xa nọmañʔụ V;PRF;SG;3;PRS
k’o²ki stá k’oki V;PRF;SG;1;PRS
ne-pe dá nepe V;PFV;SG;1
o-fa²di ga ʔñofadi V;IRR;SG;1
ẹnts’i bi ʔyẹnts’i V;PFV;SG;3
pẹnt’i xkí pẹnt’i V;PRF;2;PST
ʔñofo dá ʔñofo V;PFV;SG;1
häi mí häi V;IPFV;SG;3;PST
zọte xki zọte V;PRF;3;PST
yo-ñä¹²hi xkí yoñähi V;PRF;2;PST
te¹²ge da dege V;IRR;SG;3
ts’änt’i dí ts’änt’i V;IPFV;SG;1;PRS
fe¹²t’e xa fet’e V;PRF;SG;3;PRS
ga²ʔtsi gi gaʔtsi V;IRR;SG;2
tsụ²ti xká tsụti V;PRF;SG;2;PRS
oki xki ʔoki V;PRF;3;PST
thä²ʔti xki thäʔti V;PRF;3;PST
nkụ²ni stí nkụni V;PRF;1;PST
pọ¹²ni pọni V;IPFV;SG;3;PRS
k’o²ki xki k’oki V;PRF;3;PST
nkụ¹²xki xa nkụxki V;PRF;SG;3;PRS
ʔbambi bi ʔbambi V;PFV;SG;3
pẹui gi pẹui V;IRR;SG;2
ʔyọ² mí ʔyọ V;IPFV;SG;3;PST
ntsa¹²p-ts’ẹdi gí ntsapts’ẹdi V;IPFV;SG;2;PRS
nes-t’i¹²hi xki nest’ihi V;PRF;3;PST
past’i dá past’i V;PFV;SG;1
ugi stí ʔugi V;PRF;1;PST
ntatua²-bọznä ndí ntatuabọznä V;IPFV;SG;1;PST
tet’e xkí tet’e V;PRF;2;PST
xẹts’i bi xẹts’i V;PFV;SG;3
a²spi gi ʔaspi V;IRR;SG;2
nu²hu gá nuhu V;PFV;SG;2
hä²mbi stá hämbi V;PRF;SG;1;PRS
edi gí ʔëdi V;IPFV;SG;2;PRS
ye²ʔtsi xkí yeʔtsi V;PRF;2;PST
ʔbọ²t’e ndí ʔbọt’e V;IPFV;SG;1;PST
tsi¹²ni tsini V;IPFV;SG;3;PRS
neki da neki V;IRR;SG;3
paki gá paki V;PFV;SG;2
hne²ki gi hneki V;IRR;SG;2
ʔua²m-t’ä¹²hä bi ʔuamt’ähä V;PFV;SG;3
pä²nts’a²-hai xkí pänts’ahai V;PRF;2;PST
jo¹² gí jo V;IPFV;SG;2;PRS
tẹ¹²-do stí tẹdo V;PRF;1;PST
xụ²-ñä ga xụñä V;IRR;SG;1
jodo gá jodo V;PFV;SG;2
ụ²ʔti dá ʔụʔti V;PFV;SG;1
mä¹²x-ʔo bi mäxʔo V;PFV;SG;3
fadi mí fadi V;IPFV;SG;3;PST
tsụ¹² ga tsụ V;IRR;SG;1
ẹgi stá ʔẹgi V;PRF;SG;1;PRS
uʔtsi ngí ʔüʔtsi V;IPFV;SG;2;PST
fọm-ts’oni ngí fọmts’oni V;IPFV;SG;2;PST
pa²mʔi gá mpamʔi V;PFV;SG;2
zi²ki ziki V;IPFV;SG;3;PRS
ʔuẹi dí ʔuẹi V;IPFV;SG;1;PRS
joʔmi xa goʔmi V;PRF;SG;3;PRS
hñọt’e da hñọt’e V;IRR;SG;3
pẹ² xa pẹ V;PRF;SG;3;PRS
k’äni mí k’äni V;IPFV;SG;3;PST
po¹²nä²-ʔro²njua bi ponäʔronjua V;PFV;SG;3
nta²ti stá ntati V;PRF;SG;1;PRS
kue²t’e gí kuet’e V;IPFV;SG;2;PRS
nkụ²ni xkí nkụni V;PRF;2;PST
bụ¹²ts’i xká bụts’i V;PRF;SG;2;PRS
ñä¹²hi xká ñähi V;PRF;SG;2;PRS
họ²ts’e ndí họts’e V;IPFV;SG;1;PST
pe²ʔte xa peʔte V;PRF;SG;3;PRS
past’i dí past’i V;IPFV;SG;1;PRS
ʔyo² gi ʔño V;IRR;SG;2
po²ki gá poki V;PFV;SG;2
pọ²ʔte pọʔte V;IPFV;SG;3;PRS
mbi²tabi stí mbitabi V;PRF;1;PST
ʔue²ke gí ʔueke V;IPFV;SG;2;PRS
tsa²-ya gá ntsaya V;PFV;SG;2
xei xa xei V;PRF;SG;3;PRS
xipi xki xipi V;PRF;3;PST
tsi²ʔmi xa tsiʔmi V;PRF;SG;3;PRS
noki ndí noki V;IPFV;SG;1;PST
nda²ki mí ndaki V;IPFV;SG;3;PST
nzo¹²-ñä xká nzoñä V;PRF;SG;2;PRS
zụ²di xki zụdi V;PRF;3;PST
thi¹²nt’i dá thint’i V;PFV;SG;1
i² bi ʔi V;PFV;SG;3
ñäpi xkí ñäpi V;PRF;2;PST
ʔbẹ²t’o stá ʔbẹt’o V;PRF;SG;1;PRS
pọ¹²họ dí pọhọ V;IPFV;SG;1;PRS
mpụ¹²nga²-ʔẹ¹²nxẹ bi mpụngaʔẹnxẹ V;PFV;SG;3
hñä²mbä²-nt’ẹi xká hñämbant’ẹi V;PRF;SG;2;PRS
fa²ʔtsi xa faʔtsi V;PRF;SG;3;PRS
hä¹²mpi xki hñämpi V;PRF;3;PST
tu²-mthu¹²hu mí tumthuhu V;IPFV;SG;3;PST
nu²-mxa gi numxa V;IRR;SG;2
njuä²ni dá njuäni V;PFV;SG;1
ñu²nts’i mí ñunts’i V;IPFV;SG;3;PST
pẹ²-zate gá pẹzate V;PFV;SG;2
o²ki xkí ʔyoki V;PRF;2;PST
nsa²-ya ngí nsaya V;IPFV;SG;2;PST
pẹ¹²ʔtsi xki mẹʔtsi V;PRF;3;PST
jua¹²ti da juati V;IRR;SG;3
njo¹²ni mí njoni V;IPFV;SG;3;PST
tsu¹²t’i da tsut’i V;IRR;SG;3
paʔti xki paʔti V;PRF;3;PST
pụ¹²nt’i pụnt’i V;IPFV;SG;3;PRS
nsu stá nsu V;PRF;SG;1;PRS
pụ²ʔti xkí pụʔti V;PRF;2;PST
pä¹²tui pätui V;IPFV;SG;3;PRS
ʔmẹ-mpi¹²ts’i ʔmẹmpits’i V;IPFV;SG;3;PRS
koʔtsi xkí koʔtsi V;PRF;2;PST
k’o²hni gi k’ohni V;IRR;SG;2
pẹ¹²ti gá pẹti V;PFV;SG;2
k’ụ²ʔti xká k’ụʔti V;PRF;SG;2;PRS
he²t’i ndí hët’i V;IPFV;SG;1;PST
nu¹²ni stí nuni V;PRF;1;PST
họmi stí họmi V;PRF;1;PST
me²ʔmi meʔmi V;IPFV;SG;3;PRS
fẹ²ta²-te stí mfẹtate V;PRF;1;PST
xa²s-te dí xaste V;IPFV;SG;1;PRS
nts’ẹ²di xa nts’ẹdi V;PRF;SG;3;PRS
heki xki hñëki V;PRF;3;PST
hä²-thä stí hñäthä V;PRF;1;PST
ñe²ʔmi mí ñeʔmi V;IPFV;SG;3;PST
me¹²-ya gí meya V;IPFV;SG;2;PRS
xo¹²fo ndí xofo V;IPFV;SG;1;PST
nda²n-gua mí ndangua V;IPFV;SG;3;PST
họ²x-gi²ni stí nhyọxgini V;PRF;1;PST
xe²ʔti xa xeʔti V;PRF;SG;3;PRS
mpa¹²di bi mpadi V;PFV;SG;3
nzi²m-xu²di xki nzimxudi V;PRF;3;PST
mä-ya stá mäya V;PRF;SG;1;PRS
heʔtsi ngí hëʔtsi V;IPFV;SG;2;PST
thụ²ʔmi mí thụʔmi V;IPFV;SG;3;PST
nko²ntra gá nkontra V;PFV;SG;2
ko²t’a²-fa²di mí kot’afadi V;IPFV;SG;3;PST
jụmpa²bi da gụmpabi V;IRR;SG;3
fẹi xki mẹi V;PRF;3;PST
e² mbi¹²da xká ʔñëmbida V;PRF;SG;2;PRS
thẹʔti ga thẹʔti V;IRR;SG;1
nge¹²-ne ngene V;IPFV;SG;3;PRS
tsa¹²ui stí tsaui V;PRF;1;PST
ʔñọ²-the xki ʔñọthe V;PRF;3;PST
tu gá tu V;PFV;SG;2
a¹²ni mí ʔani V;IPFV;SG;3;PST
tsä¹²mi stí tsämi V;PRF;1;PST
mä²-te ga mäte V;IRR;SG;1
nthu²ki stá nthuki V;PRF;SG;1;PRS
tsụ²mʔi xká ntsụmʔi V;PRF;SG;2;PRS
tho²gi xki thogi V;PRF;3;PST
fụ²t’i stí fụt’i V;PRF;1;PST
tsọ²nte xkí ntsọnte V;PRF;2;PST
a²k-hñu²ni gá ʔñakhñuni V;PFV;SG;2
ẹgi ndí ʔẹgi V;IPFV;SG;1;PST
nes-t’i¹²hi gí nest’ihi V;IPFV;SG;2;PRS
dụ²-zụ ngí dụzụ V;IPFV;SG;2;PST
kụ²t’i gí kụt’i V;IPFV;SG;2;PRS
ʔñe¹²st’e ndí ʔñest’e V;IPFV;SG;1;PST
ʔbẹ²-mfo stí ʔbẹmfo V;PRF;1;PST
nxaʔtua-xi¹² nxaʔtuaxi V;IPFV;SG;3;PRS
ña²ti dí ñati V;IPFV;SG;1;PRS
neʔtsi da neʔtsi V;IRR;SG;3
ot’i xa ʔyoti V;PRF;SG;3;PRS
pụ²ʔti pụʔti V;IPFV;SG;3;PRS
tä¹²hmi xkí tähmi V;PRF;2;PST
ha¹²t-hmi xki hathmi V;PRF;3;PST
pants’i stá pants’i V;PRF;SG;1;PRS
ts’ok’-ba²ha da nts’okʔbaha V;IRR;SG;3
te¹²st’i gá test’i V;PFV;SG;2
nthẹui dí nthẹui V;IPFV;SG;1;PRS
k’ä²ts’i bi k’äts’i V;PFV;SG;3
mpụ¹²nga²-ʔẹ¹²nxẹ stí mpụngaʔẹnxẹ V;PRF;1;PST
ño²gi mí ñogi V;IPFV;SG;3;PST
hä²ʔtsui gí häʔtsui V;IPFV;SG;2;PRS
jụ²ni ndí jụni V;IPFV;SG;1;PST
ha²ni xká hyani V;PRF;SG;2;PRS
k’ụ²ʔti xa k’ụʔti V;PRF;SG;3;PRS
ndu²pä-te ngí ndupäte V;IPFV;SG;2;PST
nu¹²ni gí nuni V;IPFV;SG;2;PRS
hahni ga hahni V;IRR;SG;1
tụhụ xki dụhụ V;PRF;3;PST
da²ʔthi ngí daʔthi V;IPFV;SG;2;PST
hñä²mbä-ndä dí hñämbändä V;IPFV;SG;1;PRS
tsa²-ʔyo stí tsaʔyo V;PRF;1;PST
ne²i xkí nei V;PRF;2;PST
ja¹²-hme xa jahme V;PRF;SG;3;PRS
pọ¹²họ mí pọhọ V;IPFV;SG;3;PST
hä²kua²bi ndí häkuabi V;IPFV;SG;1;PST
ẹʔtsi gá ʔẹʔtsi V;PFV;SG;2
nji mí nji V;IPFV;SG;3;PST
gä²ʔtsi stá ngäʔtsi V;PRF;SG;1;PRS
hño¹²-sko hñosko V;IPFV;SG;3;PRS
ʔmẹ²-mfo xká ʔmẹmfo V;PRF;SG;2;PRS
xẹpi gá xẹpi V;PFV;SG;2
k’o²hni da k’ohni V;IRR;SG;3
ts’o¹²ni mí ts’oni V;IPFV;SG;3;PST
ntsa¹²ui dá ntsaui V;PFV;SG;1
ʔbẹ²-mfo xká ʔbẹmfo V;PRF;SG;2;PRS
ʔñe¹²pi ʔñepi V;IPFV;SG;3;PRS
teste da teste V;IRR;SG;3
ts’o¹²ni xa ts’oni V;PRF;SG;3;PRS
ʔbat’i bi ʔbat’i V;PFV;SG;3
tsụ²ʔti xa zụʔti V;PRF;SG;3;PRS
ko¹²mi gi komi V;IRR;SG;2
jụts’i xkí jụts’i V;PRF;2;PST
xẹpi stá xẹpi V;PRF;SG;1;PRS
tsä²ki ngí tsäki V;IPFV;SG;2;PST
nguent’i gi nguent’i V;IRR;SG;2
po²ho gí poho V;IPFV;SG;2;PRS
ʔña¹²-thä da ʔñathä V;IRR;SG;3
tho²ki thoki V;IPFV;SG;3;PRS
tẹ²ti bi tẹti V;PFV;SG;3
fụti gá fụti V;PFV;SG;2
pẹ²t-’yẹ gi pẹt’yẹ V;IRR;SG;2
xu¹²st’i dí xust’i V;IPFV;SG;1;PRS
e²-bru ndí ʔëbru V;IPFV;SG;1;PST
fa²-ʔyo xa mfaʔyo V;PRF;SG;3;PRS
fiʔtsi dí fiʔtsi V;IPFV;SG;1;PRS
pobo da pobo V;IRR;SG;3
tä²-te da ntäte V;IRR;SG;3
ʔyo¹²-ʔthä dá ʔyoʔthä V;PFV;SG;1
tsapi tsapi V;IPFV;SG;3;PRS
ts’i²ʔmi xká ts’iʔmi V;PRF;SG;2;PRS
yo²bri yobri V;IPFV;SG;3;PRS
hma²ʔtsi ngí hmaʔtsi V;IPFV;SG;2;PST
k’uẹ²ʔtsi bi k’uẹʔtsi V;PFV;SG;3
nu²-mxa bi numxa V;PFV;SG;3
mpụ¹²nga²-zuʔue stí mpụngazuʔue V;PRF;1;PST
fụi fụi V;IPFV;SG;3;PRS
nda²n-gua gi ndangua V;IRR;SG;2
hñei gá hñei V;PFV;SG;2
hegi xa hñëgi V;PRF;SG;3;PRS
he²ʔtsi stá heʔtsi V;PRF;SG;1;PRS
ntra²si²sta ngí ntrasista V;IPFV;SG;2;PST
mpụ¹²nga²-mẹfi ndí mpụngamẹfi V;IPFV;SG;1;PST
dä²nts’i xká ndänts’i V;PRF;SG;2;PRS
ut’i ʔut’i V;IPFV;SG;3;PRS
ja²bi jabi V;IPFV;SG;3;PRS
ntsẹ²ni xká ntsẹni V;PRF;SG;2;PRS
ʔmaʔma-nza¹²ya mí ʔmaʔmanzaya V;IPFV;SG;3;PST
jondi xká jondi V;PRF;SG;2;PRS
ts’a²t’i stí nts’at’i V;PRF;1;PST
ʔyo¹²ni gi ʔyoni V;IRR;SG;2
k’ua²t’i stí k’uat’i V;PRF;1;PST
pi²xi gá pixi V;PFV;SG;2
toi xki toi V;PRF;3;PST
ño¹²-hụ da ñohụ V;IRR;SG;3
e²he gi ʔñëhe V;IRR;SG;2
ʔñu¹²ni bi ʔñuni V;PFV;SG;3
ʔbẹ-bo da ʔbẹbo V;IRR;SG;3
ʔbụk-ne dá ʔbụkne V;PFV;SG;1
ma²te²ne xki matene V;PRF;3;PST
ti²ki xkí tiki V;PRF;2;PST
a²ka²-te gí ʔakate V;IPFV;SG;2;PRS
mpụ²t’i xki mpụt’i V;PRF;3;PST
ä¹²tsi dá ʔätsi V;PFV;SG;1
ụ¹²ni ngí ʔụni V;IPFV;SG;2;PST
mẹdi bi mẹdi V;PFV;SG;3
ʔñupi ngí ʔñupi V;IPFV;SG;2;PST
ts’o²-da ngí ts’oda V;IPFV;SG;2;PST
hä¹²ni xká hñäni V;PRF;SG;2;PRS
hño²ki ndí hñoki V;IPFV;SG;1;PST
te²xki xa texki V;PRF;SG;3;PRS
ʔyo²-ua dá ʔñogua V;PFV;SG;1
ʔbụki dí ʔbụki V;IPFV;SG;1;PRS
ha²ha ngí haha V;IPFV;SG;2;PST
tsụ¹²-jụ²mhai xki ntsụjụmhai V;PRF;3;PST
tuti xa tuti V;PRF;SG;3;PRS
pọ²ts’e xki bọts’e V;PRF;3;PST
ja¹²-ʔbẹgo gi jaʔbẹgo V;IRR;SG;2
o²t’i ʔot’i V;IPFV;SG;3;PRS
mpo¹²nt’i dí mpont’i V;IPFV;SG;1;PRS
de²sia dí desia V;IPFV;SG;1;PRS
ha²x-mahai mí haxmahai V;IPFV;SG;3;PST
ent’i xki ʔyent’i V;PRF;3;PST
hñe²ts’i gá hñëts’i V;PFV;SG;2
ʔya²ha bi ʔyaha V;PFV;SG;3
fẹti bi mẹti V;PFV;SG;3
ʔño¹²ui dí ʔñoui V;IPFV;SG;1;PRS
pẹ²t’i ngí pẹt’i V;IPFV;SG;2;PST
ʔñụ²ni dá ʔñụni V;PFV;SG;1
k’ui²xki bi k’uixki V;PFV;SG;3
ndu²s-te stí nduste V;PRF;1;PST
ntu¹²ti dí ntuti V;IPFV;SG;1;PRS
ʔna²-ʔyo xkí ʔnaʔyo V;PRF;2;PST
pi²ji xa piji V;PRF;SG;3;PRS
a²t’i gá ʔyat’i V;PFV;SG;2
ambi ngí ʔambi V;IPFV;SG;2;PST
ụ² xki ʔñụ V;PRF;3;PST
fọ-jyä xki fọjyä V;PRF;3;PST
kaʔtsi gá kaʔtsi V;PFV;SG;2
k’ụ²ʔtsi dá k’ụʔtsi V;PFV;SG;1
kụ¹²hni xkí kụhni V;PRF;2;PST
ʔña²nga²-ñhu²ni xká ʔñangañhuni V;PRF;SG;2;PRS
u²ʔ-thyä da ʔñuthyä V;IRR;SG;3
ka²lku²la ndí kalkula V;IPFV;SG;1;PST
fọt’e dí fọt’e V;IPFV;SG;1;PRS
tẹ¹²-da-ʔñu¹² ga tẹdaʔñu V;IRR;SG;1
fẹti ga fẹti V;IRR;SG;1
ntso¹²ts’i xkí ntsots’i V;PRF;2;PST
ndä-ne stá ndäne V;PRF;SG;1;PRS
ʔra²-ʔyo xkí ʔraʔyo V;PRF;2;PST
ko¹²ts’i gá kots’i V;PFV;SG;2
tsẹ²t’i ndí tsẹt’i V;IPFV;SG;1;PST
ʔña¹²ni ngí ʔñani V;IPFV;SG;2;PST
huẹ¹²ts’i da huẹts’i V;IRR;SG;3
ät’i gí ʔät’i V;IPFV;SG;2;PRS
ñäti dí ñäti V;IPFV;SG;1;PRS
pi²nts’i ga pints’i V;IRR;SG;1
pi²xi stá pixi V;PRF;SG;1;PRS
ue²n-ga²nza¹²ya dá uenganzaya V;PFV;SG;1
ja¹²-bụ xká jabụ V;PRF;SG;2;PRS
ụ¹²ni gá ʔụni V;PFV;SG;2
tsụ²mʔi gí tsụmʔi V;IPFV;SG;2;PRS
ets’e xa ʔyets’e V;PRF;SG;3;PRS
ñu²ni ngí ñuni V;IPFV;SG;2;PST
pẹfi stí pẹfi V;PRF;1;PST
pẹ²t-hme xki pẹthme V;PRF;3;PST
thụ¹²ts’i gi thụts’i V;IRR;SG;2
kụ²n-the stí nkụnthe V;PRF;1;PST
fa²ʔtsi ga faʔtsi V;IRR;SG;1
thi¹²nt’i gi thint’i V;IRR;SG;2
ndoʔspi-ñä gi ndoʔspiñä V;IRR;SG;2
gant’i xa gant’i V;PRF;SG;3;PRS
xi²xi stí xixi V;PRF;1;PST
pi²xi ngí pixi V;IPFV;SG;2;PST
ts’ä¹² dí ts’ä V;IPFV;SG;1;PRS
jụ dá jụ V;PFV;SG;1
ʔna²-ʔyo bi ʔnaʔyo V;PFV;SG;3
hme¹²-ya dá hmeya V;PFV;SG;1
foti mí foti V;IPFV;SG;3;PST
ʔñụ²ʔti xkí ʔñụʔti V;PRF;2;PST
mbätsi dí mbätsi V;IPFV;SG;1;PRS
nxa²-da gí nxada V;IPFV;SG;2;PRS
po¹²nä²-ʔro²njua mí ponäʔronjua V;IPFV;SG;3;PST
hmä²ni dí hmäni V;IPFV;SG;1;PRS
zi²thu xki nzithu V;PRF;3;PST
tu¹²hni xa ntuhni V;PRF;SG;3;PRS
sẹ²-ya ndí sẹya V;IPFV;SG;1;PST
tsi¹²ni stí tsini V;PRF;1;PST
nụ¹²-da gi nụda V;IRR;SG;2
ʔyo²mbi stá ʔyombi V;PRF;SG;1;PRS
pats’i stí pats’i V;PRF;1;PST
hña²hni mí hñahni V;IPFV;SG;3;PST
hä²ʔtsui ngí häʔtsui V;IPFV;SG;2;PST
hmi²m-t’ẹi gí hmimt’ẹi V;IPFV;SG;2;PRS
ho²-du ga hodu V;IRR;SG;1
to²rso torso V;IPFV;SG;3;PRS
xahni xká xahni V;PRF;SG;2;PRS
pa²t’i dí pat’i V;IPFV;SG;1;PRS
tro¹²zo stá trozo V;PRF;SG;1;PRS
ụ²ta²-te gí ʔụtate V;IPFV;SG;2;PRS
hño¹²ga²-jäʔi xki hñogajäʔi V;PRF;3;PST
tsi²-mdo stá tsimdo V;PRF;SG;1;PRS
ya¹²ʔtsi ngí yaʔtsi V;IPFV;SG;2;PST
xa²s-te xki nxaste V;PRF;3;PST
ha¹²t’i xká hyat’i V;PRF;SG;2;PRS
hwifi stí hwifi V;PRF;1;PST
tsọ²ni ga tsọni V;IRR;SG;1
maʔtä-juä¹² stí maʔtäjuä V;PRF;1;PST
saʔtsi ga saʔtsi V;IRR;SG;1
ho²nga²-ʔyo gá nhyongaʔyo V;PFV;SG;2
tsụi ndí tsụi V;IPFV;SG;1;PST
ma-ñä xa mañä V;PRF;SG;3;PRS
hñẹ²ni mí hñẹni V;IPFV;SG;3;PST
kats’i xki gats’i V;PRF;3;PST
tha²ha da thaha V;IRR;SG;3
ʔñọt’e xa ʔñọt’e V;PRF;SG;3;PRS
nzo¹²-ñä da nzoñä V;IRR;SG;3
jo²hni xki johni V;PRF;3;PST
pa¹²di xká padi V;PRF;SG;2;PRS
jue²ni bi jueni V;PFV;SG;3
xaʔti xa xaʔti V;PRF;SG;3;PRS
pa-thä ngí pathä V;IPFV;SG;2;PST
pẹ²-snä bi pẹsnä V;PFV;SG;3
k’e gí k’ë V;IPFV;SG;2;PRS
họ²x-gi²ni ga nhyọxgini V;IRR;SG;1
ụ²-ʔta xa ʔụʔta V;PRF;SG;3;PRS
xi²sei dá xisei V;PFV;SG;1
ẹgi gí ʔẹgi V;IPFV;SG;2;PRS
tẹx-ʔuada bi tẹxʔuada V;PFV;SG;3
po¹²nt’a²-ʔyẹ pont’aʔyẹ V;IPFV;SG;3;PRS
mu²ʔmfi bi muʔmfi V;PFV;SG;3
ʔue²ke ga ʔueke V;IRR;SG;1
ʔuet’i gi ʔuët’i V;IRR;SG;2
nlo²chi dí nlochi V;IPFV;SG;1;PRS
täni xkí ntäni V;PRF;2;PST
nthä²di da nthädi V;IRR;SG;3
tẹ¹²xi gí tẹxi V;IPFV;SG;2;PRS
ueʔte stí ueʔte V;PRF;1;PST
pe xká pe V;PRF;SG;2;PRS
hñeni ndí hñeni V;IPFV;SG;1;PST
jụt’i xa gụt’i V;PRF;SG;3;PRS
hest’i hëst’i V;IPFV;SG;3;PRS
xo²s-thu¹²hu stí nxosthuhu V;PRF;1;PST
ʔuaki stá ʔuaki V;PRF;SG;1;PRS
hmipabi hmipabi V;IPFV;SG;3;PRS
ʔuini dí ʔuini V;IPFV;SG;1;PRS
bä¹²n-te xki bänte V;PRF;3;PST
ñä²ki dí ñäki V;IPFV;SG;1;PRS
nu²nts’i xki nunts’i V;PRF;3;PST
ʔñe¹²st’e dí ʔñest’e V;IPFV;SG;1;PRS
mbu²ku bi mbuku V;PFV;SG;3
häʔmi gí häʔmi V;IPFV;SG;2;PRS
ä²t’i xki ʔät’i V;PRF;3;PST
ntọ²ts’e da ntọts’e V;IRR;SG;3
ọts’e da ʔyọts’e V;IRR;SG;3
tsụ²t’i xa zụt’i V;PRF;SG;3;PRS
mfa²ʔtsi xki mfaʔtsi V;PRF;3;PST
ʔño¹²ui stí ʔñoui V;PRF;1;PST
xei stá xei V;PRF;SG;1;PRS
tsu¹²t’i xki tsut’i V;PRF;3;PST
u²ʔtsi ʔuʔtsi V;IPFV;SG;3;PRS
tẹ da dẹ V;IRR;SG;3
nu¹² ga nu V;IRR;SG;1
xi²sei ngí xisei V;IPFV;SG;2;PST
emei ʔëmei V;IPFV;SG;3;PRS
ndä-potho da ndäpotho V;IRR;SG;3
fọnt’i dá fọnt’i V;PFV;SG;1
ne²-du xa nedu V;PRF;SG;3;PRS
e²-bru stí ʔëbru V;PRF;1;PST
thẹ¹²lo stá thẹlo V;PRF;SG;1;PRS
teste mí teste V;IPFV;SG;3;PST
k’ẹ²-suni xki nk’ẹsuni V;PRF;3;PST
fụ²ni fụni V;IPFV;SG;3;PRS
tsụmi ga tsụmi V;IRR;SG;1
nku da nku V;IRR;SG;3
joki ndí joki V;IPFV;SG;1;PST
ha²-ne xki nhyane V;PRF;3;PST
hñẹkui da hñẹkui V;IRR;SG;3
ne¹²hi bi nehi V;PFV;SG;3
pa²-dẹthä ndí padẹthä V;IPFV;SG;1;PST
hi xká nhyi V;PRF;SG;2;PRS
k’o²ʔtsi gá k’oʔtsi V;PFV;SG;2
ts’ụ¹²ti ga ts’ụti V;IRR;SG;1
hant-hyä stá hanthyä V;PRF;SG;1;PRS
neni neni V;IPFV;SG;3;PRS
nt’o¹²xi gá nt’oxi V;PFV;SG;2
nthu²ki gí nthuki V;IPFV;SG;2;PRS
a²spi gá ʔaspi V;PFV;SG;2
njuai njuai V;IPFV;SG;3;PRS
zo²-te xki zote V;PRF;3;PST
nsi¹² da nsi V;IRR;SG;3
hä¹²mpi dá hämpi V;PFV;SG;1
ʔyo²-mxu²di gí ʔyomxudi V;IPFV;SG;2;PRS
xi²hni xká xihni V;PRF;SG;2;PRS
ẹ²-ʔt-fi ndí ʔẹʔthfi V;IPFV;SG;1;PST
pu²ra gí pura V;IPFV;SG;2;PRS
pe²ni ngí peni V;IPFV;SG;2;PST
hä²spi gi hñäspi V;IRR;SG;2
tsụ¹²ti gi tsụti V;IRR;SG;2
mpẹ²ʔti xki mpẹʔti V;PRF;3;PST
ta²ka²-pa mí takapa V;IPFV;SG;3;PST
ka¹²-k’yẹ xki kak’yẹ V;PRF;3;PST
bụ¹²-gu stí bụgu V;PRF;1;PST
ntsọʔmi mí ntsọʔmi V;IPFV;SG;3;PST
tsụ²ʔti ga tsụʔti V;IRR;SG;1
niʔtsi da niʔtsi V;IRR;SG;3
nä²via gí nävia V;IPFV;SG;2;PRS
ọ²t’a²-do¹²ndo ngí ʔọt’adondo V;IPFV;SG;2;PST
ko²ʔti stá koʔti V;PRF;SG;1;PRS
paki dá paki V;PFV;SG;1
k’ua²t’i xkí k’uat’i V;PRF;2;PST
ambi gá ʔambi V;PFV;SG;2
mfọ²k-to gí mfọkto V;IPFV;SG;2;PRS
pe¹²ngi dí pengi V;IPFV;SG;1;PRS
ofo ndí ʔofo V;IPFV;SG;1;PST
ñä²ʔ-thä dí ñäʔthä V;IPFV;SG;1;PRS
fa²ʔtsi xkí faʔtsi V;PRF;2;PST
foʔtsi ndí foʔtsi V;IPFV;SG;1;PST
ʔra²-ʔyo gá ʔraʔyo V;PFV;SG;2
ä¹²ni ʔäni V;IPFV;SG;3;PRS
a²xa²-hai ndí ʔaxahai V;IPFV;SG;1;PST
ʔyo¹²-ʔthä xká ʔyoʔthä V;PRF;SG;2;PRS
a¹²ni ʔani V;IPFV;SG;3;PRS
pụt’i ndí pụt’i V;IPFV;SG;1;PST
jua²-sẹ¹²hẹ ngí juasẹhẹ V;IPFV;SG;2;PST
thụni mí thụni V;IPFV;SG;3;PST
ʔñai dá ʔñai V;PFV;SG;1
mat’a-juä¹² da mat’ajuä V;IRR;SG;3
kọ²de da gọde V;IRR;SG;3
k’a²ʔtsi gi k’aʔtsi V;IRR;SG;2
uä²fri xa uäfri V;PRF;SG;3;PRS
xu²-hña¹² stá xuhña V;PRF;SG;1;PRS
mẹ¹²s-t’e²k’ei gá mẹst’ëk’ëi V;PFV;SG;2
ts’oma²-ñu²ni xa ts’omañuni V;PRF;SG;3;PRS
ndu¹²-de xkí ndude V;PRF;2;PST
e¹²di da ʔñëdi V;IRR;SG;3
ʔbambi ʔbambi V;IPFV;SG;3;PRS
pi²t’i xa pit’i V;PRF;SG;3;PRS
xi¹² xi V;IPFV;SG;3;PRS
nda²ni bi ndani V;PFV;SG;3
pe²t’a²-nthiʔti ndí pet’anthiʔti V;IPFV;SG;1;PST
ʔua²m-t’ä¹²hä stí ʔuamt’ähä V;PRF;1;PST
ñat’i gí ñat’i V;IPFV;SG;2;PRS
yoni mí yoni V;IPFV;SG;3;PST
njuä²ni bi njuäni V;PFV;SG;3
pụst’i xa mụst’i V;PRF;SG;3;PRS
ntu¹²hni gá ntuhni V;PFV;SG;2
ʔba²-ʔñu bi ʔbaʔñu V;PFV;SG;3
xai ngí xai V;IPFV;SG;2;PST
ä²hä xká ʔñähä V;PRF;SG;2;PRS
ot’i xkí ʔyoti V;PRF;2;PST
ho²k’-bọts’e xa hok’bọts’e V;PRF;SG;3;PRS
hant’i bi hyant’i V;PFV;SG;3
nk’o²hni bi nk’ohni V;PFV;SG;3
fati xká fati V;PRF;SG;2;PRS
xụ² stá xụ V;PRF;SG;1;PRS
ẹ²nts’a²-pa bi ʔñẹnts’apa V;PFV;SG;3
mä²m-xa da mämxa V;IRR;SG;3
punt’i xa punt’i V;PRF;SG;3;PRS
paki mí paki V;IPFV;SG;3;PST
ʔui²-thä dí ʔuïthä V;IPFV;SG;1;PRS
pa²t’i gi pat’i V;IRR;SG;2
huẹ²ti huẹti V;IPFV;SG;3;PRS
ʔñox-jụ¹²ni stá ʔñoxjụni V;PRF;SG;1;PRS
ʔuẹi ndí ʔuẹi V;IPFV;SG;1;PST
ẹ-ʔuada gi ʔñẹʔuada V;IRR;SG;2
e¹²nthi ga ʔenthi V;IRR;SG;1
mbe¹²ni xkí mbeni V;PRF;2;PST
mpẹ²ʔti ndí mpẹʔti V;IPFV;SG;1;PST
pọ²ni gi pọni V;IRR;SG;2
nt’ụngi gi nt’ụngi V;IRR;SG;2
mfa²da da mfada V;IRR;SG;3
fo¹²ki mí foki V;IPFV;SG;3;PST
thẹ¹²ngi xki thẹngi V;PRF;3;PST
fe¹²st’e stí fest’e V;PRF;1;PST
ʔba²i bi ʔmai V;PFV;SG;3
ʔya² xki ʔya V;PRF;3;PST
hmi²-bojä¹² stí hmibojä V;PRF;1;PST
xo¹²fo stí xofo V;PRF;1;PST
thuts’i ndí thuts’i V;IPFV;SG;1;PST
tsi mí tsi V;IPFV;SG;3;PST
ko²pe²ra kopera V;IPFV;SG;3;PRS
hmä²ni gi hmäni V;IRR;SG;2
fụ¹²ngi fụngi V;IPFV;SG;3;PRS
nsu ga nsu V;IRR;SG;1
pẹx-ʔyo xki pẹxʔyo V;PRF;3;PST
nthä²di stá nthädi V;PRF;SG;1;PRS
ue²n-t’ẹi dí uent’ẹi V;IPFV;SG;1;PRS
ne-pe ga nepe V;IRR;SG;1
tsụ¹² xkí tsụ V;PRF;2;PST
hnohwi gi hnohwi V;IRR;SG;2
nes-t’i¹²hi da nest’ihi V;IRR;SG;3
xẹʔtsi gi xẹʔtsi V;IRR;SG;2
tọt-ue gi tọtue V;IRR;SG;2
họ²-ndgu xki nhyọndgu V;PRF;3;PST
pa¹²nts’i gá pants’i V;PFV;SG;2
ʔyo²-mfọ ga ʔñomfọ V;IRR;SG;1
e² mbi¹²da ndí ʔëmbida V;IPFV;SG;1;PST
hñä²mbä²-nt’ẹi stí hñämbant’ẹi V;PRF;1;PST
tsi²mpi dí tsimpi V;IPFV;SG;1;PRS
hñu²ts’i gí hñuts’i V;IPFV;SG;2;PRS
kụ¹²xki ngí kụxki V;IPFV;SG;2;PST
ʔñägi stá ʔñägi V;PRF;SG;1;PRS
oki bi ʔoki V;PFV;SG;3
tụ¹²nts’i xa tụnts’i V;PRF;SG;3;PRS
foti ndí foti V;IPFV;SG;1;PST
ntsọʔmi ntsọʔmi V;IPFV;SG;3;PRS
ka²lku²la xa kalkula V;PRF;SG;3;PRS
nji da nji V;IRR;SG;3
hñä-nguẹ¹²nda da hñänguẹnda V;IRR;SG;3
do²ʔmi ga doʔmi V;IRR;SG;1
fat’i bi mat’i V;PFV;SG;3
u²nga²-ngüẹ¹²nda gi ʔungangüẹnda V;IRR;SG;2
fọts’e ngí fọts’e V;IPFV;SG;2;PST
nda²n-gua xká ndangua V;PRF;SG;2;PRS
ha¹²t’i dí hat’i V;IPFV;SG;1;PRS
ñu²ni xa ñuni V;PRF;SG;3;PRS
bo¹²st’i xkí bost’i V;PRF;2;PST
ọ²ʔte xa ʔyọʔte V;PRF;SG;3;PRS
ʔuẹni ngí ʔuẹni V;IPFV;SG;2;PST
yont’bi xki yont’bi V;PRF;3;PST
hẹ¹²ts’i stí hẹts’i V;PRF;1;PST
mpa¹²nt’i dí mpant’i V;IPFV;SG;1;PRS
tsit’i tsit’i V;IPFV;SG;3;PRS
ʔyo¹²-ʔthä ngí ʔyoʔthä V;IPFV;SG;2;PST
u²nga²-ngüẹ¹²nda gá ʔungangüẹnda V;PFV;SG;2
mfa¹²ti stá mfati V;PRF;SG;1;PRS
pä¹²di dá pädi V;PFV;SG;1
xo²ʔtsi xki xoʔtsi V;PRF;3;PST
hñohwi da hñohwi V;IRR;SG;3
thä¹²st’i bi thäst’i V;PFV;SG;3
ñä²hni stá ñähni V;PRF;SG;1;PRS
hña²xni xa hñaxni V;PRF;SG;3;PRS
ʔbẹki mí ʔbẹki V;IPFV;SG;3;PST
ʔbẹ¹²pi mí ʔbẹpi V;IPFV;SG;3;PST
ʔñụ²t’-uẹndaui gi ʔñụt’uẹndaui V;IRR;SG;2
ñe²ʔmi bi ñeʔmi V;PFV;SG;3
xi¹² stí xi V;PRF;1;PST
tsiti gí tsiti V;IPFV;SG;2;PRS
e²gi ʔëgi V;IPFV;SG;3;PRS
nga²s-te da ngaste V;IRR;SG;3
nta²ti stí ntati V;PRF;1;PST
fe¹²t’e xkí fet’e V;PRF;2;PST
nk’o²s-t’ẹ¹²di da nk’ost’ẹdi V;IRR;SG;3
tho²t’i stí thot’i V;PRF;1;PST
ja mí ja V;IPFV;SG;3;PST
o²t’i xki ʔyot’i V;PRF;3;PST
upi xká ʔñüpi V;PRF;SG;2;PRS
tsa²-ʔyo xkí tsaʔyo V;PRF;2;PST
kunt’ẹi gí kunt’ẹi V;IPFV;SG;2;PRS
tẹ²ni stí tẹni V;PRF;1;PST
tänt’i xká tänt’i V;PRF;SG;2;PRS
t’i²gi bi t’igi V;PFV;SG;3
ñä²hni bi ñähni V;PFV;SG;3
ʔbat’i da ʔbat’i V;IRR;SG;3
nu¹²ni da nuni V;IRR;SG;3
ʔña²nga²-ñhu²ni da ʔñangañhuni V;IRR;SG;3
pa² mí pa V;IPFV;SG;3;PST
ọ²ʔtse dí ʔọʔtse V;IPFV;SG;1;PRS
ʔñẹ²nt’i ga ʔñẹnt’i V;IRR;SG;1
ʔñägi ndí ʔñägi V;IPFV;SG;1;PST
ʔñu²di gi ʔñudi V;IRR;SG;2
tsụ²ti stí tsụti V;PRF;1;PST
nxani ngí nxani V;IPFV;SG;2;PST
kä²-bọhai xkí nkäbọhai V;PRF;2;PST
tsä²ki stá tsäki V;PRF;SG;1;PRS
ẹkua²bi xkí ʔyẹkua V;PRF;2;PST
ho²pi bi hyopi V;PFV;SG;3
ñuʔtsi xkí ñuʔtsi V;PRF;2;PST
hñọ²t-hyä gi hñọthyä V;IRR;SG;2
ʔñofo ga ʔñofo V;IRR;SG;1
ʔñupi ga ʔñupi V;IRR;SG;1
the²de xa nthede V;PRF;SG;3;PRS
nde²he ndí ndehe V;IPFV;SG;1;PST
họ²x-gi²ni stá nhyọxgini V;PRF;SG;1;PRS
mip-ʔyẹ xa mipʔyẹ V;PRF;SG;3;PRS
dä²nts’i gá ndänts’i V;PFV;SG;2
nt’ụngi ndí nt’ụngi V;IPFV;SG;1;PST
mfi²ts’i ndí mfits’i V;IPFV;SG;1;PST
hmä²n-the ndí hmänthe V;IPFV;SG;1;PST
e²he bi ʔñëhe V;PFV;SG;3
the²-sẹ¹²hẹ ngí thesẹhẹ V;IPFV;SG;2;PST
oki ʔoki V;IPFV;SG;3;PRS
fonts’i dí fonts’i V;IPFV;SG;1;PRS
pụ²ʔti dá pụʔti V;PFV;SG;1
nu²hu stá nuhu V;PRF;SG;1;PRS
pa¹²ts’i mí pats’i V;IPFV;SG;3;PST
hä²mbi hämbi V;IPFV;SG;3;PRS
tu¹²hni xkí ntuhni V;PRF;2;PST
kụ¹² xki yụ V;PRF;3;PST
tụ²gi xa tụgi V;PRF;SG;3;PRS
ʔyo¹²ni xkí ʔyoni V;PRF;2;PST
bo¹²st’i gi bost’i V;IRR;SG;2
hñi dá hñi V;PFV;SG;1
ñä ndí ñä V;IPFV;SG;1;PST
tsụ²-dẹ²nxi xa ntsẹdẹnxi V;PRF;SG;3;PRS
tu¹²hni gi ntuhni V;IRR;SG;2
k’ẹ²ʔti xki k’ẹʔti V;PRF;3;PST
go²fo dá ngofo V;PFV;SG;1
mfoti xká mfoti V;PRF;SG;2;PRS
ntụhụ stá ntụhụ V;PRF;SG;1;PRS
tho²ki ndí thoki V;IPFV;SG;1;PST
japi ga japi V;IRR;SG;1
hmi²p-ts’ẹdi ngí hmipts’ẹdi V;IPFV;SG;2;PST
thụ²ni thụni V;IPFV;SG;3;PRS
kụ¹²ki mí kụki V;IPFV;SG;3;PST
u¹²st’i xkí ʔñust’i V;PRF;2;PST
pa²xi stí paxi V;PRF;1;PST
hant’i gá hyant’i V;PFV;SG;2
xa²n-the gá nxanthe V;PFV;SG;2
ts’oma²-ñu²ni ngí ts’omañuni V;IPFV;SG;2;PST
ʔba-nde¹² xkí ʔbande V;PRF;2;PST
ta²-mhai xki ntamhai V;PRF;3;PST
ʔbọ²t’e da ʔbọt’e V;IRR;SG;3
go²fo da ngofo V;IRR;SG;3
ntsụtua-bọznä xki ntsụtuabọznä V;PRF;3;PST
ʔba²hni ʔbahni V;IPFV;SG;3;PRS
nk’ẹ²ni stí nk’ẹni V;PRF;1;PST
ta²ka²-pa da takapa V;IRR;SG;3
ot’i bi ʔyoti V;PFV;SG;3
nxa²-da gá nxada V;PFV;SG;2
ngụt’i ndí ngụt’i V;IPFV;SG;1;PST
po²t’i dá pot’i V;PFV;SG;1
tä¹²ki gi täki V;IRR;SG;2
nthu²ki xkí nthuki V;PRF;2;PST
ntohni stá ntohni V;PRF;SG;1;PRS
tọ¹²ge ndí tọge V;IPFV;SG;1;PST
ʔñọ²-the da ʔñọthe V;IRR;SG;3
ʔbẹ¹²-tho ʔbẹtho V;IPFV;SG;3;PRS
nti²ki ngí ntiki V;IPFV;SG;2;PST
kue¹²te gi kuete V;IRR;SG;2
neʔmi da neʔmi V;IRR;SG;3
niʔtsi xki niʔtsi V;PRF;3;PST
tẹ¹²t’i stí tẹt’i V;PRF;1;PST
foti foti V;IPFV;SG;3;PRS
yu²nt’i mí yunt’i V;IPFV;SG;3;PST
ntsụ²ʔtsi da ntsụʔtsi V;IRR;SG;3
pẹ²m-ʔyo xki pẹmʔyo V;PRF;3;PST
ʔñox-jụ¹²ni gí ʔñoxjụni V;IPFV;SG;2;PRS
ja²-mädi ngí jamädi V;IPFV;SG;2;PST
pänts’i xki pänts’i V;PRF;3;PST
k’i²nt’i xki k’int’i V;PRF;3;PST
pụ²gi mí pụgi V;IPFV;SG;3;PST
tọte stá tọte V;PRF;SG;1;PRS
mpo¹²nt’i da mpont’i V;IRR;SG;3
ntoʔmi xa ntoʔmi V;PRF;SG;3;PRS
ʔra²ʔtsi dá ʔraʔtsi V;PFV;SG;1
xei ndí xei V;IPFV;SG;1;PST
nsu dí nsu V;IPFV;SG;1;PRS
hñi stá hñi V;PRF;SG;1;PRS
mbanji xkí mbanji V;PRF;2;PST
tso²ʔti tsoʔti V;IPFV;SG;3;PRS
e² mbi¹²da bi ʔñëmbida V;PFV;SG;3
nkụʔtsuä-da xki nkụʔtsuäda V;PRF;3;PST
hwiʔti xkí hwiʔti V;PRF;2;PST
ʔbẹ-bo stí ʔbẹbo V;PRF;1;PST
tu²ʔti xká tuʔti V;PRF;SG;2;PRS
xo²ʔtsi dá xoʔtsi V;PFV;SG;1
thụni dá thụni V;PFV;SG;1
ntụ¹²ni xkí ntụni V;PRF;2;PST
ʔba²-ne xká ʔmane V;PRF;SG;2;PRS
paki stá paki V;PRF;SG;1;PRS
e¹²mbi bi ʔñëmbi V;PFV;SG;3
ntatua²-bọznä xa ntatuabọznä V;PRF;SG;3;PRS
ntsụki da ntsụki V;IRR;SG;3
xo²ki xkí xoki V;PRF;2;PST
ue²n-t’ẹi xa uent’ẹi V;PRF;SG;3;PRS
pe²t’e mí pet’e V;IPFV;SG;3;PST
k’o²ki gi k’oki V;IRR;SG;2
xei bi xei V;PFV;SG;3
xä¹²ngi xki xängi V;PRF;3;PST
hñohwi xká hñohwi V;PRF;SG;2;PRS
ʔua²m-t’ä¹²hä ga ʔuamt’ähä V;IRR;SG;1
po¹² mí po V;IPFV;SG;3;PST
tọ¹²ke ngí tọke V;IPFV;SG;2;PST
ue²n-ga²nza¹²ya xkí uenganzaya V;PRF;2;PST
ʔñe²ni stí ʔñeni V;PRF;1;PST
po¹²nt’a²-ʔyẹ stá pont’aʔyẹ V;PRF;SG;1;PRS
nt’ụngi stí nt’ụngi V;PRF;1;PST
hmipabi stá hmipabi V;PRF;SG;1;PRS
ko²ti dí koti V;IPFV;SG;1;PRS
neʔtsi gá neʔtsi V;PFV;SG;2
te²st’i xki test’i V;PRF;3;PST
ut’i xa ʔut’i V;PRF;SG;3;PRS
agi mí ʔagi V;IPFV;SG;3;PST
fụ¹²ngi ga fụngi V;IRR;SG;1
e²-bru xa ʔñëbru V;PRF;SG;3;PRS
ndo²ʔmi xa ndoʔmi V;PRF;SG;3;PRS
pa²xi dá paxi V;PFV;SG;1
thọhni ga thọhni V;IRR;SG;1
o²t’i xa ʔyot’i V;PRF;SG;3;PRS
tsant’i ndí tsant’i V;IPFV;SG;1;PST
yụnt’i xa yụnt’i V;PRF;SG;3;PRS
hmä¹²ki da hmäki V;IRR;SG;3
xẹki ndí xẹki V;IPFV;SG;1;PST
ndo¹²di xa ndodi V;PRF;SG;3;PRS
k’ẹ gí k’ẹ V;IPFV;SG;2;PRS
e¹²n-sẹ stí ʔensẹ V;PRF;1;PST
ntohni xká ntohni V;PRF;SG;2;PRS
punt’i mí punt’i V;IPFV;SG;3;PST
ti xki ti V;PRF;3;PST
xọ¹²ka²-mbe¹²ni ngí xọkambeni V;IPFV;SG;2;PST
ga²ts’i da gats’i V;IRR;SG;3
kụ²ni gí kụni V;IPFV;SG;2;PRS
tsụmi stá tsụmi V;PRF;SG;1;PRS
pụ¹²nt’i gi pụnt’i V;IRR;SG;2
mip-ʔyẹ gi mipʔyẹ V;IRR;SG;2
kụ²nt’i kụnt’i V;IPFV;SG;3;PRS
fọm-ts’oni fọmts’oni V;IPFV;SG;3;PRS
ʔbụ²-tho xa ʔbụtho V;PRF;SG;3;PRS
pä²nts’a²-hai gá pänts’ahai V;PFV;SG;2
sụ¹²ni xkí sụni V;PRF;2;PST
thụ²ni ndí thụni V;IPFV;SG;1;PST
pa² xa pa V;PRF;SG;3;PRS
fọt’e da mọt’e V;IRR;SG;3
pu²ra ngí pura V;IPFV;SG;2;PST
ti¹²ts’i ndí tits’i V;IPFV;SG;1;PST
ne²-ʔñu gá neʔñu V;PFV;SG;2
pede xa pede V;PRF;SG;3;PRS
me¹²p-ya da mepya V;IRR;SG;3
mungi gí mungi V;IPFV;SG;2;PRS
pats’i gá pats’i V;PFV;SG;2
ñä²-mä²ñʔụ ndí ñämäñʔụ V;IPFV;SG;1;PST
ʔya²i ʔyai V;IPFV;SG;3;PRS
nt’o¹²xi dá nt’oxi V;PFV;SG;1
tso¹²ts’i gí tsots’i V;IPFV;SG;2;PRS
tsa²-ya xkí ntsaya V;PRF;2;PST
hño-ya ga hñoya V;IRR;SG;1
hwäʔmbi ngí hwäʔmbi V;IPFV;SG;2;PST
tu²-the xkí tuthe V;PRF;2;PST
gä¹²ʔtsi ga gäʔtsi V;IRR;SG;1
fa²ʔtsi gi faʔtsi V;IRR;SG;2
he¹²ni gi hyeni V;IRR;SG;2
tsi¹²ni ndí tsini V;IPFV;SG;1;PST
nkät’i gá nkät’i V;PFV;SG;2
hño¹²ga²-ñʔọde xká hñogañʔọde V;PRF;SG;2;PRS
ts’ä¹² mí ts’ä V;IPFV;SG;3;PST
be²n-tho xkí bentho V;PRF;2;PST
njue²ni dí njueni V;IPFV;SG;1;PRS
sa²gi ga nsagi V;IRR;SG;1
ʔño¹²nse ga ʔñonse V;IRR;SG;1
nku²mä²-ʔri²hi bi nkumäʔrihi V;PFV;SG;3
net’i xa net’i V;PRF;SG;3;PRS
t’i²st’i bi t’ist’i V;PFV;SG;3
thädi thädi V;IPFV;SG;3;PRS
ʔyo¹²-ʔthä gi ʔyoʔthä V;IRR;SG;2
ndo-ne dá ndone V;PFV;SG;1
ka²lku²la xkí kalkula V;PRF;2;PST
änt’i gi ʔänt’i V;IRR;SG;2
e²gi mí ʔëgi V;IPFV;SG;3;PST
ụi stí ʔụi V;PRF;1;PST
xọ²te ndí xọte V;IPFV;SG;1;PST
ngä²hä xkí ngähä V;PRF;2;PST
foʔtsi xká foʔtsi V;PRF;SG;2;PRS
ts’i²ʔmi ngí ts’iʔmi V;IPFV;SG;2;PST
ta¹²ha da daha V;IRR;SG;3
ʔña¹²ni gí ʔñani V;IPFV;SG;2;PRS
xụ²-ʔyẹ stá nxụʔyẹ V;PRF;SG;1;PRS
pu²ni puni V;IPFV;SG;3;PRS
ta²ʔti xa taʔti V;PRF;SG;3;PRS
ʔragi ndí ʔragi V;IPFV;SG;1;PST
hẹ¹²xki stá hẹxki V;PRF;SG;1;PRS
tsi²-mdo da tsimdo V;IRR;SG;3
nä²via ndí nävia V;IPFV;SG;1;PST
tsụdi tsụdi V;IPFV;SG;3;PRS
pobo xa pobo V;PRF;SG;3;PRS
tu¹²hni da ntuhni V;IRR;SG;3
nk’ẹ²ni dá nk’ẹni V;PFV;SG;1
tsụ¹²ti xa tsụti V;PRF;SG;3;PRS
xiʔtsi stá xiʔtsi V;PRF;SG;1;PRS
ts’i²ʔti ndí ts’iʔti V;IPFV;SG;1;PST
häʔti xki hñäʔti V;PRF;3;PST
ʔña²nga²-ñhu²ni mí ʔñangañhuni V;IPFV;SG;3;PST
nụ¹²t’i dá nụt’i V;PFV;SG;1
joʔmi dí joʔmi V;IPFV;SG;1;PRS
po²ʔtsi dá poʔtsi V;PFV;SG;1
hñohwi gi hñohwi V;IRR;SG;2
ge² dí gë V;IPFV;SG;1;PRS
ta²t’i xká tat’i V;PRF;SG;2;PRS
nọ¹²st’e xkí nọst’e V;PRF;2;PST
ʔuẹni xká ʔuẹni V;PRF;SG;2;PRS
ntsabi da ntsabi V;IRR;SG;3
ts’änt’i xkí ts’änt’i V;PRF;2;PST
ẹ²nts’a²-te da ʔñẹnts’ate V;IRR;SG;3
hmä²ki hmäki V;IPFV;SG;3;PRS
njäʔi xa njäʔi V;PRF;SG;3;PRS
kät’i ndí kät’i V;IPFV;SG;1;PST
he¹² dí he V;IPFV;SG;1;PRS
nxụki dá nxụki V;PFV;SG;1
häi bi hñäi V;PFV;SG;3
ñä²-te da ñäte V;IRR;SG;3
pe²t’e ndí pet’e V;IPFV;SG;1;PST
xi¹²ts’i ngí xits’i V;IPFV;SG;2;PST
do²-gu bi dogu V;PFV;SG;3
k’äni dí k’äni V;IPFV;SG;1;PRS
pọ²-hñä dí pọhñä V;IPFV;SG;1;PRS
magi magi V;IPFV;SG;3;PRS
tẹ¹²t’i mí tẹt’i V;IPFV;SG;3;PST
to²nts’i xkí ntonts’i V;PRF;2;PST
ntsi¹²ts’i gí ntsits’i V;IPFV;SG;2;PRS
ye²ʔmi ga yeʔmi V;IRR;SG;1
kai ngí kai V;IPFV;SG;2;PST
ʔba¹²xni ndí ʔbaxni V;IPFV;SG;1;PST
pụt’i da mụt’i V;IRR;SG;3
ntoʔmi gi ntoʔmi V;IRR;SG;2
ʔna²-ʔyo xa ʔnaʔyo V;PRF;SG;3;PRS
ʔbẹ-bo ga ʔbẹbo V;IRR;SG;1
pani stí pani V;PRF;1;PST
tä¹²ki stá ntäki V;PRF;SG;1;PRS
heʔtsi stí hëʔtsi V;PRF;1;PST
pẹ²t-jụ¹²ni bi pẹtjụni V;PFV;SG;3
tsots’i dí tsots’i V;IPFV;SG;1;PRS
nu²-ma²ñʔụ dá numañʔụ V;PFV;SG;1
huẹ¹²ts’i gí huẹts’i V;IPFV;SG;2;PRS
ts’o²-da xa ts’oda V;PRF;SG;3;PRS
thoʔti xká thoʔti V;PRF;SG;2;PRS
hñọ¹²ʔ-xu xa hñọʔxu V;PRF;SG;3;PRS
tẹ stí tẹ V;PRF;1;PST
hñiti xki hñiti V;PRF;3;PST
bụ¹²-ñä gí bụñä V;IPFV;SG;2;PRS
mfẹ²t’i mí mfẹt’i V;IPFV;SG;3;PST
ọ²t’a²-ʔbai bi ʔñọt’aʔbai V;PFV;SG;3
he²ke stí heke V;PRF;1;PST
tẹ¹²t’i tẹt’i V;IPFV;SG;3;PRS
e²gi stí ʔëgi V;PRF;1;PST
tsẹ²-za mí tsẹza V;IPFV;SG;3;PST
mbọ-da² mbọda V;IPFV;SG;3;PRS
ho gá hyo V;PFV;SG;2
kue²ke bi ʔueke V;PFV;SG;3
thẹ¹²ngi xa thẹngi V;PRF;SG;3;PRS
ha²t’i ngí hat’i V;IPFV;SG;2;PST
hñẹ²ni stí hñẹni V;PRF;1;PST
deni mí deni V;IPFV;SG;3;PST
nt’o¹²xi gi nt’oxi V;IRR;SG;2
ats’i dá ʔats’i V;PFV;SG;1
ʔñe¹²ts’i mí ʔñets’i V;IPFV;SG;3;PST
hña²ts’i ndí hñats’i V;IPFV;SG;1;PST
njua¹²ti ndí njuati V;IPFV;SG;1;PST
ne²ka-ntsụ²ʔtsi gá nekantsụʔtsi V;PFV;SG;2
k’a¹²hni k’ahni V;IPFV;SG;3;PRS
ẹ²-ʔt-fi gí ʔẹʔthfi V;IPFV;SG;2;PRS
a²-the ʔathe V;IPFV;SG;3;PRS
bo¹²x-jua mí boxjua V;IPFV;SG;3;PST
pọ²ni xkí pọni V;PRF;2;PST
jua²ts’i ga njuats’i V;IRR;SG;1
a²-the da ʔñathe V;IRR;SG;3
fe¹²t’e bi fet’e V;PFV;SG;3
a²ʔ-thä gá ʔñaʔthä V;PFV;SG;2
ʔñä¹²ni ga ʔñäni V;IRR;SG;1
kä²-bọhai gí käbọhai V;IPFV;SG;2;PRS
ntsọʔmi xki ntsọʔmi V;PRF;3;PST
fẹki stí fẹki V;PRF;1;PST
k’äʔtsi ga k’äʔtsi V;IRR;SG;1
nọ¹²ge ndí nọge V;IPFV;SG;1;PST
ntsa stí ntsa V;PRF;1;PST
nats’i stí nats’i V;PRF;1;PST
pepi bi pepi V;PFV;SG;3
nu²nts’i xa nunts’i V;PRF;SG;3;PRS
ha²-te xkí nhyate V;PRF;2;PST
jut’i jut’i V;IPFV;SG;3;PRS
pa²-dẹthä gá mpadẹthä V;PFV;SG;2
zẹ¹²ngua gá zẹngua V;PFV;SG;2
ndä¹²-ta xkí ndäta V;PRF;2;PST
neʔmi ndí neʔmi V;IPFV;SG;1;PST
họ²-ndgu dá nhyọndgu V;PFV;SG;1
ʔñohni xkí ʔñohni V;PRF;2;PST
ntu²ts’i xa ntuts’i V;PRF;SG;3;PRS
fụ²di bi mụdi V;PFV;SG;3
tọ²ʔtse xa dọʔtse V;PRF;SG;3;PRS
yoni xkí yoni V;PRF;2;PST
me¹²rhma da merhma V;IRR;SG;3
pa²mʔi ndí pamʔi V;IPFV;SG;1;PST
dụʔti bi dụʔti V;PFV;SG;3
ʔbist’i xki ʔbist’i V;PRF;3;PST
tsẹ²ki gi tsẹki V;IRR;SG;2
nti bi nti V;PFV;SG;3
ʔue²ke mí ʔueke V;IPFV;SG;3;PST
ntọ²ʔtse mí ntọʔtse V;IPFV;SG;3;PST
ʔbẹ²t’o stí ʔbẹt’o V;PRF;1;PST
ugi dá ʔugi V;PFV;SG;1
ohni dí ʔohni V;IPFV;SG;1;PRS
ñä²-sẹ bi ñäsẹ V;PFV;SG;3
pani xkí pani V;PRF;2;PST
ụ²n-te gá ʔñụnte V;PFV;SG;2
paki gi paki V;IRR;SG;2
xi¹² bi xi V;PFV;SG;3
tọ²ʔtse mí tọʔtse V;IPFV;SG;3;PST
pọ²ʔte ga pọʔte V;IRR;SG;1
ʔbẹ¹²tui stí ʔbẹtui V;PRF;1;PST
tsa²n-te xki ntsante V;PRF;3;PST
nxadi gí nxadi V;IPFV;SG;2;PRS
pẹ²-jua gá pẹjua V;PFV;SG;2
pẹ²t-’yẹ stí pẹt’yẹ V;PRF;1;PST
hñä-nguẹ¹²nda xki hñänguẹnda V;PRF;3;PST
a²fi xkí ʔñafi V;PRF;2;PST
nzäi stí nzäi V;PRF;1;PST
ha¹²t’i ga hat’i V;IRR;SG;1
nex-t’i¹²hi ngí next’ihi V;IPFV;SG;2;PST
heʔtsi gí hëʔtsi V;IPFV;SG;2;PRS
ʔñụ²t’-uẹndaui mí ʔñụt’uẹndaui V;IPFV;SG;3;PST
a²xa²-hai stí ʔaxahai V;PRF;1;PST
hua²xi gi huaxi V;IRR;SG;2
tsẹ¹²ni ga tsẹni V;IRR;SG;1
nxi²ni xa nxini V;PRF;SG;3;PRS
k’ua²st’i gi k’uast’i V;IRR;SG;2
xọke xkí xọke V;PRF;2;PST
pobo xkí pobo V;PRF;2;PST
u²ʔ-thyä xa ʔñuthyä V;PRF;SG;3;PRS
te¹²de stí tede V;PRF;1;PST
tẹ¹²-do ndí tẹdo V;IPFV;SG;1;PST
jụt’i bi gụt’i V;PFV;SG;3
na²ngi gí nangi V;IPFV;SG;2;PRS
xụ²hmi xkí xụhmi V;PRF;2;PST
ñu²ni mí ñuni V;IPFV;SG;3;PST
nku²mä²-ʔri²hi ga nkumäʔrihi V;IRR;SG;1
fa²s-te stá mfaste V;PRF;SG;1;PRS
häʔti ngí häʔti V;IPFV;SG;2;PST
ọ²t’a²-nde²he dí ʔọt’andehe V;IPFV;SG;1;PRS
k’o²ki dá k’oki V;PFV;SG;1
mungi ngí mungi V;IPFV;SG;2;PST
xä¹²kui xki xäkui V;PRF;3;PST
fa²ʔtsi xki faʔtsi V;PRF;3;PST
hyẹ¹²hẹ xká hyẹhẹ V;PRF;SG;2;PRS
i¹²ni ʔini V;IPFV;SG;3;PRS
uä²hi xká uähi V;PRF;SG;2;PRS
xi²ki gi xiki V;IRR;SG;2
nxu²-mfọ gá nxumfọ V;PFV;SG;2
nthọge nthọge V;IPFV;SG;3;PRS
ka²mfri gi kamfri V;IRR;SG;2
thẹ¹²ti ndí thẹti V;IPFV;SG;1;PST
po¹²nt’a²-ʔyẹ xká pont’aʔyẹ V;PRF;SG;2;PRS
dụ²hụ xki dụhụ V;PRF;3;PST
tsi²-ʔyụi mí tsiʔyụi V;IPFV;SG;3;PST
kue¹²nt’i dá kuent’i V;PFV;SG;1
do²-mbi mí dombi V;IPFV;SG;3;PST
fụ²ʔthi bi fụʔthi V;PFV;SG;3
maki mí maki V;IPFV;SG;3;PST
po²gi ndí pogi V;IPFV;SG;1;PST
pet’e pet’e V;IPFV;SG;3;PRS
hñụ²fi xa hñụfi V;PRF;SG;3;PRS
ko²hi kohi V;IPFV;SG;3;PRS
e¹²mbi ga ʔëmbi V;IRR;SG;1
fa²-spi bi faspi V;PFV;SG;3
xụ²ki gá xụki V;PFV;SG;2
the²-sẹ¹²hẹ gi nthesẹhẹ V;IRR;SG;2
ñäni ndí ñäni V;IPFV;SG;1;PST
pi²gi ndí pigi V;IPFV;SG;1;PST
hu²ʔmbi dí hüʔmbi V;IPFV;SG;1;PRS
ta²n-thä da ntanthä V;IRR;SG;3
fo²nt’i ga font’i V;IRR;SG;1
jat’i xká jat’i V;PRF;SG;2;PRS
njụki njụki V;IPFV;SG;3;PRS
ko²t’i dá kot’i V;PFV;SG;1
hwät’i gi hwät’i V;IRR;SG;2
hä¹²xi gi hñäxi V;IRR;SG;2
pi¹²st’i da mist’i V;IRR;SG;3
taki ngí taki V;IPFV;SG;2;PST
ntä¹²hmi ndí ntähmi V;IPFV;SG;1;PST
tsọ¹²họ dí tsọhọ V;IPFV;SG;1;PRS
hnọ²ʔtse gá hnọʔtse V;PFV;SG;2
tsu stá ntsu V;PRF;SG;1;PRS
nga²s-te gá ngaste V;PFV;SG;2
he²ʔmi xa heʔmi V;PRF;SG;3;PRS
hi¹² xki hi V;PRF;3;PST
ʔbẹ¹²di stá ʔbẹdi V;PRF;SG;1;PRS
fọt’e xa mọt’e V;PRF;SG;3;PRS
k’a²ʔtsi xkí k’aʔtsi V;PRF;2;PST
pe²t’a²-nthiʔti dí pet’anthiʔti V;IPFV;SG;1;PRS
si²gi mí sigi V;IPFV;SG;3;PST
thi²ts’i ga thits’i V;IRR;SG;1
ntu¹²hni gi ntuhni V;IRR;SG;2
tsa²ʔni ga ntsaʔni V;IRR;SG;1
jo¹²ts’i da jots’i V;IRR;SG;3
su xká su V;PRF;SG;2;PRS
peni mí peni V;IPFV;SG;3;PST
hwät’i stá hwät’i V;PRF;SG;1;PRS
ho²pi dí hopi V;IPFV;SG;1;PRS
tets’e ngí tets’e V;IPFV;SG;2;PST
ntsụ²ʔtsi ndí ntsụʔtsi V;IPFV;SG;1;PST
xa¹²xi ngí xaxi V;IPFV;SG;2;PST
tuʔtsi xa duʔtsi V;PRF;SG;3;PRS
jua²-sẹ¹²hẹ xká juasẹhẹ V;PRF;SG;2;PRS
ʔno²ʔtsi gá ʔnoʔtsi V;PFV;SG;2
teke teke V;IPFV;SG;3;PRS
hñọ¹²hni xa hñọhni V;PRF;SG;3;PRS
da²ʔthi xkí ndaʔthi V;PRF;2;PST
pẹ²t’i stí pẹt’i V;PRF;1;PST
zọte dá zọte V;PFV;SG;1
hui²ʔtfi ngí huiʔtfi V;IPFV;SG;2;PST
họ²t’e ga họt’e V;IRR;SG;1
pa¹²ni ndí pani V;IPFV;SG;1;PST
kue¹²nt’i stí kuent’i V;PRF;1;PST
pẹ¹²ʔtsi pẹʔtsi V;IPFV;SG;3;PRS
ʔña¹²-thä mí ʔñathä V;IPFV;SG;3;PST
nex-t’i¹²hi xki next’ihi V;PRF;3;PST
hña²xni bi hñaxni V;PFV;SG;3
ụ¹²-tsa ʔụtsa V;IPFV;SG;3;PRS
ʔñụ²-tsa ga ʔñụtsa V;IRR;SG;1
ọ²t’a²-do¹²ndo ʔọt’adondo V;IPFV;SG;3;PRS
tsä²t’i xki zät’i V;PRF;3;PST
ʔbẹt’i mí ʔbẹt’i V;IPFV;SG;3;PST
ʔragi ngí ʔragi V;IPFV;SG;2;PST
tut’i gí tut’i V;IPFV;SG;2;PRS
xägi xägi V;IPFV;SG;3;PRS
ye²ʔmi stí yeʔmi V;PRF;1;PST
o²xi dá ʔñoxi V;PFV;SG;1
be²n-sẹ xká bensẹ V;PRF;SG;2;PRS
pụ²t’i stá pụt’i V;PRF;SG;1;PRS
pụni xká pụni V;PRF;SG;2;PRS
o²di da ʔodi V;IRR;SG;3
tsi¹² stá tsi V;PRF;SG;1;PRS
ʔbẹ¹²tui gi ʔbẹtui V;IRR;SG;2
kue¹²nt’i dí kuent’i V;IPFV;SG;1;PRS
tso²ʔti dí tsoʔti V;IPFV;SG;1;PRS
tsä¹²mi gi tsämi V;IRR;SG;2
fụ²ʔti xki fụʔti V;PRF;3;PST
heʔtsi hëʔtsi V;IPFV;SG;3;PRS
nọ²ts’e dí nọts’e V;IPFV;SG;1;PRS
tsụ²-te gi ntsụte V;IRR;SG;2
nta¹²ko stí ntako V;PRF;1;PST
hwiʔtsi xa hwiʔtsi V;PRF;SG;3;PRS
the²n-the gi nthenthe V;IRR;SG;2
hñe¹²ti-tho hñetitho V;IPFV;SG;3;PRS
nza²-ya ga nzaya V;IRR;SG;1
pẹ²kri xa pẹkri V;PRF;SG;3;PRS
bụnt’i ngí bụnt’i V;IPFV;SG;2;PST
ya²st’i stí yast’i V;PRF;1;PST
ʔñai ngí ʔñai V;IPFV;SG;2;PST
ko²ʔti xkí koʔti V;PRF;2;PST
nda²ni ngí ndani V;IPFV;SG;2;PST
he²t’i xká hñët’i V;PRF;SG;2;PRS
pọ¹²ts’e gi pọts’e V;IRR;SG;2
k’o²nts’i bi k’onts’i V;PFV;SG;3
họ²t’a²-go²gu dí họt’agogu V;IPFV;SG;1;PRS
paʔti ngí paʔti V;IPFV;SG;2;PST
ʔmẹ¹²ts’i xki ʔmẹts’i V;PRF;3;PST
bi gí bi V;IPFV;SG;2;PRS
ho²ʔti gi hoʔti V;IRR;SG;2
nk’o²xni ga nk’oxni V;IRR;SG;1
tä¹² da tä V;IRR;SG;3
họ²ʔ-thä xki hyọʔthä V;PRF;3;PST
tsi²mʔi gá ntsiʔmi V;PFV;SG;2
ʔñä²nt’ụ mí ʔñänt’ụ V;IPFV;SG;3;PST
k’ụ¹²nts’i gá nk’ụnts’i V;PFV;SG;2
eni xa ʔeni V;PRF;SG;3;PRS
hmä²ni ga hmäni V;IRR;SG;1
be¹²he da behe V;IRR;SG;3
kuui dí kuui V;IPFV;SG;1;PRS
ko²pe²ra stí kopera V;PRF;1;PST
ti²ki gí tiki V;IPFV;SG;2;PRS
ʔuengi ga ʔuengi V;IRR;SG;1
bo¹² gá bo V;PFV;SG;2
äni da ʔñäni V;IRR;SG;3
hu²ʔmi huʔmi V;IPFV;SG;3;PRS
a²yu²nä bi ʔayunä V;PFV;SG;3
ʔba²hni da ʔbahni V;IRR;SG;3
ho²-te gí hote V;IPFV;SG;2;PRS
hui²ʔtsi dí huiʔtsi V;IPFV;SG;1;PRS
pọ²te gí pọte V;IPFV;SG;2;PRS
i²nga²-du²tu ndí ʔingadutu V;IPFV;SG;1;PST
ha²-ne da nhyane V;IRR;SG;3
tho²ʔtsi stá thoʔtsi V;PRF;SG;1;PRS
mpẹ¹²ts’i xki mpẹts’i V;PRF;3;PST
pa¹²nts’i mí pants’i V;IPFV;SG;3;PST
k’ụ²ki da k’ụki V;IRR;SG;3
sụ²ʔti xa sụʔti V;PRF;SG;3;PRS
hñä-nguẹ¹²nda hñänguẹnda V;IPFV;SG;3;PRS
họ²t’e dá họt’e V;PFV;SG;1
mfa²ʔtsi ndí mfaʔtsi V;IPFV;SG;1;PST
ve²nga dí venga V;IPFV;SG;1;PRS
thä¹²st’i xa thäst’i V;PRF;SG;3;PRS
mä²di stá mädi V;PRF;SG;1;PRS
tipi xkí tipi V;PRF;2;PST
tsi¹² gí tsi V;IPFV;SG;2;PRS
kọ²de stá kọde V;PRF;SG;1;PRS
tho²gi bi thogi V;PFV;SG;3
kụ¹²ki gá kụki V;PFV;SG;2
nkuẹ ga nkuẹ V;IRR;SG;1
xi²ʔba bi xiʔba V;PFV;SG;3
upi stí ʔüpi V;PRF;1;PST
e¹²ni mí ʔeni V;IPFV;SG;3;PST
ẹni bi ʔyẹni V;PFV;SG;3
ʔñupi xa ʔñupi V;PRF;SG;3;PRS
ʔño²ki xki ʔñoki V;PRF;3;PST
the²ʔtsi ga theʔtsi V;IRR;SG;1
nsa²-ya xki nsaya V;PRF;3;PST
tsä¹²mi ga tsämi V;IRR;SG;1
ts’o² da ts’o V;IRR;SG;3
me¹²-ya xkí meya V;PRF;2;PST
tai tai V;IPFV;SG;3;PRS
xuni gá nxuni V;PFV;SG;2
thẹts’i xa dẹts’i V;PRF;SG;3;PRS
thọ²t-hyä ga thọthyä V;IRR;SG;1
xont’i bi xont’i V;PFV;SG;3
the²de dí thede V;IPFV;SG;1;PRS
paʔti gí paʔti V;IPFV;SG;2;PRS
ʔñe²t’a²-da¹²da stá ʔñet’adada V;PRF;SG;1;PRS
ʔbẹpi mí ʔbẹpi V;IPFV;SG;3;PST
a²t’i mí ʔat’i V;IPFV;SG;3;PST
ʔbẹ²bo stá ʔmẹbo V;PRF;SG;1;PRS
ʔbẹ¹²pi xká ʔbẹpi V;PRF;SG;2;PRS
xongi bi xongi V;PFV;SG;3
the²nä²-te gi thenäte V;IRR;SG;2
huadi xa huadi V;PRF;SG;3;PRS
thọhni da thọhni V;IRR;SG;3
nlẹngu xki nlẹngu V;PRF;3;PST
pi¹²ts’i xa mits’i V;PRF;SG;3;PRS
tẹ¹²hẹ xkí tẹhẹ V;PRF;2;PST
tẹ²ʔmi xká tẹʔmi V;PRF;SG;2;PRS
pe²nxi dá penxi V;PFV;SG;1
fat’ä²-juä¹² gi fat’äjuä V;IRR;SG;2
ʔba¹²hni ʔbahni V;IPFV;SG;3;PRS
kụ²ts’i da kụts’i V;IRR;SG;3
ʔra²ʔmi mí ʔraʔmi V;IPFV;SG;3;PST
ñä²-mfọ ga ñämfọ V;IRR;SG;1
hụst’i hụst’i V;IPFV;SG;3;PRS
k’a¹²ts’i dí k’ats’i V;IPFV;SG;1;PRS
se²ñä stí señä V;PRF;1;PST
ʔñohni xká ʔñohni V;PRF;SG;2;PRS
ʔñä²nt’ụ da ʔñänt’ụ V;IRR;SG;3
nsemä-he¹² dá nsemähe V;PFV;SG;1
ʔba²hni xa ʔbahni V;PRF;SG;3;PRS
ʔue²ngi ga ʔuengi V;IRR;SG;1
hñu¹² da hñu V;IRR;SG;3
mpụ¹²nga²-ʔẹ¹²nxẹ da mpụngaʔẹnxẹ V;IRR;SG;3
tọʔtui mí tọʔtui V;IPFV;SG;3;PST
mfa²nt’a²-ñä ga mfant’añä V;IRR;SG;1
a²ʔtsi xki ʔyaʔtsi V;PRF;3;PST
ndä¹²ngi da ndängi V;IRR;SG;3
ụ²n-te dá ʔñụnte V;PFV;SG;1
to²ʔti gi toʔti V;IRR;SG;2
pọ¹²ni bi pọni V;PFV;SG;3
hu²ʔmi ndí huʔmi V;IPFV;SG;1;PST
xi¹² gí xi V;IPFV;SG;2;PRS
ʔñe²-ñä ndí ʔñeñä V;IPFV;SG;1;PST
pi²ji ndí piji V;IPFV;SG;1;PST
ye²ʔmi da yeʔmi V;IRR;SG;3
fat’i bi fat’i V;PFV;SG;3
ha²x-mahai gi hyaxmahai V;IRR;SG;2
ụ²ʔti gá ʔyụʔti V;PFV;SG;2
ts’ụ¹²ti bi ts’ụti V;PFV;SG;3
kua²t’i xkí kuat’i V;PRF;2;PST
i¹²xki xa ʔixki V;PRF;SG;3;PRS
xadi dí xadi V;IPFV;SG;1;PRS
hui²ʔtfi xki nhwiʔtfi V;PRF;3;PST
ts’i dí ts’i V;IPFV;SG;1;PRS
pọ¹²ni gi pọni V;IRR;SG;2
to¹²nt’i gi tont’i V;IRR;SG;2
tsi¹²ts’i dá tsits’i V;PFV;SG;1
ẹʔtsi ndí ʔẹʔtsi V;IPFV;SG;1;PST
hñohwi stá hñohwi V;PRF;SG;1;PRS
bo²la stá bola V;PRF;SG;1;PRS
xa²ndä-po dá xandäpo V;PFV;SG;1
pẹ²-zate stí pẹzate V;PRF;1;PST
hu²di stá hüdi V;PRF;SG;1;PRS
nko²mfo²rme gí nkomforme V;IPFV;SG;2;PRS
pa² xká pa V;PRF;SG;2;PRS
nthẹ¹² xkí nthẹ V;PRF;2;PST
ts’i²ʔmi mí ts’iʔmi V;IPFV;SG;3;PST
ä²t’i dí ʔät’i V;IPFV;SG;1;PRS
ʔba¹²hni gi ʔbahni V;IRR;SG;2
thoki xa doki V;PRF;SG;3;PRS
tro¹²zo da trozo V;IRR;SG;3
foʔtsi gi foʔtsi V;IRR;SG;2
tsọ¹²ge xa tsọge V;PRF;SG;3;PRS
pa¹²m-hyä da pamhyä V;IRR;SG;3
ta²n-the xkí tanthe V;PRF;2;PST
tọ¹²de bi tọde V;PFV;SG;3
ʔbụk-ne ga ʔbụkne V;IRR;SG;1
mfọ¹²-te xkí mfọte V;PRF;2;PST
tsi¹²ni ngí tsini V;IPFV;SG;2;PST
họ²ke stí họke V;PRF;1;PST
hahni xki hyahni V;PRF;3;PST
k’uant’i da k’uant’i V;IRR;SG;3
ts’angi xkí ts’angi V;PRF;2;PST
a²-ma²ñʔụ ʔamañʔụ V;IPFV;SG;3;PRS
tsụ²-te da ntsụte V;IRR;SG;3
ne²xni ngí nexni V;IPFV;SG;2;PST
tuti xká tuti V;PRF;SG;2;PRS
hu²-jua xa ñhüjua V;PRF;SG;3;PRS
he¹² ndí hë V;IPFV;SG;1;PST
be²n-sẹ stá bensẹ V;PRF;SG;1;PRS
jo²-hya gi johya V;IRR;SG;2
o¹²ti gá ʔyoti V;PFV;SG;2
kue²t’e xa wet’e V;PRF;SG;3;PRS
hñahni dí hñahni V;IPFV;SG;1;PRS
ha²-te stí nhyate V;PRF;1;PST
ʔyo²mbi ga ʔyombi V;IRR;SG;1
fụ²x-hwä²hi dá mfụxhwähi V;PFV;SG;1
tso¹²-tho xkí tsotho V;PRF;2;PST
pọ²ts’e gi pọts’e V;IRR;SG;2
bọ¹²-kuẹ gá bọkuẹ V;PFV;SG;2
fọmi xki fọmi V;PRF;3;PST
bẹ¹²xo ga bẹxo V;IRR;SG;1
tsi¹² xa tsi V;PRF;SG;3;PRS
thụ²ni dí thụni V;IPFV;SG;1;PRS
thụ¹²ts’i gí thụts’i V;IPFV;SG;2;PRS
e²gi gí ʔëgi V;IPFV;SG;2;PRS
bo¹² xki bo V;PRF;3;PST
hui¹² mí hui V;IPFV;SG;3;PST
ẹ²nt’a²-hme ndí ʔẹnt’ahme V;IPFV;SG;1;PST
ñä²hni gí ñähni V;IPFV;SG;2;PRS
họt’e gí họt’e V;IPFV;SG;2;PRS
pẹ²t-hme mí pẹthme V;IPFV;SG;3;PST
mpụ¹²nga²-k’eñä gí mpụngak’eñä V;IPFV;SG;2;PRS
xahni xahni V;IPFV;SG;3;PRS
mụ²xmi xki mụxmi V;PRF;3;PST
ntsa¹²p-ts’ẹdi dá ntsapts’ẹdi V;PFV;SG;1
kunt’ẹi gi kunt’ẹi V;IRR;SG;2
nxa²ha ga nxaha V;IRR;SG;1
he²t’ä-nthä¹²hi stí hñët’anthähi V;PRF;1;PST
ʔrọ¹²ke dí ʔrọke V;IPFV;SG;1;PRS
nụ¹²t’i stá nụt’i V;PRF;SG;1;PRS
ngä²hä da ngähä V;IRR;SG;3
noki dá noki V;PFV;SG;1
nts’o²ʔmi ndí nts’oʔmi V;IPFV;SG;1;PST
a²k-sei ndí ʔaksei V;IPFV;SG;1;PST
bi stí mbi V;PRF;1;PST
ma²fi xki mafi V;PRF;3;PST
thẹʔti gi thẹʔti V;IRR;SG;2
ñä²-mfọ xa ñämfọ V;PRF;SG;3;PRS
he²he stí nhyehe V;PRF;1;PST
ja¹²-nä¹²nä ga janänä V;IRR;SG;1
yo¹²ʔti gi yoʔti V;IRR;SG;2
ka²mfri gá kamfri V;PFV;SG;2
pats’i xki mats’i V;PRF;3;PST
pẹ²t-’yẹ xká pẹt’yẹ V;PRF;SG;2;PRS
mipa-ñä bi mipañä V;PFV;SG;3
tsụ¹² dá ntsụ V;PFV;SG;1
fụ²x-hwä²hi ga mfụxhwähi V;IRR;SG;1
tsụ²-jụ stá ntsụjụ V;PRF;SG;1;PRS
fẹi xa mẹi V;PRF;SG;3;PRS
e²-bru ngí ʔëbru V;IPFV;SG;2;PST
k’ẹ²ʔti ngí k’ẹʔti V;IPFV;SG;2;PST
xä¹²ki bi xäki V;PFV;SG;3
foʔmi gi foʔmi V;IRR;SG;2
fọ²ts’e fọts’e V;IPFV;SG;3;PRS
fo¹²ki stá foki V;PRF;SG;1;PRS
e²gi dá ʔëgi V;PFV;SG;1
mä²m-xa xki mämxa V;PRF;3;PST
mä²m-xa stá mämxa V;PRF;SG;1;PRS
ʔñedi gí ʔñedi V;IPFV;SG;2;PRS
xiʔtsi gá xiʔtsi V;PFV;SG;2
zi²thu dá nzithu V;PFV;SG;1
nụ²ʔti xa nụʔti V;PRF;SG;3;PRS
ts’itsi dá ts’itsi V;PFV;SG;1
dont’i gí dont’i V;IPFV;SG;2;PRS
yo-ñä¹²hi gí yoñähi V;IPFV;SG;2;PRS
pa¹²fi pafi V;IPFV;SG;3;PRS
ʔñe¹²ts’i stá ʔñets’i V;PRF;SG;1;PRS
hä²kua²bi xa hñäkua V;PRF;SG;3;PRS
be¹²t’e gi bet’e V;IRR;SG;2
mo²ʔmi xa moʔmi V;PRF;SG;3;PRS
tu²-mä²nthu¹²hu gá tumänthuhu V;PFV;SG;2
nsa²ni xki nsani V;PRF;3;PST
hñä²mbä²-nt’ẹi xkí hñämbant’ẹi V;PRF;2;PST
fọt’e ndí fọt’e V;IPFV;SG;1;PST
hogi bi hogi V;PFV;SG;3
hu²mụi dá hümụi V;PFV;SG;1
ʔñe²he dá ʔñëhë V;PFV;SG;1
nzi²m-xu²di xa nzimxudi V;PRF;SG;3;PRS
ts’änt’i xká ts’änt’i V;PRF;SG;2;PRS
fiʔtsi xkí fiʔtsi V;PRF;2;PST
täki bi däki V;PFV;SG;3
mfọ¹²-te dá mfọte V;PFV;SG;1
tsọ²ʔte stá tsọʔte V;PRF;SG;1;PRS
mpụ¹²nga²-k’eñä xa mpụngak’eñä V;PRF;SG;3;PRS
käts’i bi gäts’i V;PFV;SG;3
pọ²ʔte dá pọʔte V;PFV;SG;1
ho²-te ga nhyote V;IRR;SG;1
họ² xkí họ V;PRF;2;PST
hñọ¹²ʔ-xu bi hñọʔxu V;PFV;SG;3
pẹx-ʔyo dá pẹxʔyo V;PFV;SG;1
hẹ²ʔmi dí hẹʔmi V;IPFV;SG;1;PRS
hu²ʔti xki hñüʔti V;PRF;3;PST
ʔño²ki da ʔñoki V;IRR;SG;3
ụʔti gá ʔyụʔti V;PFV;SG;2
nde²x-ʔba ndexʔba V;IPFV;SG;3;PRS
ue²n-gade²he mí uengadehe V;IPFV;SG;3;PST
nthọ²xni xa nthọxni V;PRF;SG;3;PRS
mpụ¹²nga²-zuʔue gá mpụngazuʔue V;PFV;SG;2
ñe²ʔmi gí ñeʔmi V;IPFV;SG;2;PRS
ʔra¹²-mä²nu¹² gi ʔramänu V;IRR;SG;2
fonts’i dá fonts’i V;PFV;SG;1
nu¹²ni ndí nuni V;IPFV;SG;1;PST
fẹʔtsi gá fẹʔtsi V;PFV;SG;2
tsu²ni dá tsuni V;PFV;SG;1
ä¹²tsi gá ʔñätsi V;PFV;SG;2
hño¹²ga²-jäʔi gi hñogajäʔi V;IRR;SG;2
yat’i dá yat’i V;PFV;SG;1
pa²nthi stí mpanthi V;PRF;1;PST
pasia dí pasia V;IPFV;SG;1;PRS
pasia da pasia V;IRR;SG;3
yo²ho xa yoho V;PRF;SG;3;PRS
kät’i gi kät’i V;IRR;SG;2
tsu ga tsu V;IRR;SG;1
dä²nts’i dänts’i V;IPFV;SG;3;PRS
mat’a-juä¹² ga mat’ajuä V;IRR;SG;1
họ²ndri xki nhyọndri V;PRF;3;PST
tets’e dá tets’e V;PFV;SG;1
tsa¹²ui mí tsaui V;IPFV;SG;3;PST
da²ʔthi dí daʔthi V;IPFV;SG;1;PRS
po²ts’i xa pots’i V;PRF;SG;3;PRS
po²ngi da pongi V;IRR;SG;3
k’ẹ²-suni stá nk’ẹsuni V;PRF;SG;1;PRS
kụ²i mí kụi V;IPFV;SG;3;PST
mponi ndí mponi V;IPFV;SG;1;PST
ho²-ʔyo xki nhyoʔyo V;PRF;3;PST
pọ²n-jụ stá mpọnjụ V;PRF;SG;1;PRS
jua²ts’i xkí njuats’i V;PRF;2;PST
ja¹²-bätsi xa jabätsi V;PRF;SG;3;PRS
nda¹²ndi-ñähmu xkí ndandiñähmu V;PRF;2;PST
hwit’i mí hwit’i V;IPFV;SG;3;PST
tsu²ni xkí tsuni V;PRF;2;PST
ʔmẹpo ngí ʔmẹpo V;IPFV;SG;2;PST
hụ¹²st’ui ndí hụst’ui V;IPFV;SG;1;PST
ntsabi bi ntsabi V;PFV;SG;3
hu²ui da ñhüui V;IRR;SG;3
tsä¹²mi tsämi V;IPFV;SG;3;PRS
tsẹt’i tsẹt’i V;IPFV;SG;3;PRS
ndu²s-te gi nduste V;IRR;SG;2
ma²ka²-nk’o¹²ʔni da makank’oʔni V;IRR;SG;3
ga²ʔtsi bi gaʔtsi V;PFV;SG;3
ga²ʔtsi mí gaʔtsi V;IPFV;SG;3;PST
hñe²ts’i mí hñëts’i V;IPFV;SG;3;PST
fọ²ke fọke V;IPFV;SG;3;PRS
po²nts’i xká ponts’i V;PRF;SG;2;PRS
ñäpi gá ñäpi V;PFV;SG;2
dụ²hụ gá dụhụ V;PFV;SG;2
ntụ¹²ni bi ntụni V;PFV;SG;3
e¹²mbi ngí ʔëmbi V;IPFV;SG;2;PST
kai dá kai V;PFV;SG;1
njụ²t’i stá njụt’i V;PRF;SG;1;PRS
pe² da pe V;IRR;SG;3
k’e xki nk’ë V;PRF;3;PST
tọʔmi mí tọʔmi V;IPFV;SG;3;PST
e¹²mbi stá ʔëmbi V;PRF;SG;1;PRS
ʔñụ²ni dí ʔñụni V;IPFV;SG;1;PRS
adi gi ʔyadi V;IRR;SG;2
tụ¹²ni bi dụni V;PFV;SG;3
fụ¹²ts’i mí fụts’i V;IPFV;SG;3;PST
xä¹²ndi gí xändi V;IPFV;SG;2;PRS
hä¹²ts’i gí häts’i V;IPFV;SG;2;PRS
hẹ²ʔtsi gá hyẹʔtsi V;PFV;SG;2
ntụ¹²ni xká ntụni V;PRF;SG;2;PRS
ʔñọ²-the stí ʔñọthe V;PRF;1;PST
ʔñụ²ʔti gí ʔñụʔti V;IPFV;SG;2;PRS
tu¹²hni tuhni V;IPFV;SG;3;PRS
u²ʔti ga ʔuʔti V;IRR;SG;1
mfe²ʔtse xki mfeʔtse V;PRF;3;PST
jo²ʔo dí joʔo V;IPFV;SG;1;PRS
nhui²xni mí nhuixni V;IPFV;SG;3;PST
hua²n-t’ä¹²hä huant’ähä V;IPFV;SG;3;PRS
tsẹti ndí tsẹti V;IPFV;SG;1;PST
tets’e bi dets’e V;PFV;SG;3
ta²-mhai stí ntamhai V;PRF;1;PST
nụ²ʔmi dá nụʔmi V;PFV;SG;1
täki xkí täki V;PRF;2;PST
o²ki stá ʔoki V;PRF;SG;1;PRS
ʔra²-ʔyo dá ʔraʔyo V;PFV;SG;1
ntoʔmi xki ntoʔmi V;PRF;3;PST
ụi xká ʔñụi V;PRF;SG;2;PRS
xaʔmi ndí xaʔmi V;IPFV;SG;1;PST
pe gi pe V;IRR;SG;2
ho xki hyo V;PRF;3;PST
ʔba²-ne ʔbane V;IPFV;SG;3;PRS
ʔbẹfa gá ʔbẹfa V;PFV;SG;2
poʔtsi bi poʔtsi V;PFV;SG;3
dä²ʔs-thu¹²hu dí däʔsthuhu V;IPFV;SG;1;PRS
ñoho gá ñoho V;PFV;SG;2
ue²n-ga²nza¹²ya stá uenganzaya V;PRF;SG;1;PRS
hñu²ts’i stá hñuts’i V;PRF;SG;1;PRS
the²ge thege V;IPFV;SG;3;PRS
pẹ²t-jụ¹²ni stá pẹtjụni V;PRF;SG;1;PRS
ẹts’i dí ʔẹts’i V;IPFV;SG;1;PRS
kät’i kät’i V;IPFV;SG;3;PRS
uits’i stí uits’i V;PRF;1;PST
ʔñohni gí ʔñohni V;IPFV;SG;2;PRS
xẹpi stí xẹpi V;PRF;1;PST
tọ¹²ke gi tọke V;IRR;SG;2
mähwi ngí mähwi V;IPFV;SG;2;PST
ne¹²hi xki nehi V;PRF;3;PST
pe² dí pe V;IPFV;SG;1;PRS
t’a¹²xki bi t’axki V;PFV;SG;3
nọ¹²ge xkí nọge V;PRF;2;PST
tsụ²ki mí tsụki V;IPFV;SG;3;PST
tha²ha xki thaha V;PRF;3;PST
thä²nts’i da thänts’i V;IRR;SG;3
handi handi V;IPFV;SG;3;PRS
k’ụ²-ne gí k’ụne V;IPFV;SG;2;PRS
jua²ti xa juati V;PRF;SG;3;PRS
thini ngí thini V;IPFV;SG;2;PST
nxaʔmi gá nxaʔmi V;PFV;SG;2
ho¹²tho gí hotho V;IPFV;SG;2;PRS
xai xki xai V;PRF;3;PST
tsẹ²ʔmi xa zẹʔmi V;PRF;SG;3;PRS
tsä¹²mi ngí tsämi V;IPFV;SG;2;PST
fa²s-te mí faste V;IPFV;SG;3;PST
kọ¹²xke gi kọxke V;IRR;SG;2
bä²tsi gá bätsi V;PFV;SG;2
ntsụ²ʔtsi gí ntsụʔtsi V;IPFV;SG;2;PRS
handi gá hyandi V;PFV;SG;2
kụ²n-the da nkụnthe V;IRR;SG;3
ne¹²ki xkí neki V;PRF;2;PST
ʔna²ni mí ʔnani V;IPFV;SG;3;PST
k’ui²xki mí k’uixki V;IPFV;SG;3;PST
änt’i ʔänt’i V;IPFV;SG;3;PRS
kue¹²mi xká kuemi V;PRF;SG;2;PRS
ʔñụ²t’-uẹndaui ʔñụt’uẹndaui V;IPFV;SG;3;PRS
tso²-mfe¹²ni stí tsomfeni V;PRF;1;PST
ʔba²hni gí ʔbahni V;IPFV;SG;2;PRS
nxaʔmi stá nxaʔmi V;PRF;SG;1;PRS
ä²x-ʔyo stá ʔñäxʔyo V;PRF;SG;1;PRS
ti¹²hi ngí tihi V;IPFV;SG;2;PST
pe²t’e dá pet’e V;PFV;SG;1
ja¹²-nä¹²nä gá janänä V;PFV;SG;2
the²ndi bi thendi V;PFV;SG;3
zofo gí zofo V;IPFV;SG;2;PRS
nu¹² stá nu V;PRF;SG;1;PRS
họ mí họ V;IPFV;SG;3;PST
ndä-te dá ndäte V;PFV;SG;1
nda¹²ndi-ñähmu stí ndandiñähmu V;PRF;1;PST
ko²t’i xki got’i V;PRF;3;PST
hua²n-t’ä¹²hä da huant’ähä V;IRR;SG;3
pi¹²ts’i xká pits’i V;PRF;SG;2;PRS
te¹²hmi ndí tehmi V;IPFV;SG;1;PST
te¹²ts’e gí tets’e V;IPFV;SG;2;PRS
ka¹²-k’yẹ mí kak’yẹ V;IPFV;SG;3;PST
hu²di xkí hñüdi V;PRF;2;PST
sẹ²yabi dí sẹyabi V;IPFV;SG;1;PRS
ñä dí ñä V;IPFV;SG;1;PRS
juats’i da juats’i V;IRR;SG;3
tso²ʔtsi tsoʔtsi V;IPFV;SG;3;PRS
tọte stí tọte V;PRF;1;PST
ʔñẹt’i ndí ʔñẹt’i V;IPFV;SG;1;PST
hñọ¹²ʔ-xu hñọʔxu V;IPFV;SG;3;PRS
xut’i xki xut’i V;PRF;3;PST
ụ¹²ts’i xa ʔyụts’i V;PRF;SG;3;PRS
xi²ki xkí xiki V;PRF;2;PST
xẹ²gi xẹgi V;IPFV;SG;3;PRS
fe²ʔtse stí feʔtse V;PRF;1;PST
häk-me¹²ya bi häkmeya V;PFV;SG;3
re²pe²la stí repela V;PRF;1;PST
nọ²ts’e dá nọts’e V;PFV;SG;1
jo²-hya da johya V;IRR;SG;3
xọ²ni ndí xọni V;IPFV;SG;1;PST
ʔñatua-t’afi gi ʔñatuat’afi V;IRR;SG;2
hyo²-ya gi nhyoya V;IRR;SG;2
ʔrọ¹²ke xki ʔrọke V;PRF;3;PST
hwäts’i mí hwäts’i V;IPFV;SG;3;PST
mpụ¹²ngi mpụngi V;IPFV;SG;3;PRS
ʔbẹ¹²-tho dá ʔbẹtho V;PFV;SG;1
ma²te²ne gí matene V;IPFV;SG;2;PRS
fẹti dí fẹti V;IPFV;SG;1;PRS
ha¹²t’i mí hat’i V;IPFV;SG;3;PST
nxadi ngí nxadi V;IPFV;SG;2;PST
tụ²ʔtsi xki dụʔtsi V;PRF;3;PST
ʔñụ²ni bi ʔñụni V;PFV;SG;3
mbo-jä bi mbojä V;PFV;SG;3
do²-zụ gá dozụ V;PFV;SG;2
ja¹²-da¹²da gá jadada V;PFV;SG;2
kọndui gá kọndui V;PFV;SG;2
past’i xki mast’i V;PRF;3;PST
yo²bri mí yobri V;IPFV;SG;3;PST
tsiki stá tsiki V;PRF;SG;1;PRS
da¹²do da dado V;IRR;SG;3
xa²ʔtsi ndí xaʔtsi V;IPFV;SG;1;PST
e¹²ni stí ʔeni V;PRF;1;PST
nko²ntra dá nkontra V;PFV;SG;1
te¹²ts’e dá tets’e V;PFV;SG;1
theni gá theni V;PFV;SG;2
nzụni xká nzụni V;PRF;SG;2;PRS
ʔbẹ²t’i xkí ʔbẹt’i V;PRF;2;PST
ʔñe¹²st’e stí ʔñest’e V;PRF;1;PST
k’ua²t’i xká k’uat’i V;PRF;SG;2;PRS
täni dí täni V;IPFV;SG;1;PRS
kụ¹²t’i dí kụt’i V;IPFV;SG;1;PRS
dä²nts’i ngí dänts’i V;IPFV;SG;2;PST
ʔñan-the stí ʔñanthe V;PRF;1;PST
ụʔti da ʔyụʔti V;IRR;SG;3
thẹʔti ndí thẹʔti V;IPFV;SG;1;PST
nọ¹²ge dá nọge V;PFV;SG;1
pa² gí pa V;IPFV;SG;2;PRS
zẹdi gá zẹdi V;PFV;SG;2
tsä²ki mí tsäki V;IPFV;SG;3;PST
o²ʔtsi bi ʔyoʔtsi V;PFV;SG;3
the¹²ts’i ga thets’i V;IRR;SG;1
nzọ-te dí nzọte V;IPFV;SG;1;PRS
mädi da mädi V;IRR;SG;3
the²de ngí thede V;IPFV;SG;2;PST
pụ²ʔti dí pụʔti V;IPFV;SG;1;PRS
pist’i xa pist’i V;PRF;SG;3;PRS
mpẹ²ʔti dá mpẹʔti V;PFV;SG;1
tsi²s-te ngí tsiste V;IPFV;SG;2;PST
hwäʔmbi xki hwäʔmbi V;PRF;3;PST
te¹²de gá tede V;PFV;SG;2
ẹʔtsi ga ʔẹʔtsi V;IRR;SG;1
do²-ʔyẹ doʔyẹ V;IPFV;SG;3;PRS
nta²ki xká ntaki V;PRF;SG;2;PRS
japa-mäsu dá japamäsu V;PFV;SG;1
ña²ti gi ñati V;IRR;SG;2
ñä²-mfọ da ñämfọ V;IRR;SG;3
jat’i gí jat’i V;IPFV;SG;2;PRS
o²ts’i bi ʔyots’i V;PFV;SG;3
japa-mäsu stá japamäsu V;PRF;SG;1;PRS
kụ¹²t’i stí kụt’i V;PRF;1;PST
be²n-sẹ gi bensẹ V;IRR;SG;2
pẹ²t-’yẹ xkí pẹt’yẹ V;PRF;2;PST
nu²hu ngí nuhu V;IPFV;SG;2;PST
ne²-du ga nedu V;IRR;SG;1
ʔrant’ui ngí ʔrant’ui V;IPFV;SG;2;PST
koʔtsi xká koʔtsi V;PRF;SG;2;PRS
hen-thä¹²hi dá hñënthähi V;PFV;SG;1
adi ndí ʔadi V;IPFV;SG;1;PST
handi ngí handi V;IPFV;SG;2;PST
pẹ²pa²-te ndí pẹpate V;IPFV;SG;1;PST
tsant’i gi tsant’i V;IRR;SG;2
mpụ²t’i mí mpụt’i V;IPFV;SG;3;PST
pọ²ge pọge V;IPFV;SG;3;PRS
no²tsi notsi V;IPFV;SG;3;PRS
fe²ge bi fege V;PFV;SG;3
hu²-ʔuada dá ñhüʔuada V;PFV;SG;1
ʔba¹²mpi ngí ʔbampi V;IPFV;SG;2;PST
nko¹²st’e bi nkost’e V;PFV;SG;3
mpants’i mpants’i V;IPFV;SG;3;PRS
ʔñe¹²ts’i xki ʔñets’i V;PRF;3;PST
ntsa¹² ndí ntsa V;IPFV;SG;1;PST
ga²t’i gá gat’i V;PFV;SG;2
ẹ²-ʔt-fi stá ʔñẹʔthfi V;PRF;SG;1;PRS
ʔñụ²ʔti xa ʔñụʔti V;PRF;SG;3;PRS
xi²s-te¹²he ga nxistehe V;IRR;SG;1
nthẹ-ji² ga nthẹji V;IRR;SG;1
toʔtsi xkí toʔtsi V;PRF;2;PST
kä²i gá käi V;PFV;SG;2
niti bi niti V;PFV;SG;3
fa²ʔtsi da faʔtsi V;IRR;SG;3
nxaki gá nxaki V;PFV;SG;2
mbe¹²ni mí mbeni V;IPFV;SG;3;PST
ʔyo¹²ni xki ʔyoni V;PRF;3;PST
nxa¹² xká nxa V;PRF;SG;2;PRS
ko²ʔti gí koʔti V;IPFV;SG;2;PRS
hñẹ²ni gá hñẹni V;PFV;SG;2
juä²ni gá juäni V;PFV;SG;2
ndu²s-te bi nduste V;PFV;SG;3
hu²-ʔni hüʔni V;IPFV;SG;3;PRS
bä²tsi ga bätsi V;IRR;SG;1
go²fo gí gofo V;IPFV;SG;2;PRS
ʔñe¹²-da ʔñeda V;IPFV;SG;3;PRS
ʔba²ni gí ʔbani V;IPFV;SG;2;PRS
ñä¹²ni xká ñäni V;PRF;SG;2;PRS
kụni ngí kụni V;IPFV;SG;2;PST
nko²ntra gí nkontra V;IPFV;SG;2;PRS
a²-the xkí ʔñathe V;PRF;2;PST
deni xki deni V;PRF;3;PST
ti¹²ni da dini V;IRR;SG;3
ʔbẹt’i dá ʔbẹt’i V;PFV;SG;1
tsụ²-dẹ²nxi bi ntsẹdẹnxi V;PFV;SG;3
ntsu gá ntsu V;PFV;SG;2
nxụ ndí nxụ V;IPFV;SG;1;PST
ñäti xki ñäti V;PRF;3;PST
nxo¹²ts’i dí nxots’i V;IPFV;SG;1;PRS
mfa²nt’i stí mfant’i V;PRF;1;PST
hẹ²ka²-ndäpo xki nhyẹkandäpo V;PRF;3;PST
hñọ²ts’e dí hñọts’e V;IPFV;SG;1;PRS
k’ụ¹²nts’i ngí k’ụnts’i V;IPFV;SG;2;PST
hi¹² dá hi V;PFV;SG;1
pe²-ʔnzä ga peʔnzä V;IRR;SG;1
ọ²t’a²-nde²he ngí ʔọt’andehe V;IPFV;SG;2;PST
fix-ʔyẹ stí fixʔyẹ V;PRF;1;PST
tsa¹²di stí tsadi V;PRF;1;PST
mbanji gí mbanji V;IPFV;SG;2;PRS
tsẹ²-nza gi ntsẹnza V;IRR;SG;2
njotsui ndí njotsui V;IPFV;SG;1;PST
ʔña²ʔmi gí ʔñaʔmi V;IPFV;SG;2;PRS
ñä xká ñä V;PRF;SG;2;PRS
fọ²ʔmi mí fọʔmi V;IPFV;SG;3;PST
ʔba²ni xká ʔbani V;PRF;SG;2;PRS
hụ¹²fi xa hyụfi V;PRF;SG;3;PRS
nọ²ma²-ñʔụ nọmañʔụ V;IPFV;SG;3;PRS
hei xa hñëi V;PRF;SG;3;PRS
mfẹtsa²-ñä xki mfẹtsañä V;PRF;3;PST
ntsẹ²ni xa ntsẹni V;PRF;SG;3;PRS
ho²ki bi hyoki V;PFV;SG;3
mẹ¹²ta²-ʔba ndí mẹtaʔba V;IPFV;SG;1;PST
t’i t’i V;IPFV;SG;3;PRS
foʔtsi gá foʔtsi V;PFV;SG;2
e²he stí ʔëhe V;PRF;1;PST
tọʔmi dá tọʔmi V;PFV;SG;1
e¹²st’e xa ʔyest’e V;PRF;SG;3;PRS
xiʔki mí xiʔki V;IPFV;SG;3;PST
bọ¹²-kuẹ dí bọkuẹ V;IPFV;SG;1;PRS
xai stí xai V;PRF;1;PST
hẹ²hni gi hyẹhni V;IRR;SG;2
k’o²nts’i mí k’onts’i V;IPFV;SG;3;PST
ja²-mädi xki jamädi V;PRF;3;PST
ve²nga ga venga V;IRR;SG;1
bụ¹²ts’i mí bụts’i V;IPFV;SG;3;PST
dont’i ndí dont’i V;IPFV;SG;1;PST
a²fi xká ʔñafi V;PRF;SG;2;PRS
nk’o²xni bi nk’oxni V;PFV;SG;3
fụ¹²ts’i stá fụts’i V;PRF;SG;1;PRS
heʔtsi ga hëʔtsi V;IRR;SG;1
ts’aki gi ts’aki V;IRR;SG;2
huadi huadi V;IPFV;SG;3;PRS
nä²-thä näthä V;IPFV;SG;3;PRS
xụki xụki V;IPFV;SG;3;PRS
hest’i xa hñëst’i V;PRF;SG;3;PRS
hẹ²hni dá hẹhni V;PFV;SG;1
thuki xki thuki V;PRF;3;PST
kä²t’i ga kät’i V;IRR;SG;1
pa¹²ti xa pati V;PRF;SG;3;PRS
pi²ji gí piji V;IPFV;SG;2;PRS
pi²gi stí pigi V;PRF;1;PST
the²n-the gí thenthe V;IPFV;SG;2;PRS
xa²ti ndí xati V;IPFV;SG;1;PST
tsụ²ki dá tsụki V;PFV;SG;1
hñei stá hñei V;PRF;SG;1;PRS
ʔra²-ʔyo bi ʔraʔyo V;PFV;SG;3
tsụ²-dẹ²nxi gá ntsẹdẹnxi V;PFV;SG;2
tsi¹²ni da tsini V;IRR;SG;3
to²nts’i stí ntonts’i V;PRF;1;PST
kadi ndí kadi V;IPFV;SG;1;PST
sa²gi mí sagi V;IPFV;SG;3;PST
hui¹² xkí hui V;PRF;2;PST
ọts’e xká ʔyọts’e V;PRF;SG;2;PRS
ʔba¹²mpi xki ʔbampi V;PRF;3;PST
pe²-ʔnzä xki peʔnzä V;PRF;3;PST
xọ²ʔtse xkí xọʔtse V;PRF;2;PST
ẹgi mí ʔẹgi V;IPFV;SG;3;PST
ehni ga ʔehni V;IRR;SG;1
a²yu²nä xkí ʔayunä V;PRF;2;PST
ua²-nt’ä¹²hä xká uant’ähä V;PRF;SG;2;PRS
kụ²ʔtsi ga kụʔtsi V;IRR;SG;1
hua²n-t’ä¹²hä dá huant’ähä V;PFV;SG;1
kọndui ndí kọndui V;IPFV;SG;1;PST
pẹ¹²hni gí pẹhni V;IPFV;SG;2;PRS
tets’e stí tets’e V;PRF;1;PST
hua²n-t’ä¹²hä xkí huant’ähä V;PRF;2;PST
ot’i dá ʔot’i V;PFV;SG;1
fa¹²ti dí fati V;IPFV;SG;1;PRS
hño¹²-sko mí hñosko V;IPFV;SG;3;PST
hño¹²ga²-mfe¹²ni xki hñogamfeni V;PRF;3;PST
họ²ste da họste V;IRR;SG;3
xọ²ʔhmi mí xọʔhmi V;IPFV;SG;3;PST
ọthe mí ʔọthe V;IPFV;SG;3;PST
pe²-ʔnzä bi peʔnzä V;PFV;SG;3
ʔmaʔma-nza¹²ya dá ʔmaʔmanzaya V;PFV;SG;1
hñọ²ts’e ga hñọts’e V;IRR;SG;1
xụ² xa xụ V;PRF;SG;3;PRS
tsi²-ʔyụi xki ntsiʔyụi V;PRF;3;PST
pụ¹²nt’i xki pụnt’i V;PRF;3;PST
jä²ts’i gá jäts’i V;PFV;SG;2
tho²hni da thohni V;IRR;SG;3
uẹ uẹ V;IPFV;SG;3;PRS
kụ²i gí kụi V;IPFV;SG;2;PRS
xụt’i bi xụt’i V;PFV;SG;3
po¹²nt’a²-ʔyẹ xa pont’aʔyẹ V;PRF;SG;3;PRS
pẹnt’i gá pẹnt’i V;PFV;SG;2
mfa²da dá mfada V;PFV;SG;1
hä¹²mpi ga hämpi V;IRR;SG;1
ʔbatbi dá ʔbatbi V;PFV;SG;1
ndä-potho xká ndäpotho V;PRF;SG;2;PRS
ti²ki ndí tiki V;IPFV;SG;1;PST
hẹ²n-the gí hẹnthe V;IPFV;SG;2;PRS
nọt’e mí nọt’e V;IPFV;SG;3;PST
mat’a-juä¹² stá mat’ajuä V;PRF;SG;1;PRS
jua¹²ti dá juati V;PFV;SG;1
ne²-ʔñu ndí neʔñu V;IPFV;SG;1;PST
hu²ʔmi stá huʔmi V;PRF;SG;1;PRS
thädi xká thädi V;PRF;SG;2;PRS
fụ²ʔthi mí fụʔthi V;IPFV;SG;3;PST
xä¹²nts’i da xänts’i V;IRR;SG;3
ʔua²ʔmi dá ʔuaʔmi V;PFV;SG;1
nzi²m-xu²di dá nzimxudi V;PFV;SG;1
hụ²xi ndí hụxi V;IPFV;SG;1;PST
ʔña¹²ni gá ʔñani V;PFV;SG;2
pẹ²-ʔmda xki pẹʔmda V;PRF;3;PST
thä¹²ʔtsi thäʔtsi V;IPFV;SG;3;PRS
ñohmi stá ñohmi V;PRF;SG;1;PRS
hwät’i dá hwät’i V;PFV;SG;1
pa²-dẹthä ga mpadẹthä V;IRR;SG;1
ʔba¹²hni da ʔbahni V;IRR;SG;3
nsemä-he¹² bi nsemähe V;PFV;SG;3
mfọ²k-to ndí mfọkto V;IPFV;SG;1;PST
thọ²t-hyä da thọthyä V;IRR;SG;3
ʔro²ts’i ʔrots’i V;IPFV;SG;3;PRS
bụ-do xa bụdo V;PRF;SG;3;PRS
kụ¹²hni ga kụhni V;IRR;SG;1
t’ọʔtse xkí t’ọʔtse V;PRF;2;PST
ra²ncha dá rancha V;PFV;SG;1
ñoho xká ñoho V;PRF;SG;2;PRS
ẹ²nts’a²-te stá ʔñẹnts’ate V;PRF;SG;1;PRS
ntsi²ni da ntsini V;IRR;SG;3
ei xa ʔñëi V;PRF;SG;3;PRS
fo-do bi fodo V;PFV;SG;3
mpu²ni stá mpuni V;PRF;SG;1;PRS
nt’ụngi nt’ụngi V;IPFV;SG;3;PRS
teke xki deke V;PRF;3;PST
hño²-sẹ mí hñosẹ V;IPFV;SG;3;PST
fụ²ʔtsi mí fụʔtsi V;IPFV;SG;3;PST
ʔyo²mbi gí ʔyombi V;IPFV;SG;2;PRS
pi²xi bi pixi V;PFV;SG;3
hogi xki hogi V;PRF;3;PST
he²ʔtsi bi heʔtsi V;PFV;SG;3
däki xa däki V;PRF;SG;3;PRS
thi¹²nt’i ga thint’i V;IRR;SG;1
hui²ʔtsi gí huiʔtsi V;IPFV;SG;2;PRS
fọ²ʔmi gí fọʔmi V;IPFV;SG;2;PRS
ʔrọ¹²ke stá ʔrọke V;PRF;SG;1;PRS
nda²n-gua ngí ndangua V;IPFV;SG;2;PST
tsọ²nte xa ntsọnte V;PRF;SG;3;PRS
nọʔtse nọʔtse V;IPFV;SG;3;PRS
ʔñe²gi dí ʔñegi V;IPFV;SG;1;PRS
ọ²t’a²-ge¹²rra dá ʔọt’agerra V;PFV;SG;1
pẹ²xni da pẹxni V;IRR;SG;3
u¹²st’i bi ʔñust’i V;PFV;SG;3
maʔti ngí maʔti V;IPFV;SG;2;PST
mpẹ²ʔti stá mpẹʔti V;PRF;SG;1;PRS
bụ¹²ts’i gá bụts’i V;PFV;SG;2
ọthe xkí ʔyọthe V;PRF;2;PST
gu¹²st’i stí gust’i V;PRF;1;PST
hu²ʔmi gí hüʔmi V;IPFV;SG;2;PRS
ho¹²tho stá hotho V;PRF;SG;1;PRS
tso²ʔtsi da zoʔtsi V;IRR;SG;3
ut’i bi ʔut’i V;PFV;SG;3
ñän-t’e²k’ei ñänt’ek’ei V;IPFV;SG;3;PRS
ts’ok’-ba²ha ga nts’okʔbaha V;IRR;SG;1
me¹²ta²-xọ²ni ngí metaxọni V;IPFV;SG;2;PST
tẹ¹²-da-ʔñu¹² stí tẹdaʔñu V;PRF;1;PST
fọ¹²te xkí fọte V;PRF;2;PST
fa¹²ti ngí fati V;IPFV;SG;2;PST
ʔra²-ʔyo xa ʔraʔyo V;PRF;SG;3;PRS
xu²mi xa xumi V;PRF;SG;3;PRS
nthoki mí nthoki V;IPFV;SG;3;PST
hụ¹²fi xki hyụfi V;PRF;3;PST
pa¹²fi gá pafi V;PFV;SG;2
ho²ki gá hyoki V;PFV;SG;2
do²-gu mí dogu V;IPFV;SG;3;PST
po²bo xki pobo V;PRF;3;PST
pa²ʔmbi dí paʔmbi V;IPFV;SG;1;PRS
ʔbẹ²-mfo da ʔbẹmfo V;IRR;SG;3
ne²-ʔñu mí neʔñu V;IPFV;SG;3;PST
pe²x-ʔyo gi pexʔyo V;IRR;SG;2
tọ²ʔmi ga tọʔmi V;IRR;SG;1
ma²m-ts’oni ndí mamts’oni V;IPFV;SG;1;PST
ta²st’i dá tast’i V;PFV;SG;1
past’i past’i V;IPFV;SG;3;PRS
pe¹²nts’i dí pents’i V;IPFV;SG;1;PRS
su xki su V;PRF;3;PST
jä²ts’i xa gäts’i V;PRF;SG;3;PRS
ʔbẹt’i da ʔbẹt’i V;IRR;SG;3
ẹ²n-do ngí ʔẹndo V;IPFV;SG;2;PST
nga²s-te gi ngaste V;IRR;SG;2
nthọ²xni mí nthọxni V;IPFV;SG;3;PST
ndeki xká ndeki V;PRF;SG;2;PRS
ngä²hä xki ngähä V;PRF;3;PST
ọ²ʔtse stá ʔọʔtse V;PRF;SG;1;PRS
hwäʔmbi mí hwäʔmbi V;IPFV;SG;3;PST
huä¹²ki xkí huäki V;PRF;2;PST
njua¹²ti gá njuati V;PFV;SG;2
nkät’i dí nkät’i V;IPFV;SG;1;PRS
ọ²ʔte dá ʔọʔte V;PFV;SG;1
kụ¹²t’i dá kụt’i V;PFV;SG;1
ʔra²ts’i dá ʔrats’i V;PFV;SG;1
ntu²ts’i stá ntuts’i V;PRF;SG;1;PRS
tsụ²mʔi bi ntsụmʔi V;PFV;SG;3
tsi²mpi mí tsimpi V;IPFV;SG;3;PST
ʔui²-te dá ʔuite V;PFV;SG;1
zo²ni stí zoni V;PRF;1;PST
nk’ua¹²mba dá nk’uamba V;PFV;SG;1
kụ²t’i bi yụt’i V;PFV;SG;3
the²-sẹ¹²hẹ dí thesẹhẹ V;IPFV;SG;1;PRS
maʔtä-juä¹² bi maʔtäjuä V;PFV;SG;3
pẹ²xni stá pẹxni V;PRF;SG;1;PRS
fọnt’i gi fọnt’i V;IRR;SG;2
ta¹²ha dá taha V;PFV;SG;1
naʔti naʔti V;IPFV;SG;3;PRS
punt’i xkí punt’i V;PRF;2;PST
pẹ²kri xkí pẹkri V;PRF;2;PST
pa²-ngọ ndí pangọ V;IPFV;SG;1;PST
fe²ʔtse mí feʔtse V;IPFV;SG;3;PST
ets’e gi ʔyets’e V;IRR;SG;2
japa²bi xkí japabi V;PRF;2;PST
eni gi ʔeni V;IRR;SG;2
ʔba²-sẹ gi ʔbasẹ V;IRR;SG;2
xä¹²ʔkui gi xäʔkui V;IRR;SG;2
jụʔtsi dí jụʔtsi V;IPFV;SG;1;PRS
ụ¹²-tsa xká ʔụtsa V;PRF;SG;2;PRS
yopi xki yopi V;PRF;3;PST
pẹ²ʔsfi ngí pẹʔsfi V;IPFV;SG;2;PST
hne²ki gí hneki V;IPFV;SG;2;PRS
ko¹²mi xa komi V;PRF;SG;3;PRS
tsụ¹²ti ndí tsụti V;IPFV;SG;1;PST
ʔbo²ni xki ʔboni V;PRF;3;PST
ẹni ndí ʔẹni V;IPFV;SG;1;PST
ọ²t’a²-nde²he ndí ʔọt’andehe V;IPFV;SG;1;PST
xi¹² dá xi V;PFV;SG;1
ʔñä¹²ni xkí ʔñäni V;PRF;2;PST
k’ụ²-ne xkí nk’ụne V;PRF;2;PST
jua¹²ti gá juati V;PFV;SG;2
ʔñä²nt’ụ xká ʔñänt’ụ V;PRF;SG;2;PRS
bụ²t’i gí bụt’i V;IPFV;SG;2;PRS
nku²ni xká nkuni V;PRF;SG;2;PRS
pede ga pede V;IRR;SG;1
tsa²-te da ntsate V;IRR;SG;3
ñat’i xki ñat’i V;PRF;3;PST
pọ²-hñä ndí pọhñä V;IPFV;SG;1;PST
ʔmẹgo gá ʔmẹgo V;PFV;SG;2
xọ²te xká xọte V;PRF;SG;2;PRS
jut’i ndí jut’i V;IPFV;SG;1;PST
agi gí ʔagi V;IPFV;SG;2;PRS
ti¹²ni xkí tini V;PRF;2;PST
ndo¹²ki da ndoki V;IRR;SG;3
tsụ²ti dá tsụti V;PFV;SG;1
nthẹ-xu²di ngí nthẹxudi V;IPFV;SG;2;PST
tọʔmi tọʔmi V;IPFV;SG;3;PRS
koʔtsi stí koʔtsi V;PRF;1;PST
nda²ki gi ndaki V;IRR;SG;2
ho²-du ndí hodu V;IPFV;SG;1;PST
ʔbụ-hwi-tho ʔbụhwitho V;IPFV;SG;3;PRS
foʔtsi dá foʔtsi V;PFV;SG;1
xẹpi xkí xẹpi V;PRF;2;PST
mpa¹²nt’i xká mpant’i V;PRF;SG;2;PRS
tsi²ʔti tsiʔti V;IPFV;SG;3;PRS
yọʔte gá yọʔte V;PFV;SG;2
koʔtsi gi koʔtsi V;IRR;SG;2
nkä¹²-xuui stí nkäxuui V;PRF;1;PST
ntsi¹²ts’i ngí ntsits’i V;IPFV;SG;2;PST
käi dá käi V;PFV;SG;1
thu²mi xki thumi V;PRF;3;PST
do²ʔmi xki doʔmi V;PRF;3;PST
nxa²n-the ngí nxanthe V;IPFV;SG;2;PST
hä¹²xi xkí hñäxi V;PRF;2;PST
njänt’i ndí njänt’i V;IPFV;SG;1;PST
do²-ʔyẹ mí doʔyẹ V;IPFV;SG;3;PST
ʔno²ʔtsi xki ʔnoʔtsi V;PRF;3;PST
bo²la da bola V;IRR;SG;3
hä²ki bi häki V;PFV;SG;3
tso²ki ga tsoki V;IRR;SG;1
mbe¹²ni dí mbeni V;IPFV;SG;1;PRS
ambi dá ʔambi V;PFV;SG;1
ʔñọ²t’a²-da¹²da ga ʔñọt’adada V;IRR;SG;1
he²ʔmi xká heʔmi V;PRF;SG;2;PRS
ntu¹²ti xa ntuti V;PRF;SG;3;PRS
tu¹²ki xki tuki V;PRF;3;PST
i¹²ni gí ʔini V;IPFV;SG;2;PRS
hño²jä²ʔi gá hñojäʔi V;PFV;SG;2
tụ²ki stá tụki V;PRF;SG;1;PRS
yo-nụ²ʔti bi yonụʔti V;PFV;SG;3
to²ʔti xki doʔti V;PRF;3;PST
ga²ʔtsi xká gaʔtsi V;PRF;SG;2;PRS
mpaʔti gá mpaʔti V;PFV;SG;2
yaʔm-tho mí yaʔmtho V;IPFV;SG;3;PST
hä¹²mpi stá hämpi V;PRF;SG;1;PRS
gunt’i da gunt’i V;IRR;SG;3
fẹ²ta²-te xkí mfẹtate V;PRF;2;PST
pẹ²t-hme stí pẹthme V;PRF;1;PST
ʔnra²nxu stí ʔnranxu V;PRF;1;PST
tụ²ki gí tụki V;IPFV;SG;2;PRS
nu²-mxa xki numxa V;PRF;3;PST
ʔya²ha xa ʔyaha V;PRF;SG;3;PRS
the²ndi xkí thendi V;PRF;2;PST
ñoni ndí ñoni V;IPFV;SG;1;PST
pani xa pani V;PRF;SG;3;PRS
xu²mi ndí xumi V;IPFV;SG;1;PST
ʔba²ti bi ʔbati V;PFV;SG;3
fụ¹²ngi stá fụngi V;PRF;SG;1;PRS
nzi²m-xu²di bi nzimxudi V;PFV;SG;3
hẹ²n-za bi nhyẹnza V;PFV;SG;3
hwiʔti xki hwiʔti V;PRF;3;PST
ha²ha bi nhyaha V;PFV;SG;3
kuui stí kuui V;PRF;1;PST
ụ¹²-tsa ngí ʔụtsa V;IPFV;SG;2;PST
kụ²ʔtsi ngí kụʔtsi V;IPFV;SG;2;PST
hñe¹² gi hñe V;IRR;SG;2
nxängi mí nxängi V;IPFV;SG;3;PST
thụni gi thụni V;IRR;SG;2
he²he xki nhyehe V;PRF;3;PST
pa²nthi stá mpanthi V;PRF;SG;1;PRS
tsọ¹²ts’e xki zọts’e V;PRF;3;PST
te²-tho stí ntetho V;PRF;1;PST
ʔñe²ni dí ʔñeni V;IPFV;SG;1;PRS
xo¹²fo xofo V;IPFV;SG;3;PRS
mbätsi gá mbätsi V;PFV;SG;2
ʔña²ʔmi dí ʔñaʔmi V;IPFV;SG;1;PRS
tsụ²-jụ xki ntsụjụ V;PRF;3;PST
hä²spi bi hñäspi V;PFV;SG;3
kunt’i kunt’i V;IPFV;SG;3;PRS
ntsa¹² xká ntsa V;PRF;SG;2;PRS
jua¹²ti stí juati V;PRF;1;PST
hyo²-ya xkí nhyoya V;PRF;2;PST
tsä¹²mi stá tsämi V;PRF;SG;1;PRS
hwä²ki gá hwäki V;PFV;SG;2
hñat’ui dá hñat’ui V;PFV;SG;1
pa pa V;IPFV;SG;3;PRS
t’ọʔtse bi t’ọʔtse V;PFV;SG;3
ẹt’i dá ʔẹt’i V;PFV;SG;1
nani mí nani V;IPFV;SG;3;PST
ẹ²nts’a²-te gá ʔñẹnts’ate V;PFV;SG;2
tsi¹²ts’i stí tsits’i V;PRF;1;PST
ʔbẹ¹²pi ʔbẹpi V;IPFV;SG;3;PRS
ta²ti dí tati V;IPFV;SG;1;PRS
ẹ²gi stí ʔẹgi V;PRF;1;PST
toʔtsi dá toʔtsi V;PFV;SG;1
jondi mí jondi V;IPFV;SG;3;PST
ja-nguẹ¹²nda stí janguẹnda V;PRF;1;PST
hu²ra²-mụi ngí huramụi V;IPFV;SG;2;PST
fọts’e fọts’e V;IPFV;SG;3;PRS
da¹²do ga dado V;IRR;SG;1
te¹²ge xká tege V;PRF;SG;2;PRS
tẹ¹²-do gá tẹdo V;PFV;SG;2
ts’a¹²ti ga ts’ati V;IRR;SG;1
thẹ¹²lo xká thẹlo V;PRF;SG;2;PRS
ụ²ta²-te ga ʔụtate V;IRR;SG;1
k’ongi dá k’ongi V;PFV;SG;1
pa²-dẹthä padẹthä V;IPFV;SG;3;PRS
xadi xadi V;IPFV;SG;3;PRS
tọ²ʔmi xká tọʔmi V;PRF;SG;2;PRS
ʔmẹ²di dá ʔmẹdi V;PFV;SG;1
ñä²ʔ-thä xa ñäʔthä V;PRF;SG;3;PRS
fụ²ʔti fụʔti V;IPFV;SG;3;PRS
xi²ki stá xiki V;PRF;SG;1;PRS
o²xi dí ʔoxi V;IPFV;SG;1;PRS
nọ²ts’e mí nọts’e V;IPFV;SG;3;PST
fọ²ge gí fọge V;IPFV;SG;2;PRS
nza²-ya bi nzaya V;PFV;SG;3
ko¹²mi stá komi V;PRF;SG;1;PRS
fụ¹²ngi dá fụngi V;PFV;SG;1
po¹²ni ngí poni V;IPFV;SG;2;PST
thụ¹²ts’i xa thụts’i V;PRF;SG;3;PRS
nsi¹² mí nsi V;IPFV;SG;3;PST
thọge ndí thọge V;IPFV;SG;1;PST
hue²ʔti xká hueʔti V;PRF;SG;2;PRS
ọ²te ʔọte V;IPFV;SG;3;PRS
ho²-du hodu V;IPFV;SG;3;PRS
ñụ²ni bi ñụni V;PFV;SG;3
xu¹²st’i dá xust’i V;PFV;SG;1
tẹ²t’i ga tẹt’i V;IRR;SG;1
k’ụ²ki stá k’ụki V;PRF;SG;1;PRS
hñe¹²ti-tho da hñetitho V;IRR;SG;3
nọ¹²nts’i xa nọnts’i V;PRF;SG;3;PRS
mi¹²hi ga mihi V;IRR;SG;1
oki xká ʔoki V;PRF;SG;2;PRS
kụ²ʔtsi dá kụʔtsi V;PFV;SG;1
ñä²ʔ-thä bi ñäʔthä V;PFV;SG;3
me¹²nthi ngí menthi V;IPFV;SG;2;PST
nxo¹²ts’i stá nxots’i V;PRF;SG;1;PRS
tọte tọte V;IPFV;SG;3;PRS
ä¹²xi bi ʔñäxi V;PFV;SG;3
pọ²-hñä gí pọhñä V;IPFV;SG;2;PRS
ʔba²ʔti ndí ʔbaʔti V;IPFV;SG;1;PST
hñẹ²ni xkí hñẹni V;PRF;2;PST
se²ñä bi señä V;PFV;SG;3
hñei gi hñei V;IRR;SG;2
pọ¹²ts’e xkí pọts’e V;PRF;2;PST
hu²ʔmi xkí huʔmi V;PRF;2;PST
fẹti fẹti V;IPFV;SG;3;PRS
thọhni thọhni V;IPFV;SG;3;PRS
fe¹²st’e da fest’e V;IRR;SG;3
zụ¹²ts’i gá zụts’i V;PFV;SG;2
xänts’i xki xänts’i V;PRF;3;PST
nku²ni nkuni V;IPFV;SG;3;PRS
ʔñägi ngí ʔñägi V;IPFV;SG;2;PST
nde²x-ʔba xká ndexʔba V;PRF;SG;2;PRS
ʔbẹ²bo xki ʔmẹbo V;PRF;3;PST
ụ²-ngu ngí ʔụngu V;IPFV;SG;2;PST
de²sia ga desia V;IRR;SG;1
tsẹ²-za xki ntsẹza V;PRF;3;PST
mpasia stí mpasia V;PRF;1;PST
piʔti da piʔti V;IRR;SG;3
ño¹²-hụ ndí ñohụ V;IPFV;SG;1;PST
xa²ndä-po gá xandäpo V;PFV;SG;2
kọ²de bi gọde V;PFV;SG;3
tsots’i mí tsots’i V;IPFV;SG;3;PST
k’o²ʔti da k’oʔti V;IRR;SG;3
hẹ²ʔmi gi hyẹʔmi V;IRR;SG;2
mä²-te stá mäte V;PRF;SG;1;PRS
ntsu²ni bi ntsuni V;PFV;SG;3
ntsụki mí ntsụki V;IPFV;SG;3;PST
yụ²ni gi ñụni V;IRR;SG;2
ʔño¹² xká ʔño V;PRF;SG;2;PRS
kụ²ʔmi mí kụʔmi V;IPFV;SG;3;PST
tsi¹² gi tsi V;IRR;SG;2
pẹ² bi pẹ V;PFV;SG;3
emei bi ʔñëmei V;PFV;SG;3
juäni gi juäni V;IRR;SG;2
o²xi xa ʔñoxi V;PRF;SG;3;PRS
nxu²t’i bi nxut’i V;PFV;SG;3
te²ʔtse gá teʔtse V;PFV;SG;2
fọ-jyä ndí fọjyä V;IPFV;SG;1;PST
naʔmbi gá naʔmbi V;PFV;SG;2
ñä²-sẹ stá ñäsẹ V;PRF;SG;1;PRS
ʔba²hni ngí ʔbahni V;IPFV;SG;2;PST
hñat’ui xká hñat’ui V;PRF;SG;2;PRS
họ²ts’e mí họts’e V;IPFV;SG;3;PST
mbọ¹²-kuẹ mbọkuẹ V;IPFV;SG;3;PRS
ẹni ʔẹni V;IPFV;SG;3;PRS
re²sga gi resga V;IRR;SG;2
kụ²ʔti stá kụʔti V;PRF;SG;1;PRS
pa²nthi xká mpanthi V;PRF;SG;2;PRS
hä¹²ts’i mí häts’i V;IPFV;SG;3;PST
he²ke stá heke V;PRF;SG;1;PRS
ʔmẹ²di mí ʔmẹdi V;IPFV;SG;3;PST
be¹²ni gi beni V;IRR;SG;2
ntho²hni xa nthohni V;PRF;SG;3;PRS
mipa-ñä gi mipañä V;IRR;SG;2
nat’i xa nat’i V;PRF;SG;3;PRS
dụ xki ndụ V;PRF;3;PST
piʔti xki piʔti V;PRF;3;PST
ts’oki xa ts’oki V;PRF;SG;3;PRS
zẹ²tui zẹtui V;IPFV;SG;3;PRS
toʔtsi mí toʔtsi V;IPFV;SG;3;PST
di¹²nts’i xa dints’i V;PRF;SG;3;PRS
ts’i²hni ngí ts’ihni V;IPFV;SG;2;PST
nts’o¹²ni ndí nts’oni V;IPFV;SG;1;PST
mfọ²hni xa mfọhni V;PRF;SG;3;PRS
kụni dá kụni V;PFV;SG;1
ʔñọt’e xki ʔñọt’e V;PRF;3;PST
ha²t’i ga hat’i V;IRR;SG;1
k’ua xki nk’ua V;PRF;3;PST
xụ²hmi xki xụhmi V;PRF;3;PST
ʔmo-spi xki ʔmospi V;PRF;3;PST
kọ²de dí kọde V;IPFV;SG;1;PRS
nu²hu gí nuhu V;IPFV;SG;2;PRS
fụ²t’i dí fụt’i V;IPFV;SG;1;PRS
tho tho V;IPFV;SG;3;PRS
hahni dá hahni V;PFV;SG;1
nex-t’i¹²hi stí next’ihi V;PRF;1;PST
tsẹ²-nza ngí tsẹnza V;IPFV;SG;2;PST
ọ²t’a²-ʔbai gá ʔñọt’aʔbai V;PFV;SG;2
dụ²-zụ mí dụzụ V;IPFV;SG;3;PST
re²pe²la xki repela V;PRF;3;PST
ko²ʔti xká koʔti V;PRF;SG;2;PRS
pẹ¹²hi xkí pẹhi V;PRF;2;PST
xa¹²gi da xagi V;IRR;SG;3
ho¹² ngí ho V;IPFV;SG;2;PST
xi²t’i xit’i V;IPFV;SG;3;PRS
e²h-ya stí ʔñëhya V;PRF;1;PST
k’a¹²hni gá k’ahni V;PFV;SG;2
xe²hai xkí xehai V;PRF;2;PST
hä¹²ts’i xa hñäts’i V;PRF;SG;3;PRS
nxu²-mfọ ndí nxumfọ V;IPFV;SG;1;PST
pede xki pede V;PRF;3;PST
tụ¹²nts’i dí tụnts’i V;IPFV;SG;1;PRS
xọ²ʔta²-za¹² mí xọʔtaza V;IPFV;SG;3;PST
ko²ʔmi koʔmi V;IPFV;SG;3;PRS
mfidi mí mfidi V;IPFV;SG;3;PST
ʔñe-mei gí ʔñemei V;IPFV;SG;2;PRS
te¹²de stá tede V;PRF;SG;1;PRS
tsa²n-te gí tsante V;IPFV;SG;2;PRS
toʔtsi gá toʔtsi V;PFV;SG;2
xiʔki xkí xiʔki V;PRF;2;PST
tsụ¹²-jụ²mhai xa ntsụjụmhai V;PRF;SG;3;PRS
xuni gi xuni V;IRR;SG;2
nọ²ni gí nọni V;IPFV;SG;2;PRS
ntsa¹²p-ts’ẹdi xká ntsapts’ẹdi V;PRF;SG;2;PRS
bọ¹²-kuẹ ndí bọkuẹ V;IPFV;SG;1;PST
tä¹²ki gí täki V;IPFV;SG;2;PRS
po²ho bi poho V;PFV;SG;3
u¹²t’i dá ʔüt’i V;PFV;SG;1
nk’a-thụ dí nk’athụ V;IPFV;SG;1;PRS
thuki thuki V;IPFV;SG;3;PRS
ko¹²st’i bi gost’i V;PFV;SG;3
foʔmi xki foʔmi V;PRF;3;PST
jondi dí jondi V;IPFV;SG;1;PRS
hñä²mbä²-nt’ẹi hñämbant’ẹi V;IPFV;SG;3;PRS
ntatua²-bọznä stí ntatuabọznä V;PRF;1;PST
ñä da ñä V;IRR;SG;3
hu²-ʔni ga ñhüʔni V;IRR;SG;1
yo²t’i mí yot’i V;IPFV;SG;3;PST
nka²yo dá nkayo V;PFV;SG;1
saki mí saki V;IPFV;SG;3;PST
tho¹²ts’i thots’i V;IPFV;SG;3;PRS
nkuẹ xki nkuẹ V;PRF;3;PST
hän-guẹ²nda dá hänguẹnda V;PFV;SG;1
munts’i xkí munts’i V;PRF;2;PST
tsẹ²ki stí tsẹki V;PRF;1;PST
jụts’i bi gụts’i V;PFV;SG;3
pepi gi pepi V;IRR;SG;2
ya¹²ʔtsi dá yaʔtsi V;PFV;SG;1
jut’i xkí jut’i V;PRF;2;PST
fụ¹²ngi xa fụngi V;PRF;SG;3;PRS
be²n-sẹ mí bensẹ V;IPFV;SG;3;PST
nxani bi nxani V;PFV;SG;3
fụ²ni xa fụni V;PRF;SG;3;PRS
fọ²ge da mfọge V;IRR;SG;3
ñä¹²ni ñäni V;IPFV;SG;3;PRS
ntä²mi gí ntämi V;IPFV;SG;2;PRS
nta¹²ko mí ntako V;IPFV;SG;3;PST
tụ¹²ngi xa tụngi V;PRF;SG;3;PRS
dẹ²-spi dí dẹspi V;IPFV;SG;1;PRS
tsiki bi tsiki V;PFV;SG;3
po²ʔtsi gá poʔtsi V;PFV;SG;2
ju²ti dí juti V;IPFV;SG;1;PRS
hahni hahni V;IPFV;SG;3;PRS
pọ¹²họ xká pọhọ V;PRF;SG;2;PRS
tsụ²-jụ stí ntsụjụ V;PRF;1;PST
eni xki ʔñëni V;PRF;3;PST
ʔra²ʔtsi stá ʔraʔtsi V;PRF;SG;1;PRS
ntsẹ²ni stá ntsẹni V;PRF;SG;1;PRS
ndu²-mụi dá ndumụi V;PFV;SG;1
nkuẹ nkuẹ V;IPFV;SG;3;PRS
hne²ki da hneki V;IRR;SG;3
nxa¹² mí nxa V;IPFV;SG;3;PST
bụ¹²-ñä ngí bụñä V;IPFV;SG;2;PST
mbọ¹²-kuẹ xki mbọkuẹ V;PRF;3;PST
e²h-ya xká ʔñëhya V;PRF;SG;2;PRS
hi¹² mí hi V;IPFV;SG;3;PST
pẹ²ts’i¹²-nts’ụ xa pẹts’ints’ụ V;PRF;SG;3;PRS
ʔya²i xa ʔyai V;PRF;SG;3;PRS
ʔba²hni dí ʔbahni V;IPFV;SG;1;PRS
män-tho xa mäntho V;PRF;SG;3;PRS
mpo¹²nt’i xká mpont’i V;PRF;SG;2;PRS
ʔui²-te bi ʔuite V;PFV;SG;3
mụ²xmi mí mụxmi V;IPFV;SG;3;PST
ʔmẹ²di gi ʔmẹdi V;IRR;SG;2
ʔbẹ²t’i ndí ʔbẹt’i V;IPFV;SG;1;PST
kụ¹²hni xki gụhni V;PRF;3;PST
tämi xkí tämi V;PRF;2;PST
xẹʔtsi gá xẹʔtsi V;PFV;SG;2
pa¹²ni da pani V;IRR;SG;3
ta²ʔ-nthä gi taʔnthä V;IRR;SG;2
mpobo xki mpobo V;PRF;3;PST
xe²ʔti stí xeʔti V;PRF;1;PST
he²ʔmi xki heʔmi V;PRF;3;PST
xä²ndi xká xändi V;PRF;SG;2;PRS
män-tho dí mäntho V;IPFV;SG;1;PRS
hẹgi xkí hyẹgi V;PRF;2;PST
xe²hai ngí xehai V;IPFV;SG;2;PST
pẹ-mna gi pẹmna V;IRR;SG;2
ja¹² xki nja V;PRF;3;PST
ʔuini xa ʔuini V;PRF;SG;3;PRS
pa² gi pa V;IRR;SG;2
họ²ts’e ga họts’e V;IRR;SG;1
po²bo mí pobo V;IPFV;SG;3;PST
pede stí pede V;PRF;1;PST
e²ʔtsa²-te gí ʔëʔtsate V;IPFV;SG;2;PRS
ntu¹²ti stá ntuti V;PRF;SG;1;PRS
ha¹²t-hmi da hathmi V;IRR;SG;3
mo²t’i xa mot’i V;PRF;SG;3;PRS
thoki bi doki V;PFV;SG;3
tsẹ¹²ni dí tsẹni V;IPFV;SG;1;PRS
ta²ki xká taki V;PRF;SG;2;PRS
ẹ²nts’a²-te ʔẹnts’ate V;IPFV;SG;3;PRS
tu gi tu V;IRR;SG;2
pẹ¹²ti gí pẹti V;IPFV;SG;2;PRS
thoki ga thoki V;IRR;SG;1
ntụhụ xki ntụhụ V;PRF;3;PST
njot’i xa njot’i V;PRF;SG;3;PRS
the¹²ts’i stá thets’i V;PRF;SG;1;PRS
hä¹²ni dí häni V;IPFV;SG;1;PRS
pa¹²fi stí pafi V;PRF;1;PST
ʔñu²di dí ʔñudi V;IPFV;SG;1;PRS
ʔragi gí ʔragi V;IPFV;SG;2;PRS
ga²ts’i xki gats’i V;PRF;3;PST
fe²ʔtse dá feʔtse V;PFV;SG;1
k’o²ʔmi ga k’oʔmi V;IRR;SG;1
nọni mí nọni V;IPFV;SG;3;PST
japa-mäsu xa japamäsu V;PRF;SG;3;PRS
käi gí käi V;IPFV;SG;2;PRS
xọ²ni bi xọni V;PFV;SG;3
ñụ²ni gi ñụni V;IRR;SG;2
ta²t’i xkí tat’i V;PRF;2;PST
mfọta-bọznä ndí mfọtabọznä V;IPFV;SG;1;PST
a²k-hñu²ni ʔakhñuni V;IPFV;SG;3;PRS
mipa-ñä xki mipañä V;PRF;3;PST
nu²hu stí nuhu V;PRF;1;PST
foʔmi dí foʔmi V;IPFV;SG;1;PRS
tu²hu mí tuhu V;IPFV;SG;3;PST
xu¹²st’i ngí xust’i V;IPFV;SG;2;PST
tha²ha xkí thaha V;PRF;2;PST
ets’e gá ʔyets’e V;PFV;SG;2
nu²-mä²nsu mí numänsu V;IPFV;SG;3;PST
ndä²x-jua mí ndäxjua V;IPFV;SG;3;PST
do¹²ni gi doni V;IRR;SG;2
mpẹ¹²nkui mí mpẹnkui V;IPFV;SG;3;PST
fa²-ʔyo ga mfaʔyo V;IRR;SG;1
huts’i ndí hüts’i V;IPFV;SG;1;PST
pa²ʔmi ndí paʔmi V;IPFV;SG;1;PST
ʔñä²xi ngí ʔñäxi V;IPFV;SG;2;PST
tsi¹² xki tsi V;PRF;3;PST
yụnt’i dí yụnt’i V;IPFV;SG;1;PRS
ʔuẹt’i stá ʔuẹt’i V;PRF;SG;1;PRS
xont’i mí xont’i V;IPFV;SG;3;PST
tsụ²-jụ dí tsụjụ V;IPFV;SG;1;PRS
hu²-ʔuada gi ñhüʔuada V;IRR;SG;2
nsemä-he¹² xa nsemähe V;PRF;SG;3;PRS
hei ndí hëi V;IPFV;SG;1;PST
bụ¹²ts’i da bụts’i V;IRR;SG;3
pọ²ʔtsui ngí pọʔtsui V;IPFV;SG;2;PST
ʔbụ¹²i bi ʔmụi V;PFV;SG;3
hwäts’i gí hwäts’i V;IPFV;SG;2;PRS
jua¹²ti xká juati V;PRF;SG;2;PRS
hñä²mbä-ndä gá hñämbändä V;PFV;SG;2
ugi ga ʔugi V;IRR;SG;1
sa²gi xa nsagi V;PRF;SG;3;PRS
pọ²ʔtsui xki pọʔtsui V;PRF;3;PST
nti²ki da ntiki V;IRR;SG;3
nka²yo stá nkayo V;PRF;SG;1;PRS
ja¹²-bätsi stá jabätsi V;PRF;SG;1;PRS
hẹ²n-za hẹnza V;IPFV;SG;3;PRS
ja-nguẹ¹²nda da janguẹnda V;IRR;SG;3
bụ¹²-gu ngí bụgu V;IPFV;SG;2;PST
ʔuẹni xkí ʔuẹni V;PRF;2;PST
kua²t’i xa wat’i V;PRF;SG;3;PRS
pẹ²kri gá pẹkri V;PFV;SG;2
su bi su V;PFV;SG;3
nku²ni dá nkuni V;PFV;SG;1
mpi¹²ts’i dí mpits’i V;IPFV;SG;1;PRS
e²gi gá ʔñëgi V;PFV;SG;2
ga²ts’i gá gats’i V;PFV;SG;2
ne²ka-ntsụ²ʔtsi gi nekantsụʔtsi V;IRR;SG;2
fix-ʔyẹ da fixʔyẹ V;IRR;SG;3
ọ²t’a²-bu¹²hla dí ʔọt’abuhla V;IPFV;SG;1;PRS
ʔna²-ʔyo dí ʔnaʔyo V;IPFV;SG;1;PRS
e¹²nä dá ʔëna V;PFV;SG;1
họ²x-yä dá nhyọxyä V;PFV;SG;1
thä²ʔti stá thäʔti V;PRF;SG;1;PRS
nt’ụngi ga nt’ụngi V;IRR;SG;1
tets’e ndí tets’e V;IPFV;SG;1;PST
kä²ki gi käki V;IRR;SG;2
xa²ndä-po xki xandäpo V;PRF;3;PST
zẹdi bi zẹdi V;PFV;SG;3
hui²ʔtfi bi nhwiʔtfi V;PFV;SG;3
jat’i da gat’i V;IRR;SG;3
ue²ni dí ueni V;IPFV;SG;1;PRS
tsu²ni ga tsuni V;IRR;SG;1
hen-thä¹²hi gá hñënthähi V;PFV;SG;2
u²nga²-nt’ọde dá ʔungant’ọde V;PFV;SG;1
bụ¹²lo stá bụlo V;PRF;SG;1;PRS
kä²-do xkí nkädo V;PRF;2;PST
ʔra¹²-mä²nu¹² gí ʔramänu V;IPFV;SG;2;PRS
zọte da zọte V;IRR;SG;3
kụ¹²hni bi gụhni V;PFV;SG;3
mpụ¹²ni da mpụni V;IRR;SG;3
hñọ²t-hyä stí hñọthyä V;PRF;1;PST
ko²t’a²-fa²di ndí kot’afadi V;IPFV;SG;1;PST
foʔtsi gí foʔtsi V;IPFV;SG;2;PRS
ʔbatbi stí ʔbatbi V;PRF;1;PST
the²nä²-te dí thenäte V;IPFV;SG;1;PRS
nụ²ʔmi xa nụʔmi V;PRF;SG;3;PRS
i²nga²-du²tu bi ʔingadutu V;PFV;SG;3
hmi²-bojä¹² xkí hmibojä V;PRF;2;PST
go²ne dá ngone V;PFV;SG;1
u²ti xki ʔuti V;PRF;3;PST
e² mbi¹²da xa ʔñëmbida V;PRF;SG;3;PRS
nä¹²-nä stá nänä V;PRF;SG;1;PRS
dụ²-zụ gá dụzụ V;PFV;SG;2
go²ne ga ngone V;IRR;SG;1
k’ụ²ts’i xki k’ụts’i V;PRF;3;PST
k’ẹ dá k’ẹ V;PFV;SG;1
ja¹²-bätsi xká jabätsi V;PRF;SG;2;PRS
xi¹² ngí xi V;IPFV;SG;2;PST
ʔña¹²ki ga ʔñaki V;IRR;SG;1
hu²-jua ndí hüjua V;IPFV;SG;1;PST
po²nts’i mí ponts’i V;IPFV;SG;3;PST
teke dí teke V;IPFV;SG;1;PRS
xaʔti dí xaʔti V;IPFV;SG;1;PRS
tẹ¹²hẹ tẹhẹ V;IPFV;SG;3;PRS
a²-the xká ʔñathe V;PRF;SG;2;PRS
nxi²ni ngí nxini V;IPFV;SG;2;PST
e¹²ʔtse stí ʔeʔtse V;PRF;1;PST
pa¹²fi gi pafi V;IRR;SG;2
xiʔtsi ndí xiʔtsi V;IPFV;SG;1;PST
pist’i gi pist’i V;IRR;SG;2
hmi²-bojä¹² gá hmibojä V;PFV;SG;2
pọ²ge mí pọge V;IPFV;SG;3;PST
njụts’i gí njụts’i V;IPFV;SG;2;PRS
tẹ²ʔmi gá tẹʔmi V;PFV;SG;2
mfa²di mí mfadi V;IPFV;SG;3;PST
pi²t’i gi pit’i V;IRR;SG;2
thẹ¹²ti ngí thẹti V;IPFV;SG;2;PST
pụ²ʔhmi dá mpụʔhmi V;PFV;SG;1
thuki stá thuki V;PRF;SG;1;PRS
thoʔti da doʔti V;IRR;SG;3
jụʔmi ndí jụʔmi V;IPFV;SG;1;PST
sụ¹²ni gí sụni V;IPFV;SG;2;PRS
pụʔti gí pụʔti V;IPFV;SG;2;PRS
ke²ni xká keni V;PRF;SG;2;PRS
häʔti xa hñäʔti V;PRF;SG;3;PRS
ʔra²-ʔyo xki ʔraʔyo V;PRF;3;PST
pụ¹²nts’i stá pụnts’i V;PRF;SG;1;PRS
ats’i xkí ʔats’i V;PRF;2;PST
hñụ²fi xki hñụfi V;PRF;3;PST
hñẹ²ki gá hñẹki V;PFV;SG;2
k’a¹²ts’i k’ats’i V;IPFV;SG;3;PRS
kua¹²ʔtsi kuaʔtsi V;IPFV;SG;3;PRS
xi²s-te¹²he xistehe V;IPFV;SG;3;PRS
ọ²t’a²-nde²he dá ʔọt’andehe V;PFV;SG;1
taki dá taki V;PFV;SG;1
me²ʔmi ndí meʔmi V;IPFV;SG;1;PST
that’i ga that’i V;IRR;SG;1
jä²ts’i mí jäts’i V;IPFV;SG;3;PST
ko²hi gí kohi V;IPFV;SG;2;PRS
gä²ʔtsi xká ngäʔtsi V;PRF;SG;2;PRS
nxa¹² gá nxa V;PFV;SG;2
bụ¹²ni ndí bụni V;IPFV;SG;1;PST
nlo²chi gá nlochi V;PFV;SG;2
ent’i ngí ʔent’i V;IPFV;SG;2;PST
hñuʔmba-mụi xkí hñuʔmbamụi V;PRF;2;PST
tsä¹²ni xká tsäni V;PRF;SG;2;PRS
xa¹² xká xa V;PRF;SG;2;PRS
tho²ki stí thoki V;PRF;1;PST
fẹi ngí fẹi V;IPFV;SG;2;PST
ʔñu²n-the ʔñunthe V;IPFV;SG;3;PRS
ts’i²hni bi ts’ihni V;PFV;SG;3
tsa²-ya ga ntsaya V;IRR;SG;1
k’o²t’i xa k’ot’i V;PRF;SG;3;PRS
dent’i dí dent’i V;IPFV;SG;1;PRS
pidi ga pidi V;IRR;SG;1
ta²ʔ-nthä dí taʔnthä V;IPFV;SG;1;PRS
pẹi ndí pẹi V;IPFV;SG;1;PST
pä¹²di bi pädi V;PFV;SG;3
ʔño¹²ui xki ʔñoui V;PRF;3;PST
mponi bi mponi V;PFV;SG;3
nti²ni da ntini V;IRR;SG;3
xiʔki xká xiʔki V;PRF;SG;2;PRS
fo¹²ki dí foki V;IPFV;SG;1;PRS
hñä²mbä-ndä stá hñämbändä V;PRF;SG;1;PRS
pa²nthi da mpanthi V;IRR;SG;3
nọ²ma²-ñʔụ dí nọmañʔụ V;IPFV;SG;1;PRS
thä²mfri xa thämfri V;PRF;SG;3;PRS
ʔbọ²ni xki ʔbọni V;PRF;3;PST
ʔmẹ²-mfo dá ʔmẹmfo V;PFV;SG;1
pẹui ngí pẹui V;IPFV;SG;2;PST
tsa²-te gá ntsate V;PFV;SG;2
hya²ʔnga hyaʔnga V;IPFV;SG;3;PRS
pa¹²ni xkí pani V;PRF;2;PST
e¹²st’e xká ʔyest’e V;PRF;SG;2;PRS
ndä-ne mí ndäne V;IPFV;SG;3;PST
ẹ-ʔuada ndí ʔẹʔuada V;IPFV;SG;1;PST
mo¹²ngi xki mongi V;PRF;3;PST
dä¹²-hmyä bi dähmyä V;PFV;SG;3
ʔbẹt’i ga ʔbẹt’i V;IRR;SG;1
ʔbist’i bi ʔbist’i V;PFV;SG;3
pe¹²ngi mí pengi V;IPFV;SG;3;PST
ko²hi ndí kohi V;IPFV;SG;1;PST
njua¹²ti xki njuati V;PRF;3;PST
tsa²ʔni xki ntsaʔni V;PRF;3;PST
pa¹²nts’i da mants’i V;IRR;SG;3
hmä¹²hni mí hmähni V;IPFV;SG;3;PST
tho²hni bi thohni V;PFV;SG;3
thä²ʔti stí thäʔti V;PRF;1;PST
dä²nts’i bi ndänts’i V;PFV;SG;3
hä²kua²bi gí häkuabi V;IPFV;SG;2;PRS
ẹgi xká ʔyẹgi V;PRF;SG;2;PRS
mpä²hi xki mpähi V;PRF;3;PST
nzọ-te da nzọte V;IRR;SG;3
mẹ¹²ñ-ʔyẹ xa mẹñʔyẹ V;PRF;SG;3;PRS
pi²ʔmi gi piʔmi V;IRR;SG;2
pẹ¹²ts’i stí pẹts’i V;PRF;1;PST
mit’i gi mit’i V;IRR;SG;2
tä²-te dá ntäte V;PFV;SG;1
o²ʔtsi xkí ʔyoʔtsi V;PRF;2;PST
pẹpi gí pẹpi V;IPFV;SG;2;PRS
ñe²ʔmi xa ñeʔmi V;PRF;SG;3;PRS
gụni xki gụni V;PRF;3;PST
o²-tho ʔotho V;IPFV;SG;3;PRS
thẹki dá thẹki V;PFV;SG;1
ʔñụhwi xkí ʔñụhwi V;PRF;2;PST
ku²-te xkí kute V;PRF;2;PST
ju²ti xki juti V;PRF;3;PST
xoʔti ngí xoʔti V;IPFV;SG;2;PST
ts’oma²-ñu²ni mí ts’omañuni V;IPFV;SG;3;PST
pẹ²-tsa²thä ngí pẹtsathä V;IPFV;SG;2;PST
nsụ²ʔti xki nsụʔti V;PRF;3;PST
huʔtsi stá hüʔtsi V;PRF;SG;1;PRS
hyo²-ya dá nhyoya V;PFV;SG;1
ẹi ʔẹi V;IPFV;SG;3;PRS
fọts’e dí fọts’e V;IPFV;SG;1;PRS
xu²mi dá xumi V;PFV;SG;1
o²-tho da ʔñotho V;IRR;SG;3
tẹ ga tẹ V;IRR;SG;1
ntso¹²ts’i xa ntsots’i V;PRF;SG;3;PRS
te¹²ts’e ndí tets’e V;IPFV;SG;1;PST
hyo²-ya hyoya V;IPFV;SG;3;PRS
ʔui² gí ʔuï V;IPFV;SG;2;PRS
ʔbẹpi xkí ʔbẹpi V;PRF;2;PST
kua²t’i ga kuat’i V;IRR;SG;1
jo¹² xkí jo V;PRF;2;PST
huʔtsi ngí hüʔtsi V;IPFV;SG;2;PST
fo²nt’i xkí font’i V;PRF;2;PST
xi²ʔtsi da xiʔtsi V;IRR;SG;3
pọ²ke xkí pọke V;PRF;2;PST
nkuẹ xa nkuẹ V;PRF;SG;3;PRS
ta²st’i ngí tast’i V;IPFV;SG;2;PST
tsä¹²mi xki zämi V;PRF;3;PST
ta²ti xká tati V;PRF;SG;2;PRS
fọge ga fọge V;IRR;SG;1
ue²n-ga²hai xká uengahai V;PRF;SG;2;PRS
kue²t’e xki wet’e V;PRF;3;PST
njuä²ni stí njuäni V;PRF;1;PST
pẹ²gi gí pẹgi V;IPFV;SG;2;PRS
ja xa ja V;PRF;SG;3;PRS
to¹²nt’i ndí tont’i V;IPFV;SG;1;PST
mpobo da mpobo V;IRR;SG;3
net’i dí net’i V;IPFV;SG;1;PRS
tso¹²-tho gá tsotho V;PFV;SG;2
ät’i bi ʔät’i V;PFV;SG;3
ngụt’i dí ngụt’i V;IPFV;SG;1;PRS
tẹx-ʔuada gí tẹxʔuada V;IPFV;SG;2;PRS
ñat’i gi ñat’i V;IRR;SG;2
ts’i²ʔti ngí ts’iʔti V;IPFV;SG;2;PST
họ²-ndgu xkí nhyọndgu V;PRF;2;PST
k’o²ʔmi k’oʔmi V;IPFV;SG;3;PRS
e²ʔtsa²-te mí ʔëʔtsate V;IPFV;SG;3;PST
nts’oki ga nts’oki V;IRR;SG;1
nzäi xki nzäi V;PRF;3;PST
o²ki ga ʔoki V;IRR;SG;1
ho²-du da hodu V;IRR;SG;3
dä²xi gi däxi V;IRR;SG;2
kụ²ʔ-sta ngí kụʔsta V;IPFV;SG;2;PST
pa²ʔ-nthä bi mpaʔnthä V;PFV;SG;3
ja¹²-nä¹²nä bi janänä V;PFV;SG;3
nts’o¹²ni xa nts’oni V;PRF;SG;3;PRS
ue²n-ga²hai bi uengahai V;PFV;SG;3
jot’i da got’i V;IRR;SG;3
ua²xki uaxki V;IPFV;SG;3;PRS
tsụ²t’i mí tsụt’i V;IPFV;SG;3;PST
nzäi ga nzäi V;IRR;SG;1
nọ²xke ndí nọxke V;IPFV;SG;1;PST
mbụ²ni xa mbụni V;PRF;SG;3;PRS
hño-ya stá hñoya V;PRF;SG;1;PRS
hmät’i ga hmät’i V;IRR;SG;1
ne²ka-ntsụ²ʔtsi gí nekantsụʔtsi V;IPFV;SG;2;PRS
ñä²-mä²ñʔụ ngí ñämäñʔụ V;IPFV;SG;2;PST
k’o²ʔmi xki k’oʔmi V;PRF;3;PST
ra²ncha xkí rancha V;PRF;2;PST
thuui ngí thuui V;IPFV;SG;2;PST
uä²nts’i xa uänts’i V;PRF;SG;3;PRS
xat’i stí xat’i V;PRF;1;PST
nụ¹²-da gá nụda V;PFV;SG;2
tsi tsi V;IPFV;SG;3;PRS
zụ²ni bi zụni V;PFV;SG;3
ʔrọ¹²ke da ʔrọke V;IRR;SG;3
pụʔtsi xki mụʔtsi V;PRF;3;PST
kụ²ʔti bi kụʔti V;PFV;SG;3
ja¹²-nä¹²nä mí janänä V;IPFV;SG;3;PST
ʔñan-the mí ʔñanthe V;IPFV;SG;3;PST
ndu²-mụi gí ndumụi V;IPFV;SG;2;PRS
ts’oma²-ñu²ni stí ts’omañuni V;PRF;1;PST
fọt’e fọt’e V;IPFV;SG;3;PRS
uä²hi dá uähi V;PFV;SG;1
thẹ-nde xa dẹnde V;PRF;SG;3;PRS
ʔñọ²t’a²-da¹²da dá ʔñọt’adada V;PFV;SG;1
muʔmbi xa muʔmbi V;PRF;SG;3;PRS
bu²hla mí buhla V;IPFV;SG;3;PST
ʔra²-mbi xkí ʔrambi V;PRF;2;PST
pe²m-ts’e stá pemts’e V;PRF;SG;1;PRS
fat’ä²-juä¹² xká fat’äjuä V;PRF;SG;2;PRS
kọndui ngí kọndui V;IPFV;SG;2;PST
mpa¹²nt’i ga mpant’i V;IRR;SG;1
ho²pi gí hopi V;IPFV;SG;2;PRS
xei xká xei V;PRF;SG;2;PRS
jụnts’i stá jụnts’i V;PRF;SG;1;PRS
koʔtsi mí koʔtsi V;IPFV;SG;3;PST
nzọt’e da nzọt’e V;IRR;SG;3
tsa¹²ui ndí tsaui V;IPFV;SG;1;PST
nxu²-mfọ nxumfọ V;IPFV;SG;3;PRS
hñọ²ts’e ndí hñọts’e V;IPFV;SG;1;PST
ụ²ta²-te bi ʔñụtate V;PFV;SG;3
hụ²xi dá hñụxi V;PFV;SG;1
tsọ¹²họ xká tsọhọ V;PRF;SG;2;PRS
ʔueni da ʔueni V;IRR;SG;3
ʔbẹfa stá ʔbẹfa V;PRF;SG;1;PRS
zofo ngí zofo V;IPFV;SG;2;PST
nku²mä²-ʔri²hi ndí nkumäʔrihi V;IPFV;SG;1;PST
ua²ʔti ngí uaʔti V;IPFV;SG;2;PST
ñä²hni xká ñähni V;PRF;SG;2;PRS
maʔti dá maʔti V;PFV;SG;1
hño¹²ga²-ñʔọde gí hñogañʔọde V;IPFV;SG;2;PRS
ko¹²mi ga komi V;IRR;SG;1
nko²mfo²rme da nkomforme V;IRR;SG;3
u¹²st’i xká ʔñust’i V;PRF;SG;2;PRS
tsu stí tsu V;PRF;1;PST
nthät’i ndí nthät’i V;IPFV;SG;1;PST
pọ²ts’e ngí pọts’e V;IPFV;SG;2;PST
ntä²mi xkí ntämi V;PRF;2;PST
ʔbẹt’i ndí ʔbẹt’i V;IPFV;SG;1;PST
xängi xki xängi V;PRF;3;PST
eni dí ʔeni V;IPFV;SG;1;PRS
pu²ʔni xkí puʔni V;PRF;2;PST
nthint’i nthint’i V;IPFV;SG;3;PRS
re²sga resga V;IPFV;SG;3;PRS
pi²ʔmi stí piʔmi V;PRF;1;PST
ofo gi ʔyofo V;IRR;SG;2
ne¹²ts’e bi nets’e V;PFV;SG;3
nkä¹²-xuui nkäxuui V;IPFV;SG;3;PRS
ndu²pä-te ndupäte V;IPFV;SG;3;PRS
e¹²mbi xki ʔñëmbi V;PRF;3;PST
bo¹²st’i gí bost’i V;IPFV;SG;2;PRS
e¹²mbi xkí ʔñëmbi V;PRF;2;PST
fụ¹²ngi bi fụngi V;PFV;SG;3
pe²ni peni V;IPFV;SG;3;PRS
ʔñan-the ndí ʔñanthe V;IPFV;SG;1;PST
xa²ti xati V;IPFV;SG;3;PRS
pẹhni ga pẹhni V;IRR;SG;1
hmä²ni xa hmäni V;PRF;SG;3;PRS
hä¹²mpi mí hämpi V;IPFV;SG;3;PST
tọ¹²ke ga tọke V;IRR;SG;1
tä¹²ki dí täki V;IPFV;SG;1;PRS
mpu²m-hai mpumhai V;IPFV;SG;3;PRS
he²ke ndí heke V;IPFV;SG;1;PST
e²-bru ga ʔëbru V;IRR;SG;1
heni da heni V;IRR;SG;3
pẹ²-ʔñäi dá pẹʔñäi V;PFV;SG;1
kụ²ni stá kụni V;PRF;SG;1;PRS
hmi¹²-nzụ hminzụ V;IPFV;SG;3;PRS
te¹²ge ndí tege V;IPFV;SG;1;PST
hwät’i ndí hwät’i V;IPFV;SG;1;PST
pẹ¹²hni mí pẹhni V;IPFV;SG;3;PST
nde²he dí ndehe V;IPFV;SG;1;PRS
ha¹²t-hmi ngí hathmi V;IPFV;SG;2;PST
ʔñe-mei gá ʔñemei V;PFV;SG;2
ko²t’i dí kot’i V;IPFV;SG;1;PRS
k’ẹ²-suni dí k’ẹsuni V;IPFV;SG;1;PRS
tsọ²ni xa tsọni V;PRF;SG;3;PRS
nthẹui xká nthẹui V;PRF;SG;2;PRS
pẹ¹²ʔtsi stí pẹʔtsi V;PRF;1;PST
tọte ngí tọte V;IPFV;SG;2;PST
yụki yụki V;IPFV;SG;3;PRS
hua²xi dí huaxi V;IPFV;SG;1;PRS
k’o²t’i da k’ot’i V;IRR;SG;3
ʔñọ²t’a²-da¹²da ʔñọt’adada V;IPFV;SG;3;PRS
hmä²ni ngí hmäni V;IPFV;SG;2;PST
fọge mí fọge V;IPFV;SG;3;PST
ñoni xká ñoni V;PRF;SG;2;PRS
nt’i²xni mí nt’ixni V;IPFV;SG;3;PST
ẹts’i ndí ʔẹts’i V;IPFV;SG;1;PST
ts’ok’-ba²ha ts’ok’baha V;IPFV;SG;3;PRS
tsi²-mdo xkí tsimdo V;PRF;2;PST
hu²-hme stá hñühme V;PRF;SG;1;PRS
pa² xki pa V;PRF;3;PST
ʔbụ-hwi-tho bi ʔbụhwitho V;PFV;SG;3
ʔba²ni da ʔbani V;IRR;SG;3
ʔuẹi ngí ʔuẹi V;IPFV;SG;2;PST
niʔtsi xkí niʔtsi V;PRF;2;PST
ngä²hä ga ngähä V;IRR;SG;1
ts’i²hni gi ts’ihni V;IRR;SG;2
jäʔtsi mí jäʔtsi V;IPFV;SG;3;PST
po¹²n-tho ndí pontho V;IPFV;SG;1;PST
xẹki gá xẹki V;PFV;SG;2
muʔmbi stí muʔmbi V;PRF;1;PST
e¹²n-sẹ dá ʔensẹ V;PFV;SG;1
hä² xkí hñä V;PRF;2;PST
xọt’e xká xọt’e V;PRF;SG;2;PRS
ntsa gi ntsa V;IRR;SG;2
nthọ²xni stá nthọxni V;PRF;SG;1;PRS
ñä²-mfọ ndí ñämfọ V;IPFV;SG;1;PST
xont’i gi xont’i V;IRR;SG;2
ño²t’i xki ñot’i V;PRF;3;PST
ʔbatbi bi ʔbatbi V;PFV;SG;3
yaki xká yaki V;PRF;SG;2;PRS
u¹²di stí ʔüdi V;PRF;1;PST
dọ²ni mí dọni V;IPFV;SG;3;PST
nxani da nxani V;IRR;SG;3
po¹²nä²-ʔro²njua xa ponäʔronjua V;PRF;SG;3;PRS
sụ²ʔti ngí sụʔti V;IPFV;SG;2;PST
tsi¹² da tsi V;IRR;SG;3
u²nga²-ngüẹ¹²nda xká ʔungangüẹnda V;PRF;SG;2;PRS
k’ụ²-ne gá nk’ụne V;PFV;SG;2
jụʔtsi gá jụʔtsi V;PFV;SG;2
nọ²xke gá nọxke V;PFV;SG;2
jäpi xa jäpi V;PRF;SG;3;PRS
tẹ¹²xi ndí tẹxi V;IPFV;SG;1;PST
k’ua²-mba gí k’uamba V;IPFV;SG;2;PRS
hñä¹²ts’i dá hñäts’i V;PFV;SG;1
a²ki xki ʔyaki V;PRF;3;PST
neʔmi xa neʔmi V;PRF;SG;3;PRS
ntsi¹² mí ntsi V;IPFV;SG;3;PST
ʔyo²-mfọ gi ʔñomfọ V;IRR;SG;2
kọ²ʔte xa nkọʔte V;PRF;SG;3;PRS
fẹki stá fẹki V;PRF;SG;1;PRS
xuni da xuni V;IRR;SG;3
dä²xi stí däxi V;PRF;1;PST
fọge dá fọge V;PFV;SG;1
hmät’i xki hmät’i V;PRF;3;PST
nxụ dí nxụ V;IPFV;SG;1;PRS
ʔñox-jụ¹²ni stí ʔñoxjụni V;PRF;1;PST
k’uẹ²ʔtsi dí k’uẹʔtsi V;IPFV;SG;1;PRS
ndu¹²-de gí ndude V;IPFV;SG;2;PRS
u²-spi ʔuspi V;IPFV;SG;3;PRS
bụ¹²ʔtsi bụʔtsi V;IPFV;SG;3;PRS
ho²pi ndí hopi V;IPFV;SG;1;PST
hñä²mbä-ndä bi hñämbändä V;PFV;SG;3
nthint’i dá nthint’i V;PFV;SG;1
xa¹² da xa V;IRR;SG;3
e²ke da ʔyeke V;IRR;SG;3
fe¹²st’e dí fest’e V;IPFV;SG;1;PRS
tọ²ʔtse ngí tọʔtse V;IPFV;SG;2;PST
nthäti ndí nthäti V;IPFV;SG;1;PST
hña²hni xa hñahni V;PRF;SG;3;PRS
pẹ²-tsa²thä ndí pẹtsathä V;IPFV;SG;1;PST
e¹²ts’i xa ʔñëts’i V;PRF;SG;3;PRS
nzäi mí nzäi V;IPFV;SG;3;PST
hwät’i mí hwät’i V;IPFV;SG;3;PST
nai ga nai V;IRR;SG;1
k’ä²ts’i k’äts’i V;IPFV;SG;3;PRS
kä²-bọhai bi nkäbọhai V;PFV;SG;3
pọ²ʔtsui gí pọʔtsui V;IPFV;SG;2;PRS
tsụdi xa zụdi V;PRF;SG;3;PRS
xẹʔtsi dí xẹʔtsi V;IPFV;SG;1;PRS
kụ²ʔ-nxuui kụʔnxuui V;IPFV;SG;3;PRS
jo²-hya johya V;IPFV;SG;3;PRS
fụ²ʔti xkí fụʔti V;PRF;2;PST
fọ²mä²-te xká fọmäte V;PRF;SG;2;PRS
ñe²ʔmi xki ñeʔmi V;PRF;3;PST
ñu²nts’i xki ñunts’i V;PRF;3;PST
ko²pe²ra gí kopera V;IPFV;SG;2;PRS
pasia xa pasia V;PRF;SG;3;PRS
xi¹² gi xi V;IRR;SG;2
zẹdi ga zẹdi V;IRR;SG;1
fọmi ngí fọmi V;IPFV;SG;2;PST
nthẹui mí nthẹui V;IPFV;SG;3;PST
ñoho xkí ñoho V;PRF;2;PST
kụnts’i xa kụnts’i V;PRF;SG;3;PRS
yụnt’i dá yụnt’i V;PFV;SG;1
hño²ʔti stá hñoʔti V;PRF;SG;1;PRS
ndä¹²ngi ga ndängi V;IRR;SG;1
tsụ¹² gi tsụ V;IRR;SG;2
hñei bi hñei V;PFV;SG;3
the²de da nthede V;IRR;SG;3
ts’ahni xa ts’ahni V;PRF;SG;3;PRS
ju²x-huä¹²hi xká juxhuähi V;PRF;SG;2;PRS
hu²di da hñüdi V;IRR;SG;3
thät’i ngí thät’i V;IPFV;SG;2;PST
ñä¹²hi gá ñähi V;PFV;SG;2
pe²te xki pete V;PRF;3;PST
nt’ọʔtse dá nt’ọʔtse V;PFV;SG;1
pụt’i xká pụt’i V;PRF;SG;2;PRS
ʔbo²ni da ʔboni V;IRR;SG;3
tsọ²nte stá ntsọnte V;PRF;SG;1;PRS
hñen-tho gí hñentho V;IPFV;SG;2;PRS
pẹ¹²ts’i da pẹts’i V;IRR;SG;3
pist’i stí pist’i V;PRF;1;PST
ʔño¹²nse xki ʔñonse V;PRF;3;PST
ts’ụ²-xẹ¹²ni stá ts’ụxẹni V;PRF;SG;1;PRS
nọ¹²ge gi nọge V;IRR;SG;2
kue¹²te stá kuete V;PRF;SG;1;PRS
ʔua²m-t’ä¹²hä ndí ʔuamt’ähä V;IPFV;SG;1;PST
hwäts’i ndí hwäts’i V;IPFV;SG;1;PST
e²ke ndí ʔeke V;IPFV;SG;1;PST
hä²mbi xa hñäm V;PRF;SG;3;PRS
nko²ʔmi mí nkoʔmi V;IPFV;SG;3;PST
u²ʔti xa ʔuʔti V;PRF;SG;3;PRS
fọ²ts’e da fọts’e V;IRR;SG;3
ʔma²t’i da ʔmat’i V;IRR;SG;3
tsi gí tsi V;IPFV;SG;2;PRS
mfi²ts’i ngí mfits’i V;IPFV;SG;2;PST
ñoni stí ñoni V;PRF;1;PST
e²ʔtsa²-te bi ʔñëʔtsate V;PFV;SG;3
kadi-tho xkí kaditho V;PRF;2;PST
foʔmi bi foʔmi V;PFV;SG;3
mä²m-xa ngí mämxa V;IPFV;SG;2;PST
nxaʔmi gi nxaʔmi V;IRR;SG;2
tä²-te stá ntäte V;PRF;SG;1;PRS
ei xká ʔñëi V;PRF;SG;2;PRS
ti¹²ni dí tini V;IPFV;SG;1;PRS
ma²ʔti ndí maʔti V;IPFV;SG;1;PST
tsụ²-thä dí tsụthä V;IPFV;SG;1;PRS
tso¹²gi xká tsogi V;PRF;SG;2;PRS
po²-the bi pothe V;PFV;SG;3
xä¹²ʔkui ndí xäʔkui V;IPFV;SG;1;PST
tho²t’i dá thot’i V;PFV;SG;1
hñi bi hñi V;PFV;SG;3
kọ²ʔte kọʔte V;IPFV;SG;3;PRS
pa¹²ti bi pati V;PFV;SG;3
ʔna²-ʔyo da ʔnaʔyo V;IRR;SG;3
ʔmẹ¹²ts’i da ʔmẹts’i V;IRR;SG;3
ọ²ts’e bi ʔọts’e V;PFV;SG;3
ntsa¹² dá ntsa V;PFV;SG;1
hiti gi hiti V;IRR;SG;2
joʔmi stá joʔmi V;PRF;SG;1;PRS
fant’i bi fant’i V;PFV;SG;3
ga²ts’i stá gats’i V;PRF;SG;1;PRS
nt’ụngi da nt’ụngi V;IRR;SG;3
k’ụ¹²nts’i xa nk’ụnts’i V;PRF;SG;3;PRS
fụ²gi da fụgi V;IRR;SG;3
pe²-ʔnzä dá peʔnzä V;PFV;SG;1
neʔtsi neʔtsi V;IPFV;SG;3;PRS
yo¹²ʔti ndí yoʔti V;IPFV;SG;1;PST
fẹki xa mẹki V;PRF;SG;3;PRS
hñe¹²ts’e xkí hñets’e V;PRF;2;PST
pẹ²gi xa pẹgi V;PRF;SG;3;PRS
bo²la bi bola V;PFV;SG;3
bụ¹²-gu gá bụgu V;PFV;SG;2
ʔñe¹²-da mí ʔñeda V;IPFV;SG;3;PST
tsä¹²mi gá tsämi V;PFV;SG;2
thẹ¹²nt’i mí thẹnt’i V;IPFV;SG;3;PST
ndo-ne xkí ndone V;PRF;2;PST
kä²ts’i xa käts’i V;PRF;SG;3;PRS
nde²x-ʔba xki ndexʔba V;PRF;3;PST
mẹ¹²ñ-ʔyẹ gí mẹñʔyẹ V;IPFV;SG;2;PRS
ẹ²n-sagi ngí ʔẹnsagi V;IPFV;SG;2;PST
hu²-nä²ni stí ñhünäni V;PRF;1;PST
ts’ä¹² stá ts’ä V;PRF;SG;1;PRS
tsọ²ʔte xa tsọʔte V;PRF;SG;3;PRS
mfots’i gá mfots’i V;PFV;SG;2
he¹² gí he V;IPFV;SG;2;PRS
nts’o²m-ʔyo bi nts’omʔyo V;PFV;SG;3
hmä²ni xkí hmäni V;PRF;2;PST
pọ²ts’e ga pọts’e V;IRR;SG;1
honi xa hyoni V;PRF;SG;3;PRS
ho²ʔti ga hoʔti V;IRR;SG;1
ʔmẹgo stá ʔmẹgo V;PRF;SG;1;PRS
kats’i gí kats’i V;IPFV;SG;2;PRS
hu²-ʔni xa ñhüʔni V;PRF;SG;3;PRS
sẹ²-ya dí sẹya V;IPFV;SG;1;PRS
ʔñọni ʔñọni V;IPFV;SG;3;PRS
tsi²-mdo xki tsimdo V;PRF;3;PST
ʔba¹²xni xkí ʔbaxni V;PRF;2;PST
dä¹²nts’i gi dänts’i V;IRR;SG;2
thẹ¹²ti xki thẹti V;PRF;3;PST
ma²ʔti gi maʔti V;IRR;SG;2
tsi²s-te mí tsiste V;IPFV;SG;3;PST
hñeni dí hñeni V;IPFV;SG;1;PRS
hu²ʔmi xká huʔmi V;PRF;SG;2;PRS
xat’i xa xat’i V;PRF;SG;3;PRS
neʔtsi gi neʔtsi V;IRR;SG;2
fe¹²st’e xká fest’e V;PRF;SG;2;PRS
xẹki mí xẹki V;IPFV;SG;3;PST
mpụ¹²nga²-be mí mpụngabe V;IPFV;SG;3;PST
zo²hni gi zohni V;IRR;SG;2
nat’i ndí nat’i V;IPFV;SG;1;PST
nụ¹²-da mí nụda V;IPFV;SG;3;PST
hẹ¹²xki dá hẹxki V;PFV;SG;1
ja¹²-nä¹²nä janänä V;IPFV;SG;3;PRS
fọ-jyä dá fọjyä V;PFV;SG;1
kọ¹²xke dá kọxke V;PFV;SG;1
hä² hä V;IPFV;SG;3;PRS
dä²xi ngí däxi V;IPFV;SG;2;PST
tro¹²zo xa trozo V;PRF;SG;3;PRS
họ²t’e gá họt’e V;PFV;SG;2
nkä¹²xi da nkäxi V;IRR;SG;3
o²di ga ʔodi V;IRR;SG;1
be¹²ni ngí beni V;IPFV;SG;2;PST
nxu²t’i ndí nxut’i V;IPFV;SG;1;PST
ọt’a²-hu¹²di gi ʔyọt’ahudi V;IRR;SG;2
ʔmaʔma-nza¹²ya stí ʔmaʔmanzaya V;PRF;1;PST
zụ¹²ts’i mí zụts’i V;IPFV;SG;3;PST
tẹ²ʔmi bi dẹʔmi V;PFV;SG;3
nxu²tsi mí nxutsi V;IPFV;SG;3;PST
kụ²n-the dí kụnthe V;IPFV;SG;1;PRS
mbi²tabi xa mbitabi V;PRF;SG;3;PRS
nọ²xke bi nọxke V;PFV;SG;3
nex-t’i¹²hi xká next’ihi V;PRF;SG;2;PRS
pẹ²-hwä stá pẹhwä V;PRF;SG;1;PRS
xats’i dí xats’i V;IPFV;SG;1;PRS
hu²ʔti gi hñüʔti V;IRR;SG;2
kụ²i dí kụi V;IPFV;SG;1;PRS
thụ¹²ts’i xki thụts’i V;PRF;3;PST
ntso¹² gí ntso V;IPFV;SG;2;PRS
pani xki pani V;PRF;3;PST
nọ²ts’e gí nọts’e V;IPFV;SG;2;PRS
tẹx-ʔuada dí tẹxʔuada V;IPFV;SG;1;PRS
thẹti ngí thẹti V;IPFV;SG;2;PST
ja²bi xki jabi V;PRF;3;PST
nxu²ni bi nxuni V;PFV;SG;3
u²ʔtsi ga ʔuʔtsi V;IRR;SG;1
mpẹ¹²ts’i xa mpẹts’i V;PRF;SG;3;PRS
ho¹² bi ho V;PFV;SG;3
ʔbat’i xki ʔbat’i V;PRF;3;PST
theni xa deni V;PRF;SG;3;PRS
thät’i da dät’i V;IRR;SG;3
ntọ²ʔtse xa ntọʔtse V;PRF;SG;3;PRS
kä¹²xi xká käxi V;PRF;SG;2;PRS
mpụ¹²nga²-nxadi ndí mpụnganxadi V;IPFV;SG;1;PST
mfọta-bọznä xkí mfọtabọznä V;PRF;2;PST
xu²mi stí xumi V;PRF;1;PST
tso²ʔtsi gi tsoʔtsi V;IRR;SG;2
xọ²ʔhmi xọʔhmi V;IPFV;SG;3;PRS
ʔyo²fri dá ʔyofri V;PFV;SG;1
foʔmi ngí foʔmi V;IPFV;SG;2;PST
pi²nts’i da pints’i V;IRR;SG;3
ʔño¹² gá ʔño V;PFV;SG;2
k’uẹ²ʔtsi dá k’uẹʔtsi V;PFV;SG;1
|
f7a4c825a490d9ee368aebbb5faa266709266976 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1808/CH7/EX7.2/Chapter7_Exampl2.sce | 55b20da30a014e3d2ef0a073c858db830dc41337 | [] | 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,300 | sce | Chapter7_Exampl2.sce | clc
clear
//INPUT DATA
t=20;//Moist temperature in Degree c
td=15;//Dew point temperature in Degree c
pv=12.79;//vapour pressure in mm of Hg
p2=17.52//pressure of water vapour in mm of Hg
pa=727.21;//pressure of air in mm of Hg
hfgt=2454.1;//Specific enthalpy in kJ/kgw.v.
hfgd=2465.9;//Specific enthalpy in kJ/kgw.v.
cpa=1.005;//specific pressure
Ra=287.3;//gas constant
//CALCULATIONS
pv1=12.79*133.5;//prtial pressure in N/m^2
x=(pv/p2)*100;//realtive humidity in percentage
w=0.622*(pv/pa);//Specific humidity in kg w.v./kg d.a
hv=((4.1868*td)+(hfgd)+(1.88*(t-td)));//Specific enthalpy of water vapour in kJ/kg w.v
hv1=2500+1.8*(t);//Specific enthalpy of water vapour in kJ/kg w.v
hv2=4.1868*t+2454.1;//Specific enthalpy of water vapour in kJ/kg w.v
h=cpa*t+w*hv;//Enthalpy of air per kg of dry air in kJ/kg d.a
va=(Ra*(t+273))/(pa*133.5);//Specific volume of air per kg of dry air in m^3/kg d.a
//OUTPUT
printf('(a)From steam tables partial pressure of water is %3.1f N/m^2 \n (b)Relative humidity is %3.2f percentage\n (c)Specific humidity %3.5f kg w.v./kg d.a \n(d)Specific enthalpy of water vapour is %3.3f kJ/kg w.v. \n (e)Enthalpy of air per kg of dry air is %3.2f kJ/kg d.a.\n (f)Specific volume of air per kg of dry air is %3.4f m^3/kg d.a.',pv1,x,w,hv,h,va)
|
036fd04647552fbc163011bb2b2ba7f9ae4cfb28 | 449d555969bfd7befe906877abab098c6e63a0e8 | /284/CH13/EX13.7/ex7.sce | 2909d12af8822e9baf0422e3808be36b440ea9e2 | [] | 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 | 426 | sce | ex7.sce | // Chapter 13_Optical Devices
//Caption_PIN Photodiode
//Ex_7//page 618
e = 1.6*10^-19;
W=20*10^-4 //intrinsic region width
phio=10^17 //photon flux
alpha=10^3 //absorption coefficient
GL1=alpha*phio //generation rate of electron hole pair at the front region
GL2=GL1*exp(-alpha*W)
JL=1000*e*phio*(1-exp(-alpha*W)) //photocurrent density
printf('The photocurrent density in PIN photodiode is %1.1f mA/cm^2 ',JL) |
932e2ce58acaab5f9056ccb374e31f0dc059028d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2252/CH2/EX2.4/Ex2_4.sce | 22988d1ca4225279831ee00e934539d0f4acfc94 | [] | 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 | Ex2_4.sce |
C=30D-6
R=500
T=C*R
mprintf("Time constant T=%f sec\n", T)
//at t=0sec, voltage across capacitor is zero
V=100//aplied voltage
I=V/R//Ohm's Law
mprintf("Initial current=%f A\n", I)
t=.05
Q=C*V
q=Q*(1-exp(-t/T))
mprintf("Charge on the capacitor after 0.05 sec is %f C\n", q)
i1=I*exp(-t/T)
mprintf("Charging current after 0.05 sec is %f A\n",i1)
t=.015
i2=I*exp(-t/T)
mprintf("Charging current after 0.015 sec is %f A\n",i2)
V=i1*R
mprintf("Voltage across 500 ohm resistor after 0.05 sec is %f V", V)
//answers vary from the textbook due to round off error
|
663a1ddb131b55288ab7f7110952bd246de0a428 | 449d555969bfd7befe906877abab098c6e63a0e8 | /944/CH5/EX5.9/example5_9_TACC.sce | a6d421b10786a5f90dd9e0d5d390ac9c7e0b18bc | [] | 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 | 977 | sce | example5_9_TACC.sce | //example 5.9
clear;
clc;
//Given:
T1=276;//Initial temperature[K]
Tf=278.7;//Freezing point temperature[K]
Tb=353.3;//Boiling point temperature[K]
T2=373;//Final temperature[K]
Hf=9870;//Standard enthalpy of fusion[J/mol]
Hv=30800;//Standard enthalpy of vaporization[J/mol]
Cp=136.1;//Specific heat capacity of benzene[J/K/mol]
mol.wt=78;//molecular weight of benzene[g/mol]
mass=200;//weight of solid benzene[g]
disp(" Cp doesnot change within this temp limit");
//To find the total entropy change of solid
n=mass/mol.wt;//no. of moles
S1=n*Cp*log(Tf/T1);//entropy change in heating [J/K]
S2=n*Hf/Tf;//entropy change in melting[J/K]
S3=n*Cp*log(Tb/Tf);//entropy change in heating[J/K]
S4=n*Hv/Tb;//entropy change in vaporization[J/K]
S5=n*Cp*log(T2/Tb);//entropy change in heating[J/K]
S=S1+S2+S3+S4+S5;//total entropy change in heating from 276 to 373K
printf("Total entropy change in heating 200g benzene from 3 to 100`C is %f J/K",S);
|
afdcdbea4cd2c3f312c98909c145c1cd829137ab | 9f9364e082d4bc2f7ee5cbd7a489642615821873 | /src/testCases/test3-13.tst | 856f4b39390781d2f49b4336771ab1090ad97659 | [] | no_license | abrageddon/DLX-Opt | 4602617f83ddf8cb0fea83fecd2faa362849dfcd | 20038078f11a7ae67e7ab336e551e23966551290 | refs/heads/master | 2021-01-01T05:49:33.218016 | 2013-03-14T06:08:45 | 2013-03-14T06:08:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 363 | tst | test3-13.tst | main
array[10] a;
var i, j;
{
let i <- 0;
while i < 10 do
let a[i] <- 2 + i;
let i <- i + 1
od;
let i <- 2;
while i < 8 do
let j <- 0 - 2;
while j <= 2 do
let a[i + j] <- a[i + j] + a[i];
let j <- j + 1
od;
let i <- i + 1
od;
let i <- 0;
while i < 10 do
call outputnum(a[i]);
let i <- i + 1
od
}.
|
64285550d9b237d9f6c71a83b67ab0f0f9d629d2 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/rasp_design_added_blocks/vmm_offc.sce | 0815737b2ca62a05a4b737e79f7e95e2389a681a | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 104 | sce | vmm_offc.sce | style.fontSize=12;
style.displayedLabel="vmm_offc";
pal1_1=xcosPalAddBlock(pal1_1,"vmm_offc",[],style);
|
3296c476bb0518ca83b8f933d78aeb86a5fccfed | 449d555969bfd7befe906877abab098c6e63a0e8 | /2594/CH1/EX1.4/Ex1_4.sce | 67bb413de79386d623082b37e86b2b556a04cd19 | [] | 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 | 415 | sce | Ex1_4.sce | clc
a=1
disp("a= "+string(a)) //initializing value of lattice constant(a)=1.
r=a/2
disp("r=a/2 = "+string(r)) //initializing value of radius of atom for simple cubic.
v=((4*%pi*(r^3))/3)
disp("Volume of one atom ,v=((4*%pi*(r^3))/3) = "+string(v)) //calcuation.
V=a^3
disp("Total Volume of the cube,V=a^3 = "+string(V)) //calcuation.
Fp=(v*100/V)
disp("Fp(S.C)=(v*100/V) = "+string(Fp)+"%")//calculation
|
19c9028ccd77b30ad69d576fbc21a380b3f72ccc | 449d555969bfd7befe906877abab098c6e63a0e8 | /2219/CH13/EX13.1/Ex13_1.sce | d9d1b03b12f1223428184fe738c28c83e9ae964d | [] | 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 | 730 | sce | Ex13_1.sce | //Chapter 13 example 1
//------------------------------------------------------------------------------
clc;
clear;
// Given data
f = 6; // microwave terrestrial comm link oper. freq in Ghz
D = 50; // single hop path length in miles
// mid way of path length
D1 = 25;
D2 = 25;
N = 3; // N value for third fresnal zone
// calculations
F1 = 72.2*((D1*D2)/(D*f))^0.5; // first fresnel zone
F3 = F1*sqrt(N); // Third fresnal zone
// Output
mprintf('First Fresnel zone distance = %3.1f feet\n Third Fresnel zone distance = %3.1f feet\n',F1,F3);
//------------------------------------------------------------------------------
|
fb0d385d7ab027a12754cf12c63b885d24400e16 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH4/EX3.1/EX3_1.sce | 89178d9188e93afc99e7672efa9839724969febc | [] | 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 | 356 | sce | EX3_1.sce | // Grob's Basic Electronics 11e
// Chapter No. 03
// Example No. 3_1
clc; clear;
// A heater with the resistance of 8 Ohms is connected across the 120-V power line. How much is current I?
// Given data
V = 120; // Voltage of Power line=120 Volts
R = 8; // Heater Resistance=8 Ohms
I = V/R;
disp (I,'The Current I in Amps')
|
4c2dcb04378c4d916f3ccefdfdc440761692a485 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1697/CH1/EX1.4/Exa1_4.sce | d30a601be2380d684f64b911e2ad9b0a5c9e6983 | [] | 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 | 187 | sce | Exa1_4.sce | //Exa 1.4
clc;
clear;
close;
//given data :
W=625;//in KW
r=30;//in Km
Erms=sqrt(90*W*1000)/(r*1000);//in V/m
disp(Erms*1000,"Strength of Electric field at 30Km away in mV/m : "); |
72b7a6605373383175d4ada3bb0161aaa87308bf | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set9/s_Engineering_Physics_K._V._Kumar_3537.zip/Engineering_Physics_K._V._Kumar_3537/CH7/EX7.22/Ex7_22.sce | 9d5488f4bbe1943338d25e2ea0c733ad020bb706 | [] | 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 | 220 | sce | Ex7_22.sce | errcatch(-1,"stop");mode(2);//Example 7_22
;
;
//To calculate the numerical aperature
theta=26.80 //units in degrees
NA=sin(theta*%pi/180)
printf("The numerical aperature is %.4f",NA)
exit();
|
ba766974670fb9173a0b4c56fbbe3984b11c9655 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3532/CH1/EX1.6.1/Ex1_6.sce | 6d4966f453827fb2b60af335b02d7048b02194bc | [] | 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 | 653 | sce | Ex1_6.sce | clc
clear
mprintf('Mechanical vibrations by G.K.Grover\n Example 1.6.1\n')
//given data
//case 1
//a complex number is represented as Z=X+j*Y where j is imaginary
//V=3 +j*7
x1=3
y1=7
//calculations
r1=sqrt(x1^2+y1^2)
if (y1/x1)>0 then theta1=atan(y1/x1)
else theta1=%pi-atan(abs(y1/x1))
end
theta1=atan(y1/x1)
//case 2
//V=-5 +j*4
x2=-5
y2=4
//calculations
r2=sqrt(x2^2+y2^2)
if (y2/x2)>0 then theta1=atan(y2/x2)
else theta2=%pi-atan(abs(y2/x2))
end
//output
mprintf('case(i) V=3+j*7 is represented as V=%3.3f*e^(j*(%3.3f))\ncase(ii) V=-5+j*4 is represented as V=%3.3f*e^(j*(%3.3f))',r1,theta1,r2,theta2)
|
782c42dd9a5ea7c930bbfba6ecdf32bcf87556f9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH2/EX2.20/2_20.sce | b2d6addcd3c39daf8acea0fea05f5316284abe38 | [] | 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 | 497 | sce | 2_20.sce | //Chapter 2, Problem 20,
clc;
V=240; //Supply voltage
P1=1000; //Power rating of Electric toaster
P2=3000; //Power rating of Electric fire
//Calculating fuse current for electric toaster
I1=P1/V;
//Calculating fuse current for electric fire
I2=P2/V;
I1=I1+1;
I2=I2+1;
printf("(i) Current in fuse for Electric toaster = %d A\n\n\n",I1);
printf("(ii) Current in fuse for Electric fire = %d A\n\n\n",I2);
|
81f60f450130db664338c37ae44594dd8ede0c1a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1784/CH37/EX37.6/example6.sce | 1794036ceac57bfba8787451ca490a258bdd8996 | [] | 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 | 518 | sce | example6.sce | //chapter 37
//example6
clc
//given
n=10*10^2 //turns/m
i=2 //in amp
B=1.0 //in wb/m
u0=4*%pi*10^-7 //in wb/amp-m
//(A)
H=n*i
disp(H,"(A) Magnetic field strength in amp/m is")
//(B)
M=(B-u0*H)/u0
disp("(B) Magnetisation is Zero when core is removed")
disp(M," Magnetisation when th ecore is replaced in amp/m")
//(C)
disp("(C) Effective magnetizing current i=i(M,0)=M*(2*%pi*r0/N0)=M/n")
i=M/n
disp(i," Effective magnetizing current in amp is")
//D
Km=B/(u0*H)
disp(Km,"(D) Permeability ")
|
e1d7854a2c342f9450c545ea7faec35a47b6da77 | 449d555969bfd7befe906877abab098c6e63a0e8 | /27/CH5/EX5.2.2/Example_5_2_2.sce | 24574dd95bd925a218a5976414d7ac92986f41f9 | [] | 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 | 299 | sce | Example_5_2_2.sce | clear;
clc;
close;
set(gca(),"auto_clear","off") //hold on
for x=-20:0.5:20
y1 = x;
y=0;
x1=0;
//h1=acosh(x);
plot2d(x,y1,style=-2)
plot2d(x,y,style=-4)
plot2d(x1,x,style=-4)
end
for x=-5:0.5:5
y2=-4*x;
plot2d(x,y2,style=-2)
end
|
7401bd579a5e7865b144758f3fc4f17b6055f6cd | 027ab3ee9ca52dffe8658db7b784a6e724959f64 | /Controle/01-introducao/01-circuitoRC_1ordem_MA.sce | d691109fbe9b34ae40b959f3ef86182afcef0812 | [
"MIT"
] | permissive | davidolivaa/ufabc-ieee-orion-adcs | 17c5671fd1dedc4059b6aa4562874f504ac1ccad | 64a64fb3f69cfb95f56b86ee8fcb66d56e66c7ea | refs/heads/main | 2023-08-15T05:09:53.420505 | 2021-09-12T19:40:16 | 2021-09-12T19:40:16 | 369,026,218 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,222 | sce | 01-circuitoRC_1ordem_MA.sce | //circuito RC em malha aberta
//valores do resistor e capacitor
R = 1;
C = 1;
//funçao poly cria polinomios a partir de 3 parametros
numerador = poly([1], 's', 'c')
denominador = poly([1 R*C], 's', 'c')
//funçao syslin vai criar a funçao de transferencia
Hma = syslin('c', numerador, denominador)
disp('FT malha aberta', Hma)
// tempos criados com a funçao linspace que cria vetores, esses tempos serao usados como parametros para encontrar a resposta ao degrau
t = linspace(0, 10, 1e3) // resposta ao degrau
t1 = linspace(-2, 10, 1e3) // degrau unitario
y_degrau = [0*t1(t1<=0)t1(t1>0)./t1(t1>0)] //cria o grafico para o degrau, 0 quando t1 é menor que 0 e t1 quando é maior
y_sistema = csim('step', t, Hma) // funçao que calcula a resposta ao degrau
scf(1); clf(1); //comando que faz os dois graficos ficarem na mesma figura
plot(t1, y_degrau, 'r-', 'LineWidth', 3)
plot(t, y_sistema, 'b-', 'LineWidth', 3)
title "Circuito RC em malha aberta" fontsize 5
xlabel "$tempo (s)$" fontsize 5
ylabel "$V \ (V)$" fontsize 5
L=legend(['degrau unitario', 'resposta ao degrau'], 'font_size', 4, 4)
L.font_size=4
set(gca(), 'font_size', 5)
set(gca(), 'grid', [1 1])
set(gca(), 'data_bounds', [-0.01 -0.01; 10 1.1])
|
35fdd84eb905327a99d8435c114dcba6e33e61f5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /680/CH9/EX9.08/9_08.sce | f450653def88f60e1677cac8c4749a3c757bd50f | [] | 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 | 354 | sce | 9_08.sce | //Problem 9.08:
//initializing the variables:
Z = 10000; // in lb/h
x = 0.1;
y = 0.75;
Ts = 75;// in deg C
//calculation:
X = Z*x/y
Y = Z - X
//from Fig. 9.4:
Hz = 81 // in Btu/lb
Hx = 395 // in Btu/lb
Hy = 1150 // in Btu/lb
Q = Hy*Y + Hx*X - Hz*Z
printf("\n\nResult\n\n")
printf("\n the evaporator heat required, Q is %.0f Btu/h",Q) |
2ad895fab335167778708641fed7c974f1515d44 | 449d555969bfd7befe906877abab098c6e63a0e8 | /137/CH12/EX12.3/prob_12_3.sce | 6c1266c35b6465fadd01aeedf33563765ea51b71 | [] | 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 | 229 | sce | prob_12_3.sce | //page 547
//problem 12.3
// for a gaussian m(t),mp will be assumed as 36m
clc;
Sg=3;//assumed
Mbar=(Sg^2);
MP=((3*Sg)^2);
B=0.2;//ASSUMED
gma=0.4;//assumed
SNR=3*B^2*(Mbar/MP)*gma;
disp(SNR,'SIGNAL TO NOISE RATIO IS'); |
78882e2af1edb872522edad8cd95679741784831 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4.1/Unix-Windows/scilab-2.4.1/macros/metanet/node_number.sci | d20b0c9d2974b23004d72446ec1f1b0b6b824155 | [
"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 | 112 | sci | node_number.sci | function n=node_number(g)
// Copyright INRIA
[lhs,rhs]=argn(0)
if rhs<>1 then error(39), end
n=g('node_number')
|
e42df8b33b111101ac8761c36a49df6f6ae163de | 449d555969bfd7befe906877abab098c6e63a0e8 | /3428/CH17/EX10.17.15/Ex10_17_15.sce | 6f04be0cb469785ae4e67975576bba2a331937ba | [] | 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 | 354 | sce | Ex10_17_15.sce | //Section-10,Example-1,Page no.-CT.50
//To calculate change in enthalpy(dl_H) for the process.
clc;
dl_G1=-86 //dl_G at 298K
dl_G2=-84 //dl_G at 308K
T_2=308
T_1=298
T=303
P=(dl_G2-dl_G1)/(T_2-T_1) //P=(dl_G/dl_T) in kJK^-1
dl_G3=(dl_G1-dl_G2)/2
dl_G=-85
dl_H=dl_G-(T*P)
disp(dl_H,'Enthalpy change in kJ')
|
cd70cc689dabbc582c3fde9fd86e03deb5c52896 | 449d555969bfd7befe906877abab098c6e63a0e8 | /692/CH6/EX6.19/P6_19.sce | a8659aa17d01d856d7c5b81c3fc92904e6a59b9b | [] | 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 | 180 | sce | P6_19.sce | //EXAMPLE 6.19
//Inverse Z-transform using Long division method
clc;
clear;
z=%z;
Hnum=z^2 + 2*z;
Hden=z^2 + 0.4*z -0.12;
hn=ldiv(Hnum,Hden,20);
disp(hn,'The function is, hn = ');
|
e59a452d320c83e19b133e4c9d10465e60d5693b | 4e9df66700bcf9688afe22df0009cdf4a17bc61f | /Scilab_Lab/scimage/ch04/energy.sci | 9c47587798f7528147cbbdc7b590d7a92ddf57e8 | [] | no_license | vmebus/workspace | e18947a1f967e6a3a7dfbc5cce6f92380d8637fc | f251b8a8e6cec30a77c7ef7b4103c5ee6e6d1393 | refs/heads/master | 2021-01-09T21:53:45.183564 | 2015-10-03T06:42:23 | 2015-10-03T06:42:23 | 36,120,248 | 0 | 0 | null | null | null | null | BIG5 | Scilab | false | false | 787 | sci | energy.sci | //函式energy.m: 能量集中//
function rec_error=energy(image,type,N) //type :轉換方式(DCT or DFT)
//type = 1: DCT,type=2: DFT。//
rec_error=zeros(1,N);
d_image=double(image)/255; //將原影像的格式轉換為double格式
if type==1 //作DCT轉換
coef_all=dct2(d_image);
else
coef_all=fft2(d_image); //作DFT轉換
end
for n=1:N
coef_part=zeros(N,N);
coef_part(1:n,1:n)=coef_all(1:n,1:n);
if type==1
rec_image= idct2(coef_part); //作DCT反轉換
else
rec_image=real(ifft2(coef_part)); //作DFT反轉換
end
//求誤差量//
diff=d_image-rec_image;
rec_error(n)=sum(sum(diff.^2)); //存放誤差量的資料
end
|
27ba9c81d089a07b80bdbba7debb97013929fa78 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH2/EX2.94/EX2_94.sce | 7ea71a652dccd26381f09329421614f0bcf7cfff | [] | 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 | 283 | sce | EX2_94.sce | //EXAMPLE 2.94 PG NO-139-140
L=0.6; //LENGTH
a=20*10^-4; //AREA
MU=(4*%pi*10^-7);
R=L/(MU*a);
N1=1500;
N2=500;
i=250;
M=(N1*N2)/R;
e=M*(i);
disp('R = '+string(R)+' ');
disp('mutual induction is = '+string(M)+' H');
disp('E.M.F INDUCE is = '+string(e)+' V');
|
b8c9ac02fb3125cc8d6a4acda48cf3700fbd7807 | 09fb666c0701b49ab031e9c772024f96f6ed1c7e | /Lab 3/Laboratorio 3.sci | bb10e7ed1611f51fe183df9028555bc5459bfc0a | [] | no_license | Alejandro287/Numerica_Methods | ccbf8fa032809f6f6398a0f8100a268a750d8491 | 968f6cf10b651ff1049855a677753e6b2a44ca26 | refs/heads/master | 2020-04-02T02:45:35.586981 | 2018-10-20T16:38:01 | 2018-10-20T16:38:01 | 153,926,195 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,917 | sci | Laboratorio 3.sci | //Descripción: función que permite realizar la interpolación mediante
// el método de interpolación de Newton.
//
//Input: “X” el vector de las abscisas de los nodos.
//Input: “Y” el vector de las ordenadas de los nodos.
//Input: “x” el valor a interpolar o extrapolar, respectivamente.
//Output: “fx” el valor de la interpolación calculada mediante el
// método de interpolación de Newton para el valor de “x”.
function fx = UN_Inter_Newton(X,Y,x)
n=length(X)-1;
A=zeros(n+1,n+1);
A(:,1)=Y';
for k=2:n+1
for J=k:n+1
A(J,k)=[A(J,k-1)-A(J-1,k-1)]/[X(J)-X(J-k+1)];
end
end
//disp(A);
polinomio=A(1,1);
N=A(1,1);
V=1;
for i=1:n
V=V*(x-X(i));
polinomio=polinomio+V*A(i+1,i+1);
N=N+A(i+1,i+1)*poly(X(1:(i)),"x");
end
//disp(N);
//printf('el valor interpolado es %.20f\n',polinomio);
fx=polinomio;
endfunction
//Descripción: función que permite realizar la interpolación mediante
// el método de interpolación de Lagrange.
//
//Input: “X” el vector de las abscisas de los nodos.
//Input: “Y” el vector de las ordenadas de los nodos.
//Input: “x” el valor a interpolar o extrapolar, respectivamente.
//Output: “fx” el valor de la interpolación calculada mediante el
// método de interpolación de Lagrange para el valor de “x”.
function fx = UN_Inter_Lagrange(X,Y,x)
fx = 0;
N=0;
n = length(X);
V = poly([0, 1], "x","coeff");
for j = 1 : n
z = 1;
M = 1;
for i = 1 : n
if i~=j
M = M * [(V-X(i))/(X(j)-X(i))];
z = z * (x-X(i))/(X(j)-X(i));
end
end
//disp(M);
fx = fx + z*Y(j);
N=N+M*Y(j);
end
//disp(N);
//printf('el valor interpolado es %.20f\n',fx);
endfunction
|
b20f00e21de7dc70022089d57a169cbe57773d14 | 6f42ce02216774066d077c6db628f9df34bc527f | /functions/test script/ksm_source_donor.tst | ee3fe2575edf69eb8f2cc9269f7da40b79595ff9 | [] | no_license | phively/nu-plsql | 2d0181fb9eea1e1118369e47bb4ac7ab3f7ec3d9 | 806afe34fe56dfc4fb1d7237a956df04c8e9ba82 | refs/heads/master | 2023-09-03T23:34:37.122157 | 2023-08-30T20:11:25 | 2023-08-30T20:11:25 | 78,759,887 | 10 | 3 | null | 2023-09-07T17:11:41 | 2017-01-12T15:37:39 | PLSQL | UTF-8 | Scilab | false | false | 680 | tst | ksm_source_donor.tst | PL/SQL Developer Test script 3.0
21
-- Created on 2/7/2017 by PBH634
Declare
-- Local variables here
id varchar2(10);
Type t_receipts Is Table Of varchar2(10);
receipts t_receipts;
Begin
-- Test receipts
receipts := t_receipts('0002370746', '0002371580', '0002370765', '0002370763', '0002373286', '0002371650', '0002373070', '0002372038', '0002373551',
'0002374381', '0002400638', '0002422364');
-- Test loop
For i In 1..receipts.count Loop
id := ksm_pkg.get_gift_source_donor_ksm(receipt => receipts(i), debug => TRUE);
dbms_output.put_line('*KSM primary is: ' || id);
dbms_output.new_line;
End Loop;
End;
0
0
|
1d03e8a6c815dbc3c81790ca299984e032897e53 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH14/EX14.18/example14_18.sce | bcb17394877ef5104d0189c2933b40ff4116bcc6 | [] | 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 | 503 | sce | example14_18.sce | clc
// Given that
w = 2.3 // work function of sodium in eV
h = 6.62e-34 // Planck constant in J-sec
c = 3e8 // speed of light in m/sec
e = 1.6e-19 // charge on an electron in C
// Sample Problem 18 on page no. 14.26
printf("\n # PROBLEM 18 # \n")
printf("Standard formula used \n ")
printf(" E = (h * c)/ lambda \n")
lambda = ((h * c) / w) * (1 / e)
printf("\n Longest wavelength required for photoemission is %f Angstrom",lambda * 1e10)
|
73256d0cb3380bf965294c344e0c418ed9bcea6f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2885/CH4/EX4.9/ex4_9.sce | 351935d22d1a1fef26a0ba5d25bc03445aee92fb | [] | 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 | 727 | sce | ex4_9.sce | //determine dynamic input resistance and dc and ac current gain
clear;
clc;
//soltion
//given
Ib=30*10^-6;//A
Vce=10;//V
Ic=3.6*10^-3;//A //from graph
//Taking points around Vce = 10V from graph
del_Vce=(12.5-7.5);//V
//corresponding change in ic
del_ic=(3.7-3.5)*10^-3;//A
roe=del_Vce/del_ic;
printf("The dynamic output resistance of transistor is %.0f kΩ\n",roe/1000);
//dc current gain
Bo=Ic/Ib;
printf("The dc current gain is %.0f\n",Bo);
//ac current gain
del_ic=(4.7-2.5)*10^-3; //the collector current change is from 3.5mA to 4.7mA as we can see from graph when we change ib from 40mA to 20mA
del_ib=(40-20)*10^-6;
B=del_ic/del_ib;
printf("The ac current gain is %.0f\n",B);
|
0e81c4b5038fc5446cdd379bf03ec8b86e149ed0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1748/CH2/EX2.40/Exa2_40.sce | 4c87b744171021e9be6926196f9359af3e9444d5 | [] | 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 | 606 | sce | Exa2_40.sce | //Exa 2.40
clc;
clear;
close;
//Given data :
format('v',6);
VL=500;//in volt
f=50;//in Hz
P=6;//no. of poles
phase=3;//no. of phase
Nr=975;//in rpm
Ns=120*f/P;//in rpm
S=(Ns-Nr)/Ns;//slip
disp(S,"Slip :");
Pin_stator=40;//in KW
StatorLosses=1;//in KW
Pin_rotor=Pin_stator-StatorLosses;//in KW
RotorCuLosses=S*Pin_rotor;//in KW
disp(RotorCuLosses,"Rotor Cu Losses(in KW) :");
RotorOutput=Pin_rotor-RotorCuLosses;//in KW
OutputHP=RotorOutput/0.735;//in H.P.
disp(OutputHP,"Output Horse Power : ");
Efficiency=RotorOutput/Pin_stator;//unitless
disp(Efficiency*100,"Efficiency(in %) :"); |
a6ffb968a62898b550136ba59b2bbeda17a9675d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1859/CH7/EX7.18/exa_7_18.sce | e3da8cb18ac96df84e59e3e529c7d1ecb17e6c02 | [] | 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 | 358 | sce | exa_7_18.sce | // Exa 7.18
clc;
clear;
close;
// Given data
R2= 1000;// in ohm
R3= 16800;//in ohm
R4= 833;//in ohm
C4= 0.38;// in miu F
C4= C4*10^-6;// in F
f= 50;// in Hz
omega=2*%pi*f;
L1= R2*R3*C4/(1+(omega*C4*R4)^2);// in H
disp(L1,"Unknown inductance in H");
R1= R2*R3*R4*omega^2*C4^2/(1+(omega*C4*R4)^2);// in ohm
disp(R1,"Unknown resistance in ohm")
|
603ec09de01af4833c04c9b8128826308d96201a | 1a00eb132340e145c8a7d8fd0ef79a02b24605a2 | /help/fr_En/ARDUINO_SETUP_help.tst | 01ec5af6a243fff7104de5b3291335861cbf06dd | [] | no_license | manasdas17/Scilab-Arduino-Toolbox | e848d75dc810cb0700df34b1e5c606802631ada4 | 2a6c9d3f9f2e656e1f201cecccd4adfe737175e7 | refs/heads/master | 2018-12-28T15:51:35.378091 | 2015-08-06T07:22:15 | 2015-08-06T07:22:15 | 37,854,821 | 3 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 1,547 | tst | ARDUINO_SETUP_help.tst | \name
ARDUINO_SETUP
\palette
Arduino
\smalldescription
Permet de configuration le port de communication série entre l'arduino et scilab.
\description
Ce bloc doit \bold{obligatoirement} être placé sur le schéma lors de l'utilisation d'autres blocs de la toolbox.
Il permet de définir le port de communication entre la carte Arduino et Xcos.
Le port à utiliser peut être déterminé en lançant l'application Arduino et en vérifiant le com indiqué dans Outils/Port série. Celui-ci peut également être modifié dans le Gestionnaire de périphériques / Ports (options Avancées).
Il n'est pas possible actuellement d'utiliser plusieurs cartes Arduino.
La toolbox n'est utilisable que sous Windows pour l'instant.
\bold{Attention pour utiliser la toolbox Arduino, il est indispensable de charger dans la carte Arduino le programme toolbox_arduino.ino disponible sur le site :} http://www.demosciences.fr
\dialogbox
\image{ARDUINO_SETUP_dialogbox.png}
Le port de communication doit être spécifié (entre 2 et 9 sinon un message d'erreur apparaît).
Le numéro de carte Arduino doit être égal à 1 actuellement (sinon un message d'erreur apparaît)
\example1
L'exemple ci-dessus montre l'utilisation du bloc dans le cas du clignotement de la led 13 de la carte UNO définie sur le port de communication 5. Les blocs utilisent les paramètres par défaut, sauf pour le bloc PULSE de la palette standard dont on spécifie le déphasage à 0.
\image{ARDUINO_SETUP_example.png}
\seealso
TIME_SAMPLE
|
a1000960af0d6609539a5795b07025befd0379f0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2792/CH11/EX11.11/Ex11_11.sce | 05b74da916a5e6682c785435cac44d206937859b | [] | 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,879 | sce | Ex11_11.sce | clc
A= 10^-2
disp("A= "+string(A)+"cm^2") //initializing value of diode area
Na=5*10^16
disp("Na = "+string(Na)+"cm^-3") //initializing value of p side doping
Nd=5*10^17
disp("Nd = "+string(Nd)+"cm^-3") //initializing value of n side doping
Dn = 30
disp("Dn= "+string(Dn)+"cm^2/s")//initializing value of electron diffusion coefficient
Dp = 15
disp("Dp= "+string(Dp)+"cm^2/s")//initializing value of hole diffusion coefficient
Tn = 10^-8
disp("Tn= "+string(Tn)+"s")//inializing value of electron minority carrier lifetime
Tp = 10^-7
disp("Tp= "+string(Tp)+"s")//inializing value of hole minority carrier lifetime
e = 1.6*10^-19
disp("e= "+string(e)+"C")//initializing value of charge of electron
ni = 1.84*10^6
disp("ni = "+string(ni)+"cm^-3") //initializing value of intrinsic carrier concentration in GaAs
kbT = 0.026
disp("kbT = "+string(kbT)+"V/K") //initializing value of kbT at 300K
V = 1
disp("V = "+string(V)+"V") //initializing value of forward bias potential
nQr=.5
disp("nQr = "+string(nQr)) //initializing value of radiative recombination efficiency
Eph = 1.41
disp("Eph= "+string(Eph)+"eV")//initializing value of Energy of each photon
np = ni^2/Na
disp(" np = ni^2/Na= "+string(np)+"cm^-3")//calculation
pn = ni^2/Nd
disp(" pn = ni^2/Nd= "+string(pn)+"cm^-3")//calculation
Ln = sqrt(Dn*Tn)
disp("The electron diffusion length is ,Ln = sqrt(Dn*Tn)= "+string(Ln)+"cm")//calculation
Lp = sqrt(Dp*Tp)
disp("The hole diffusion length is ,Lp = sqrt(Dp*Tp)= "+string(Lp)+"cm")//calculation
In = ((A*e*Dn*np)/Ln)*(exp(V/kbT)-1)
disp("The injected current is ,In = ((A*e*Dn*np)/Ln)*(exp(V/kbT)-1)= "+string(In)+"A")//calculation
Iph = (In*nQr)/e
disp("The photon generated per second is ,Iph = (In*nQr)/e= "+string(Iph)+"s^-1")//calculation
P = Iph*e*Eph
disp("The optical power is ,P = Iph*e*Eph= "+string(P)+"W")//calculation
|
14a574fab8a2b7eb1c7b310124bc9d195b6f5b5b | e806e966b06a53388fb300d89534354b222c2cad | /macros/wiener2.sci | cde19cdd1fce71a4b7cbef92979c3c577a5c44a4 | [] | no_license | gursimarsingh/FOSSEE_Image_Processing_Toolbox | 76c9d524193ade302c48efe11936fe640f4de200 | a6df67e8bcd5159cde27556f4f6a315f8dc2215f | refs/heads/master | 2021-01-22T02:08:45.870957 | 2017-01-15T21:26:17 | 2017-01-15T21:26:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 235 | sci | wiener2.sci | function [outputImg]=wiener2(inputImage,filtsize,sigma)
inputList=mattolist(inputImage);
outputList=opencv_wiener2(inputList,filtsize,sigma);
for i=1:size(outputList)
outputImg(:,:,i)=outputList(i)
end
endfunction
|
1f5d747212cf1af6e2bdf06fb8889519fda29f39 | 449d555969bfd7befe906877abab098c6e63a0e8 | /215/CH6/EX6.18/ex6_18.sce | b137cf6f34a39a46637736851faff1f35318b30a | [] | 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 | 852 | sce | ex6_18.sce | clc
//Example 6.18
//Verification of Reciprocity theorem
I=10
//From figure 6.61
disp('The current divides between the two parallel impedances')
//Let I2 be the current through 4 ohm
I2=(10*5)/(4-%i*4+5)
//Let Vx be the voltage across -i4 ohm capacitive reactance
Vx=I2*(-%i*4)
[Vxmag Vxang]=polar(Vx)
printf("Vx=%3.2f(%3.2f deg)V \n",Vxmag,(Vxang*180)/%pi)
//To verify Reciprocity theorem remove the current source and place it parallel with -i4 ohm capacitive reactance
//From figure 6.62
//Let I1 be the current flowing through resistor of 5 ohm
I1=(10*(-%i*4))/(5+4-%i*4)
//let Vx1 be the deired output voltage across 5 ohm resistor
Vx1=I1*5
[Vx1mag Vx1ang]=polar(Vx1)
printf("Vx1=%3.2f(%3.2f deg)V \n",Vx1mag,(Vx1ang*180)/%pi)
//Comparing the values of Vx and Vx1
disp('Vx=Vx1')
disp('Hence Reciprocity theorem is verified') |
8e78362857c750ae7d946fe203aad684d1a730c5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH14/EX14.11/Example14_11.sce | 22ebce0361a95a0a155ebebcae04096da1b0c48f | [] | 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,213 | sce | Example14_11.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 7: UNDERGROUND CABLES
// EXAMPLE : 7.11 :
// Page number 216-217
clear ; clc ; close ; // Clear the work space and console
// Given data
V = 85.0 // Line Voltage(kV)
g_max = 55.0 // Maximum stress(kV/cm)
// Calculations
V_1 = 0.632*V // Intersheath potential(kV)
d = 0.736*V/g_max // Core diameter(cm)
d_1 = 2*V/g_max // Intersheath diameter(cm)
D = 3.76*V/g_max // Overall diameter(cm)
d_un = 2*V/g_max // Core diameter of ungraded cable(cm)
D_un = 2.718*d_1 // Overall diameter of ungraded cable(cm)
// Results
disp("PART II - EXAMPLE : 7.11 : SOLUTION :-")
printf("\nDiameter of intersheath, d_1 = %.2f cm", d_1)
printf("\nVoltage of intersheath, V_1 = %.2f kV, to neutral", V_1)
printf("\nConductor diameter of graded cable, d = %.2f cm", d)
printf("\nOutside diameter of graded cable, D = %.2f cm", D)
printf("\nConductor diameter of ungraded cable, d = %.2f cm", d_un)
printf("\nOutside diameter of ungraded cable, D = %.2f cm", D_un)
|
4dedfbfc0f3d7e32ef5fb3fcb433cab976109748 | 449d555969bfd7befe906877abab098c6e63a0e8 | /821/CH5/EX5.58/5_58.sce | fa19dad8292fc61942c612b7fc6cfe7915e160d7 | [] | 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 | 831 | sce | 5_58.sce | Kf=1.86;//Kf for water//
m=0.1;//no. of moles of organic mono carboxilic acid//
dTf=Kf*m;//Theoritical change in temperature//
printf('Theoritical change in temperature=dTf=%f',dTf);
dTobs=0.220;//Observed change in temperature//
i=dTobs/dTf;
printf('\nSince dTobs is greater than dTf ionization must have occurred in aqueous solution.\nAn organic monobasic acid RCOOH ionizes as RCOOH = RCOO- + H+.');
a=i-1;//degree of ionization//
printf('\nDegree of ionization=a=%f',a);
printf('\nIf the acid dissolved as such in its molecular form as species dTthr=5.12*0.1=0.512,dTobs=0.265.');
printf('\nThis value is nearly half the expected value,suggesting that the molecule exists as associated molecules in solution.');
i1=0.265/0.512;
a1=2*(1-i1);
printf('\nThe acid is demerized to the extent of a1=96.500000percent.')
|
67c7ffecae6ab042f6bf6b39a34aadb601c1a42a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1319/CH7/EX7.1/7_1.sce | 68b3e0b17c1128de16f60a1a5b33b1635e01925d | [] | 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 | 483 | sce | 7_1.sce | //Power delivered to 3 phase synchronous motor
clc;
clear;
Vl=2300;
Il=8.8;
pf=0.8// Lead Power Factor
theta=acosd(pf)
P=sqrt(3)*Vl*Il; // Power delivered by the pump
I=P/(sqrt(3)*Vl*pf); // Increase in Current
Pr=sqrt(3)*Vl*I*sind(theta); // kVAr supplied
printf('The Power delivered by the pump = %g kW \n',P/1000)
printf('The Rheostat should be decreased such that the ammeter reads %g A \n',I)
printf('The kVAr supplied by the motor = %g kVAr',Pr/1000)
|
e63d38ccdc2d364bf268eaaef601ab942c971f56 | dbf12e570a5d35c9e2f5fe097532dd409c7ca042 | /scilabmini.sce | c0fb8a37b84c6eccceaad74f5ff2f9758a18fbd1 | [] | no_license | itsmanisk/Image-Editor | 3b3b09623c3b4cc6f87ceef64d27ae232aedff82 | ac2fd903e92d3e60dcf8a48adf705eed2f280cff | refs/heads/master | 2021-10-24T22:22:28.089285 | 2019-03-29T12:06:57 | 2019-03-29T12:06:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,090 | sce | scilabmini.sce | // This GUI file is generated by guibuilder version 4.2.1
//////////
f=figure('figure_position',[628,83],'figure_size',[638,504],'auto_resize','on','background',[33],'figure_name','Graphic window number %d','dockable','off','infobar_visible','off','toolbar_visible','off','menubar_visible','off','default_axes','on','visible','off');
//////////
handles.dummy = 0;
handles.Image=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.0171313,0.7443925,0.2214744,0.0659091],'Relief','default','SliderStep',[0.01,0.1],'String','Capture Image !!','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Image','Callback','Capture')
handles.B_image=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.0242693,0.649705,0.2176923,0.0636364],'Relief','default','SliderStep',[0.01,0.1],'String','Browse image !!','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','B_image','Callback','browse')
handles.neg=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.7604502,0.74,0.1958717,0.0509091],'Relief','default','SliderStep',[0.01,0.1],'String','Negative Image','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','neg','Callback','negativeimg')
handles.gr=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.7620579,0.6227273,0.1945338,0.0477273],'Relief','default','SliderStep',[0.01,0.1],'String','Gray Image','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','gr','Callback','gray')
handles.Bw=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.766881,0.5159091,0.191672,0.0409091],'Relief','default','SliderStep',[0.01,0.1],'String','BW Image','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Bw','Callback','BW')
handles.rf=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.766881,0.4136364,0.1897106,0.0454545],'Relief','default','SliderStep',[0.01,0.1],'String','Cartoon Filter1','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','rf','Callback','red')
handles.gf=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.7700965,0.3195455,0.1913183,0.0486364],'Relief','default','SliderStep',[0.01,0.1],'String','Cartoon Filter2','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','gf','Callback','green')
handles.bf=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.7700965,0.2,0.1945338,0.0531818],'Relief','default','SliderStep',[0.01,0.1],'String','Cartoon Filter3','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','bf','Callback','blue')
handles.Hist=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.555339,0.1713646,0.2170381,0.0588062],'Relief','default','SliderStep',[0.01,0.1],'String','Histogram Image','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Hist','Callback','histogram')
handles.thres=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.2755281,0.1676137,0.2227066,0.062557],'Relief','default','SliderStep',[0.01,0.1],'String','Thresold Image','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','thres','Callback','thresolding')
handles.enhance=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.0171313,0.1787638,0.2084306,0.0665292],'Relief','default','SliderStep',[0.01,0.1],'String','Image Enhance','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','enhance','Callback','enhance')
handles.crop=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.0171313,0.2977045,0.1955821,0.0605389],'Relief','default','SliderStep',[0.01,0.1],'String','Crop Image','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','crop','Callback','crop')
handles.blur=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.2769557,0.0963121,0.2227404,0.0657324],'Relief','default','SliderStep',[0.01,0.1],'String','Blur Image','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','blur','Callback','blur')
handles.bit_slice=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.5496286,0.09869,0.2198784,0.0671655],'Relief','default','SliderStep',[0.01,0.1],'String','Edge Detection','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','bit slice','Callback','bitslice')
handles.creators=uicontrol(f,'unit','normalized','BackgroundColor',[0.5,0.5,0.5],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[20],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.2025723,0.8987069,0.5473312,0.0625],'Relief','default','SliderStep',[0.01,0.1],'String','Image Editor','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','creators','Callback','creators')
f.visible = "on";
//////////
// Callbacks are defined as below. Please do not delete the comments as it will be used in coming version
//////////
function Capture
global I;
//Write your callback for Image here
n = camopen(0);
im = camread(n); //get a frame
imshow(im);
tic();
for cnt = 1:80
im = camread(n);
imshow(im);
end
camclose(1);
I=im;
endfunction
function browse
//Write your callback for B_image here
[filename, filepath]=uigetfile("*.*","img");
file_path = filepath+"\"+filename;
global I;
I=imread(file_path);
imshow(I);
endfunction
function negativeimg
//Write your callback for neg here
global I;
im1 = 255 - I;
imshow(im1);
endfunction
function gray
//Write your callback for gr here
global I;
im2=rgb2gray(I);
imshow(im2);
endfunction
function BW
//Write your callback for Bw here
global I;
im3 = im2bw(I,0.5);
imshow(im3);
endfunction
function red
//Write your callback for rf here
global I;
filter = fspecial('sobel');
imf = filter2(I,filter);
imshow(imf)
endfunction
function green
//Write your callback for gf here
global I;
filter = fspecial('sobel');
imf = imfilter(I, filter);
imshow(imf);
endfunction
function blue
//Write your callback for bf here
global I;
filter = fspecial('sobel');
imf = filter2(I, filter);
imshow(imf);
endfunction
function histogram
//Write your callback for Hist here
global I;
t=rgb2gray(I);
J = imhistequal(t);
imshow(J);
endfunction
function thresolding
//Write your callback for thres here
global I;
th = imgraythresh(I);
S2 = im2bw(I,th);
figure(); imshow(S2);
endfunction
function enhance
//Write your callback for enhance here
global I;
J = imrotate(I,45);
figure(); imshow(J);
endfunction
function crop
//Write your callback for crop here
global I;
I2 = imcropm(I);
imshow(I2);
endfunction
function blur
//Write your callback for blur here
global I;
A = imnoise(I,'Gaussian',0.04,0.003);
figure,imshow(A);
I7 = double(A);
sigma = 1.76; %Standard Deviation
sz = 3; %Box size
[x,y]=meshgrid(-sz:sz,-sz:sz);
M = size(x,1)-1;
N = size(y,1)-1;
%Gaussian
Exp_comp = -(x.^2+y.^2)/(2*sigma*sigma);
Kernel= exp(Exp_comp)/(2*pi*sigma*sigma);
Output=zeros(size(I7));
I7 = padarray(I7,[sz sz]);
%Convolution
for i = 1:size(I7,1)-M
for j =1:size(I7,2)-N
Temp = I7(i:i+M,j:j+M).*Kernel;
Output(i,j)=sum(Temp(:));
end
end
Output = uint8(Output);
figure,imshow(Output);
endfunction
function bitslice
//Write your callback for bit slice here
global I;
im = rgb2gray(I);
E = edge(im, 'sobel');
imshow(E);
E = edge(im, 'canny', [0.06, 0.2]);
imshow(E);
E = edge(im, 'prewitt');
imshow(mat2gray(E));
endfunction
function creators
//Write your callback for obj15 here
disp("Manish ");
endfunction
|
e97c2777411fe9e9552d10d01f8d385a678f20d0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3825/CH5/EX5.10/Ex5_10.sce | 37ea5997860bfdbaa675bd2d2be313dfa9deb5d1 | [] | 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 | 284 | sce | Ex5_10.sce | clc
P1=100*10^3
v1=1
v2=1/16
n=1.25
T1=300
P2=P1*((v1/v2)^n)
mprintf("P2=%fMPa\n",P2/(10^6))
T2=(T1*P2*v2)/(P1*v1)
mprintf("T2=%fK\n",T2)
R=8.314
W=(R*(T1-T2))/(n-1)
mprintf("W=%fkJ/mol\n",W/1000)
gama=1.4
q=((R*(T2-T1))/(gama-1))+W
mprintf("q=%fkJ/mol",q/1000)
|
08cda5e0761432fcc4aa5875b19896f42c0156fc | 449d555969bfd7befe906877abab098c6e63a0e8 | /3792/CH4/EX4.4/Ex4_4.sce | 409498d7325939eedf5bdaafd1b096be8ff2bde6 | [] | 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 | 624 | sce | Ex4_4.sce | // SAMPLE PROBLEM 4/4
clc;clear;funcprot(0);
// Given data
m=20;// kg
u_z=300;// m/s
g=9.81;// m/s^2
m_a=5;// kg
m_b=9;// kg
m_c=6;// kg
theta=45;// degree
s=4000;// m
x=3;// m
y=4;// m
r=5;// m
h_a=500;// m
// Calculation
t=(u_z*(y/r))/g;// The time required for the shell to reach P in s
h=u_z^2/(2*g);// The verticl rise in m
v_a=sqrt(2*g*h_a);// m/s
v_b=s/t;// m/s
v_c=[(m*u_z*(x/r))-(m_b*v_b*cosd(theta)),(m_b*v_b*sind(theta)),(m_a*v_a)]/6;// m/s
v_c=sqrt((v_c(1))^2+(v_c(2))^2+(v_c(3))^2);// m/s
printf("\nThe velocity which fragment C has immediately after the explosion,v_C=%3.0f m/s",v_c);
|
3d491b98fd545ac22ecc522d3ca784ef7a4e5c82 | 95a91e0c642afba8090e47bd70e3efb36da36e43 | /UP.eps/old_files/proba_q.7den.sce | dcbf9fc43bd22e5a94c6fe2db0b2112672525a19 | [] | no_license | Varvara08/myrepo | f4f2d4e0da09b9eea225deab49d3dfd49d861266 | 588458d7d92407761cc9cd7cc3273e70aa9f84b0 | refs/heads/master | 2021-01-20T17:20:40.176769 | 2016-08-17T13:10:46 | 2016-08-18T10:38:17 | 63,784,698 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 10,095 | sce | proba_q.7den.sce | clear;
lines(0);
np=100;
q=7;
//rang=190/300
msig = 1 // номер строки, отвечающая нужной нам плотности прививки, с которой мы будем считывать
msig1 =2
msig2 =3
msig3 =4
msig4 =5
msig5 =6
msig6 =7
msig7 =8
msig8 =9
msig9 =10
msig10 =11
msig11 =12
msig12 =13
msig13 =14
msig14 =15
msig15 =16
msig16 =17
msig17 =18
msig18 =19
msig19 =20
msig20 =21
msig21 =22
msig22 =23
msig23 =24
msig24 =25
msig25 =26
msig26 =27
msig27 =28
msig28 =29
msig29 =30
msig30 =31
msig31 =32
msig32 =33
msig33 =34
msig34 =35
msig35 =36
msig36 =37
msig37 =38
msig38 =39
msig39 =40
msig40 =41
msig41 =42
msig42 =43
msig43 =44
msig44 =45
msig45 =46
msig46 =47
msig47 =48
msig48 =49
msig49 =50
msig50 =51
msig51 =52
msig52 =53
msig53 =54
msig54 =55
msig55 =56
msig56 =57
msig57 =58
msig58 =59
msig59 =60
msig60 =61
msig61 =62
msig62 =63
msig63 =64
msig64 =65
msig65 =66
msig66 =67
msig67 =68
msig68 =69
msig69 =70
msig70 =71
msig71 =72
msig72 =73
msig73 =74
msig74 =75
msig75 =76
msig76 =77
msig77 =78
msig78 =79
msig79 =80
msig80 =81
msig81 =82
msig82 =83
msig83 =84
msig84 =85
msig85 =86
msig86 =87
msig87 =88
msig88 =89
msig89 =90
msig90 =91
msig91 =92
msig92 =93
msig93 =94
msig94 =95
msig95 =96
msig96 =97
msig97 =98
msig98 =99
msig99 =100
msig100 =101
msig101 =102
msig102 =103
msig103 =104
msig104 =105
msig105 =106
msig106 =107
msig107 =108
msig108 =109
msig109 =110
msig110 =111
msig111 =112
msig112 =113
msig113 =114
msig114 =115
msig115 =116
msig116 =117
msig117 =118
msig118 =119
msig119 =120
msig120 =121
msig121 =122
msig122 =123
msig123 =124
msig124 =125
msig125 =126
msig126 =127
msig127 =128
msig128 =129
msig129 =130
msig130 =131
msig131 =132
msig132 =133
msig133 =134
msig134 =135
msig135 =136
msig136 =137
msig137 =138
msig138 =139
msig139 =140
msig140 =141
msig141 =142
msig142 =143
msig143 =144
msig144 =145
msig145 =146
msig146 =147
msig147 =148
msig148 =149
msig149 =150
msig150 =151
msig151 =152
msig152 =153
msig153 =154
msig154 =155
msig155 =156
msig156 =157
msig157 =158
msig158 =159
msig159 =160
msig160 =161
msig161 =162
msig162 =163
msig163 =164
msig164 =165
msig165 =166
msig166 =167
msig167 =168
msig168 =169
msig169 =170
msig170 =171
msig171 =172
msig172 =173
msig173 =174
msig174 =175
msig175 =176
msig176 =177
msig177 =178
msig178 =179
msig179 =180
msig180 =181
msig181 =182
msig182 =183
msig183 =184
msig184 =185
msig185 =186
msig186 =187
msig187 =188
msig188 =189
msig189 =190
msig190 =191
msig191 =192
msig192 =193
msig193 =194
msig194 =195
msig195 =196
msig196 =197
msig197 =198
msig198 =199
msig199 =200
msig200 =201
msig201 =202
msig202 =203
msig203 =204
msig204 =205
msig205 =206
msig206 =207
msig207 =208
msig208 =209
msig209 =210
msig210 =211
msig211 =212
msig212 =213
msig213 =214
msig214 =215
msig215 =216
msig216 =217
msig217 =218
msig218 =219
msig219 =220
msig220 =221
msig221 =222
msig222 =223
msig223 =224
msig224 =225
msig225 =226
msig226 =227
msig227 =228
msig228 =229
msig229 =230
msig230 =231
msig231 =232
msig232 =233
msig233 =234
msig234 =235
msig235 =236
msig236 =237
msig237 =238
msig238 =239
msig239 =240
msig240 =241
msig241 =242
msig242 =243
msig243 =244
msig244 =245
msig245 =246
msig246 =247
msig247 =248
msig248 =249
msig249 =250
j=1;
i=1;
w=190
for w=190:10:300
s0 = '../n=' + string(np) + '/q=' + string(q) + 'den' +'/m=' + string(w) + '/zav_q/' ;
s = s0 + 'zav_q=' + string(q) + '_' +'m='+ string(w) +'_np=' + string(np) + '.dat';
s1 = '../n=' + string(np) + '/Result/';
a=fscanfMat(s);
[m,n]=size(a);
k=1
j=j+1;
b(1,j)=w; // w
b(2,j)=a(msig,10)
b(3,j)=a(msig1,10)
b(4,j)=a(msig2,10)
b(5,j)=a(msig3,10)
b(6,j)=a(msig4,10)
b(7,j)=a(msig5,10)
b(8,j)=a(msig6,10)
b(9,j)=a(msig7,10)
b(10,j)=a(msig8,10)
b(11,j)=a(msig9,10)
b(12,j)=a(msig10,10)
b(13,j)=a(msig11,10)
b(14,j)=a(msig12,10)
b(15,j)=a(msig13,10)
b(16,j)=a(msig14,10)
b(17,j)=a(msig15,10)
b(18,j)=a(msig16,10)
b(19,j)=a(msig17,10)
b(20,j)=a(msig18,10)
b(21,j)=a(msig19,10)
b(22,j)=a(msig20,10)
b(23,j)=a(msig21,10)
b(24,j)=a(msig22,10)
b(25,j)=a(msig23,10)
b(26,j)=a(msig24,10)
b(27,j)=a(msig25,10)
b(28,j)=a(msig26,10)
b(29,j)=a(msig27,10)
b(30,j)=a(msig28,10)
b(31,j)=a(msig29,10)
b(32,j)=a(msig30,10)
b(33,j)=a(msig31,10)
b(34,j)=a(msig32,10)
b(35,j)=a(msig33,10)
b(36,j)=a(msig34,10)
b(37,j)=a(msig35,10)
b(38,j)=a(msig36,10)
b(39,j)=a(msig37,10)
b(40,j)=a(msig38,10)
b(41,j)=a(msig39,10)
b(42,j)=a(msig40,10)
b(43,j)=a(msig41,10)
b(44,j)=a(msig42,10)
b(45,j)=a(msig43,10)
b(46,j)=a(msig44,10)
b(47,j)=a(msig45,10)
b(48,j)=a(msig46,10)
b(49,j)=a(msig47,10)
b(50,j)=a(msig48,10)
b(51,j)=a(msig49,10)
b(52,j)=a(msig50,10)
b(53,j)=a(msig51,10)
b(54,j)=a(msig52,10)
b(55,j)=a(msig53,10)
b(56,j)=a(msig54,10)
b(57,j)=a(msig55,10)
b(58,j)=a(msig56,10)
b(59,j)=a(msig57,10)
b(60,j)=a(msig58,10)
b(61,j)=a(msig59,10)
b(62,j)=a(msig60,10)
b(63,j)=a(msig61,10)
b(64,j)=a(msig62,10)
b(65,j)=a(msig63,10)
b(66,j)=a(msig64,10)
b(67,j)=a(msig65,10)
b(68,j)=a(msig66,10)
b(69,j)=a(msig67,10)
b(70,j)=a(msig68,10)
b(71,j)=a(msig69,10)
b(72,j)=a(msig70,10)
b(73,j)=a(msig71,10)
b(74,j)=a(msig72,10)
b(75,j)=a(msig73,10)
b(76,j)=a(msig74,10)
b(77,j)=a(msig75,10)
b(78,j)=a(msig76,10)
b(79,j)=a(msig77,10)
b(80,j)=a(msig78,10)
b(81,j)=a(msig79,10)
b(82,j)=a(msig80,10)
b(83,j)=a(msig81,10)
b(84,j)=a(msig82,10)
b(85,j)=a(msig83,10)
b(86,j)=a(msig84,10)
b(87,j)=a(msig85,10)
b(88,j)=a(msig86,10)
b(89,j)=a(msig87,10)
b(90,j)=a(msig88,10)
b(91,j)=a(msig89,10)
b(92,j)=a(msig90,10)
b(93,j)=a(msig91,10)
b(94,j)=a(msig92,10)
b(95,j)=a(msig93,10)
b(96,j)=a(msig94,10)
b(97,j)=a(msig95,10)
b(98,j)=a(msig96,10)
b(99,j)=a(msig97,10)
b(100,j)=a(msig98,10)
b(101,j)=a(msig99,10)
b(102,j)=a(msig100,10)
b(103,j)=a(msig101,10)
b(104,j)=a(msig102,10)
b(105,j)=a(msig103,10)
b(106,j)=a(msig104,10)
b(107,j)=a(msig105,10)
b(108,j)=a(msig106,10)
b(109,j)=a(msig107,10)
b(110,j)=a(msig108,10)
b(111,j)=a(msig109,10)
b(112,j)=a(msig110,10)
b(113,j)=a(msig111,10)
b(114,j)=a(msig112,10)
b(115,j)=a(msig113,10)
b(116,j)=a(msig114,10)
b(117,j)=a(msig115,10)
b(118,j)=a(msig116,10)
b(119,j)=a(msig117,10)
b(120,j)=a(msig118,10)
b(121,j)=a(msig119,10)
b(122,j)=a(msig120,10)
b(123,j)=a(msig121,10)
b(124,j)=a(msig122,10)
b(125,j)=a(msig123,10)
b(126,j)=a(msig124,10)
b(127,j)=a(msig125,10)
b(128,j)=a(msig126,10)
b(129,j)=a(msig127,10)
b(130,j)=a(msig128,10)
b(131,j)=a(msig129,10)
b(132,j)=a(msig130,10)
b(133,j)=a(msig131,10)
b(134,j)=a(msig132,10)
b(135,j)=a(msig133,10)
b(136,j)=a(msig134,10)
b(137,j)=a(msig135,10)
b(138,j)=a(msig136,10)
b(139,j)=a(msig137,10)
b(140,j)=a(msig138,10)
b(141,j)=a(msig139,10)
b(142,j)=a(msig140,10)
b(143,j)=a(msig141,10)
b(144,j)=a(msig142,10)
b(145,j)=a(msig143,10)
b(146,j)=a(msig144,10)
b(147,j)=a(msig145,10)
b(148,j)=a(msig146,10)
b(149,j)=a(msig147,10)
b(150,j)=a(msig148,10)
b(151,j)=a(msig149,10)
b(152,j)=a(msig150,10)
b(153,j)=a(msig151,10)
b(154,j)=a(msig152,10)
b(155,j)=a(msig153,10)
b(156,j)=a(msig154,10)
b(157,j)=a(msig155,10)
b(158,j)=a(msig156,10)
b(159,j)=a(msig157,10)
b(160,j)=a(msig158,10)
b(161,j)=a(msig159,10)
b(162,j)=a(msig160,10)
b(163,j)=a(msig161,10)
b(164,j)=a(msig162,10)
b(165,j)=a(msig163,10)
b(166,j)=a(msig164,10)
b(167,j)=a(msig165,10)
b(168,j)=a(msig166,10)
b(169,j)=a(msig167,10)
b(170,j)=a(msig168,10)
b(171,j)=a(msig169,10)
b(172,j)=a(msig170,10)
b(173,j)=a(msig171,10)
b(174,j)=a(msig172,10)
b(175,j)=a(msig173,10)
b(176,j)=a(msig174,10)
b(177,j)=a(msig175,10)
b(178,j)=a(msig176,10)
b(179,j)=a(msig177,10)
b(180,j)=a(msig178,10)
b(181,j)=a(msig179,10)
b(182,j)=a(msig180,10)
b(183,j)=a(msig181,10)
b(184,j)=a(msig182,10)
b(185,j)=a(msig183,10)
b(186,j)=a(msig184,10)
b(187,j)=a(msig185,10)
b(188,j)=a(msig186,10)
b(189,j)=a(msig187,10)
b(190,j)=a(msig188,10)
b(191,j)=a(msig189,10)
b(192,j)=a(msig190,10)
b(193,j)=a(msig191,10)
b(194,j)=a(msig192,10)
b(195,j)=a(msig193,10)
b(196,j)=a(msig194,10)
b(197,j)=a(msig195,10)
b(198,j)=a(msig196,10)
b(199,j)=a(msig197,10)
b(200,j)=a(msig198,10)
b(201,j)=a(msig199,10)
b(202,j)=a(msig200,10)
b(203,j)=a(msig201,10)
b(204,j)=a(msig202,10)
b(205,j)=a(msig203,10)
b(206,j)=a(msig204,10)
b(207,j)=a(msig205,10)
b(208,j)=a(msig206,10)
b(209,j)=a(msig207,10)
b(210,j)=a(msig208,10)
b(211,j)=a(msig209,10)
b(212,j)=a(msig210,10)
b(213,j)=a(msig211,10)
b(214,j)=a(msig212,10)
b(215,j)=a(msig213,10)
b(216,j)=a(msig214,10)
b(217,j)=a(msig215,10)
b(218,j)=a(msig216,10)
b(219,j)=a(msig217,10)
b(220,j)=a(msig218,10)
b(221,j)=a(msig219,10)
b(222,j)=a(msig220,10)
b(223,j)=a(msig221,10)
b(224,j)=a(msig222,10)
b(225,j)=a(msig223,10)
b(226,j)=a(msig224,10)
b(227,j)=a(msig225,10)
b(228,j)=a(msig226,10)
b(229,j)=a(msig227,10)
b(230,j)=a(msig228,10)
b(231,j)=a(msig229,10)
b(232,j)=a(msig230,10)
b(233,j)=a(msig231,10)
b(234,j)=a(msig232,10)
b(235,j)=a(msig233,10)
b(236,j)=a(msig234,10)
b(237,j)=a(msig235,10)
b(238,j)=a(msig236,10)
b(239,j)=a(msig237,10)
b(240,j)=a(msig238,10)
b(241,j)=a(msig239,10)
b(242,j)=a(msig240,10)
b(243,j)=a(msig241,10)
b(244,j)=a(msig242,10)
b(245,j)=a(msig243,10)
b(246,j)=a(msig244,10)
b(247,j)=a(msig245,10)
b(248,j)=a(msig246,10)
b(249,j)=a(msig247,10)
b(250,j)=a(msig248,10)
b(251,j)=a(msig249,10)
// b(1,j)=a(k,10)
// b(j,1)=a(k,1)// sigma
// b(2,j)=a(msig,10); // zeL_av
// b(3,j)=a(k,10)
// b(4,j)=a(k,1)
// b(j,k)=a(k,10)
// end
//end
end
//i=i+1;
sig = msig*0.001; // плотность прививки, соответствующая номеру строки msig
sout = s1 + 'zav_q=' + string(q) + '_np=' + string(np) + '_range=190_300_min_sigma=0.001' + '.dat';
u=file('open',sout,'unknown');
write(u, b, '(f12.6,32(e16.6))');
file('close',u);
|
268e9df39800034bef752f54cc403619e3eca787 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3768/CH12/EX12.1/Ex12_1.sce | 66a17932dfcd0c3083700c46a104901ef8bd05b1 | [] | 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 | 284 | sce | Ex12_1.sce | //Example number 12.1, Page number 263
clc;clear;
close;
//Variable declaration
NA=0.39; //numerical aperture
delta=0.05; //refractive index of cladding
//Calculation
n1=NA/sqrt(2*delta); //refractive index of core
//Result
printf("refractive index of core is %.3f",n1)
|
5195ba1c211d8895c9b262ec786b125e9e062bdf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2375/CH10/EX10.10/ex10_10.sce | d730b1c8af52917a1f1fd61aff8dd54678521f0d | [] | 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 | 415 | sce | ex10_10.sce | // Exa 10.10
clc;
clear;
close;
format('v',6)
// Given data
A = 200;
Beta = 5/100;
Af =A/(1 + (A*Beta));
disp(Af,"The gain of the amplifier with negative feedback is : ")
Dn = 10;// in %
Ddesh_n = Dn/(1+(A*Beta));// in %
disp(Ddesh_n,"The distortion with negative feedback in % is : ");
// Note: In the book, the calculation to find the gain of the amplifier with negative feedback i.e Af is wrong.
|
5f8f5a4539fe0d840cc9491257c7e589f592e0ea | 449d555969bfd7befe906877abab098c6e63a0e8 | /1631/CH2/EX2.31/Ex2_31.sce | f6b65bdb2d79aba7baabd51ac49835b44d559370 | [] | 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 | 880 | sce | Ex2_31.sce | //Caption: Mean,Variance
//Example 2.31
//page no 85
//find i)Mean
// ii)Variance of given function
clc;
clear;
//Mean Value
function X=f(x),
z=3*(1-x)^2,//Marginal Probability Density Function
X=x*z
endfunction
a=0;
b=1;
EX=intg(a,b,f);//Mean value of X
function Y=c(y)
z=3*(1-y)^2,//Marginal Probability Density Function
Y=y*z
endfunction
EY=intg(a,b,c);//Mean value of Y
disp(EX,"i)Mean of X =")
disp(EY," Mean of Y =")
//Variance
function X=g(x),
z=3*(1-x)^2,//Marginal Probability Density Function
X=x^2*z
endfunction
a=0;
b=1;
EX2=intg(a,b,g);
function Y=h(y)
z=3*(1-y)^2,//Marginal Probability Density Function
Y=y^2*z
endfunction
EY2=intg(a,b,h);
vX2=EX2-(EX)^2;//Variance of X
vY2=EY2-(EY)^2;//Variance of Y
disp(vX2,"ii)Variance of X");
disp(vY2," Variance of Y");
|
ab3420a89654666a597c3e53c05b3fc7693b20dd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3856/CH21/EX21.3/Ex21_3.sce | 7313e3d313c74e7a74cfcc53366608f9849bed0a | [] | 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 | 471 | sce | Ex21_3.sce | //Estimate the Diffusion Coeffcient of a spherical molucule
//Example 21.3
clc;
clear;
KB=1.381*10^-23; //Boltzmann's constant in J K^-1
T=300; //Temperature in K
eta=0.00101; //Viscosity of the solvent in N s m^-2
r=1.5*10^-10; //Radius of molucule in m
D=(KB*T)/(6*%pi*eta*r); //Diffusion cofficient of a molucule in m^2 s^-1 (1 J N^-1 m s^-1=1 m^2 s^-1)
printf("Diffusion coeffcient of a spherical molucule = %.1f*10^-9 m^2 s^-1",D*10^9);
|
9d1025b18159c25b252182a3bbc66059543d5802 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1538/CH19/EX19.8/Ex19_8.sce | cac54f308c94c2e6596ef6c9309d8a3d91bcacbd | [] | 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 | 571 | sce | Ex19_8.sce | //example-19.8
//page no-569
//given
//hole density in silicon
ND=10^17 //per cm^3
//intrinsic carrier concentretion
ni=1.5*10^10 //per cm^3
//since ND>>>> ni, so ne=ND
ne=ND
//the holes concentration
nh=(ni)^2/ne //per cm^3
printf ("the hole concentration is %f per cm^3",nh)
//relative location of EF and Ei are found from
//EF-Ei=k*Tlog (ne/ni)
//let us assume for notation
//EF-Ei=EE
//temp
T=300 //K
k=8.614*10^-5 //eV
//so now
EE=k*T*log(ne/ni) //eV
printf ("EF is located at %f eV away from Ei, toeards Ec side as denoted in book",EE)
|
af1bced5988c541e1adb1466003f21deacb204c9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1073/CH3/EX3.36/3_36.sce | 9036ece1c25419f84c785a08d2e900c0e7229bcf | [] | 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,005 | sce | 3_36.sce |
clc;
clear;
//Example 3.36
rho=960 //[kg/m^3]
Beta=0.75*10^-3 //[K^-1]
k=0.68 //[W/m.K]
alpha=1.68*10^-7 //[m^2/s]
v=2.94*10^-7 //[m^2/s]
Cp=4.216 //[kJ/kg.K]
Tw=403 //[K]
T_inf=343 //[K]
dT=Tw-T_inf //[K]
g=9.81 //[m/s^2]
l=0.8 //[m]
W=0.08 //[m]
A=l*W //Area in [m^2]
P=2*(0.8+0.08) //Perimeter in [m]
L=A/P //Characteristic dimension/length,L in [m]
Nra=g*Beta*L^3*dT/(v*alpha)
//(i) for natural convection,heat transfer from top/upper surface heated
Nnu=0.15*(Nra^(1.0/3.0)) //Nusselt number
ht=Nnu*k/L //[W/m^2.K]
ht=2115.3 //Approximation in book,If done manually then answer diff
//(ii)For the bottom/lower surface of the heated plate
Nnu=0.27*(Nra^(1.0/4.0)) //Nusselt number
hb=Nnu*k/L //[W/(m^2.K)]
hb=round(hb)
//Rate of heat input is equal to rate of heat dissipation from the upper and lower surfaces of the plate
Q=(ht+hb)*A*(Tw-T_inf) //[W]
printf("\n Rate of heat input is equal to heat dissipation =%f W",Q);
|
8ac077b52dbf6292cbd43c624e8b2499ba7eef37 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3035/CH10/EX10.2/Ex10_2.sce | a68ca8439da52be9224ee8440ab4359d0539aaf0 | [] | 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,900 | sce | Ex10_2.sce |
// Variable Declaration
P = 75.0 //Power(kW)
cost_plant = 3000.0 //Cost of plant(Rs/kW)
cost_td = 30.0*10**5 //Cost of transmission & distribution(Rs)
interest = 0.15 //Interest,insurance charges(/annum)
depreciation = 0.05 //Depreciation(/annum)
cost_fix_mt = 4.0*10**5 //Fixed maintainance(Rs)
cost_var_mt = 6.0*10**5 //Variable maintainance(Rs)
cost_fuel = 10.0*10**6 //Fuel cost(Rs/annum)
cost_opr = 3.0*10**6 //Operation cost(Rs/annum)
max_demand = 70.0 //Maximum demand(MW)
df = 1.6 //Diversity factor b/w consumers
lf = 0.6 //Annual load factor
dividend = 10**6 //Dividend to shareholders(Rs/annum)
per_L = 0.10 //Total energy loss(% of generated energy)
// Calculation Section
cost = cost_plant*P*1000 //Cost of plant(Rs)
per_value = interest+depreciation //Total interest & depreciation(/annum)
cost_fix_ann = (cost+cost_opr)*per_value+cost_fix_mt+dividend //Total fixed cost(Rs)
cost_var_ann = cost_fuel+cost_opr+cost_var_mt //Total running cost(Rs)
E_gen_ann = max_demand*1000*24*365*lf //Energy generated per annum(kWh)
E_loss = per_L*E_gen_ann //Energy losses(kWh)
E_sold = E_gen_ann - E_loss //Energy sold(kWh)
sum_max_demand = df*max_demand*1000 //Sum of maximum demand of consumers(kW)
charge_max_demand = cost_fix_ann/sum_max_demand //Charge to consumers per kW of max demand per year(Rs)
charge_energy = cost_var_ann/E_sold*100 //Charge for energy(paise per kWh)
// Result Section
printf('Two-part tariff is :')
printf('Rs %.2f per kW of maximum demand per year + %.1f paise per kWh consumed' ,charge_max_demand,charge_energy)
|
36999842ddf5a4249ad123c682362b8ffbd11734 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3860/CH2/EX2.8/Ex2_8.sce | 2615336b336c94a36c9345bb067e9f2976d5f15e | [] | 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 | 540 | sce | Ex2_8.sce | //Example 2.8: Representation of truth table from minterm expression
clc // Clears the console
disp("f(a,b,c) = Summation minterms (1,2,5) + Summation dont cares (0,3)")
disp('implies that minterms 1,2 and 5 are included in the function and that 0 and 3 are dont cares, that is the truth table is as follows:')
disp("a b c | f")
disp("0 0 0 | x")
disp("0 0 1 | 1")
disp("0 1 0 | 1")
disp("0 1 1 | x")
disp("1 0 0 | 0")
disp("1 0 1 | 1")
disp("1 1 0 | 0")
disp("1 1 1 | 0")
|
a16328dbac22f50dd6caa14f17627a36a76a1955 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2339/CH5/EX5.4.1/Ex5_4.sce | 6dedfc8b29530402d7a71634ed6a4733e288f6da | [] | 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 | 672 | sce | Ex5_4.sce | clc
clear
Ma=35500; //kg of steam
Mf=3460;
CV=39500;
Ms=Ma/Mf;
Hfw2=313.9; //in kJ/kg
Hfw1=71.4; //in kJ/kg
Q=Ma*(Hfw2-Hfw1); //Heat added in economizer
H=2915.0; //in kJ/kg
Me=(Ms*(H-Hfw2))/2257;
printf('Equivalent evaporation: %3.2f kg/kg of Oil',Me);
printf('\n');
Eff1=(Ma*100*(H-Hfw2))/(Mf*CV);
printf('Thermal Efficiency of boiler: %3.1f Percent',Eff1);
printf('\n');
Eff2=(Ma*100*(H-Hfw1))/(Mf*CV);
printf('Thermal Efficiency of Boiler plant: %3.1f Percent',Eff2);
printf('\n');
HU=860875000/(Mf*CV);
printf('Heat Utilized by Economizer: %3.1f Percent',HU);
printf('\n');
|
172966630ffcac419710d971033fbb89b01afc44 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1627/CH1/EX1.1/Ex1_1.sce | 0b623817d4327fa7ddc92c3f599931f9e931a29b | [] | 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 | Ex1_1.sce | clc
//initialisation of variables
M=5*14.59//slugs
g=9.8//m/s^2
//CALCULATIONS
W=M*g//N
//RESULTS
printf('The weight of substance is=% f N',W)
|
7d090b059d6ec94f3c0265ff42ce1b9e7bc7aab4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2063/CH1/EX1.25/1_25.sce | a3a3c00ab5c455494b25938a7b101bae3105183c | [] | 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,627 | sce | 1_25.sce | clc
clear
//Input data
r=10.5;//Compression ratio
P3=65;//Maximum pressure in bar
P4=P3;//Pressure at the end of constant volume heat addition in bar
qs=1650;//Heat supplied in kJ/kg
P1=1;//Pressure at the beginning of compression stroke in bar
T1=368;//Temperature at the beginning of compression stroke in K
Cp=1.004;//Specific heat of air at constant pressure in kJ/kg K
Cv=0.717;//Specific heat of air at constant volume in kJ/kg K
//Calculations
r1=Cp/Cv;//Compression ratio
P2=P1*r^r1;//Pressure at the end of compression stroke in bar
T2=T1*r^(r1-1);//Temperature at the end of compression stroke in K
T3=T2*(P3/P2);//Temperature at the end of constant volume heat addition in K
qv=Cv*(T3-T2);//Heat supplied at constant volume in kJ/kg
qp=qs-qv;//Heat supplied at constant pressure in kJ/kg
T4=(qp/Cp)+T3;//Temperature at the end of constant volume heat addition in K
rho=T4/T3;//Cut off ratio
T5=T4*(rho/r)^(r1-1);//Temperature at the end of expansion stroke in K
P5=P4*(rho/r)^r1;//Pressure at the end of expansion stroke in K
q=Cv*(T5-T1);//Heat rejected in kJ/kg
n=((qs-q)/qs)*100;//Efficiency of the cycle in percent
//Output
printf('(a)Pressure at the end of compression stroke is %3.1f bar\n (b)Temperature at the end of compression stroke is %3.1f K\n (c)Temperature at the end of constant volume heat addition is %3.1f K\n (d)Temperature at the end of constant pressure heat addition is %3.2f K\n (e)Temperature at the end of expansion stroke is %3.2f K\n (e)Pressure at the end of expansion stroke is %3.2f bar\n (f)Efficiency of the cycle is %3.2f percent',P2,T2,T3,T4,T5,P5,n)
|
407257ce5b573989c578f223b7493dae00ea250b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2510/CH22/EX22.8/Ex22_8.sce | 59da2015f236f2d21e8d31b3638a9b9a05c7d0f4 | [] | 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 | Ex22_8.sce | //Variable declaration:
Q1 = 10*10**6 //Unit heat duty for process unit 1 (Btu/h)
Q2 = 8*10**6 //Unit heat duty for process unit 2 (Btu/h)
Q3 = 12*10**6 //Unit heat duty for process unit 3 (Btu/h)
Q4 = 20*10**6 //Unit heat duty for process unit 4 (Btu/h)
hv = 751 //Enthalpy of vaporization for pressure 500 psig (Btu/lb)
//Calculation:
mB1 = Q1/hv //Mass flowrate of 500 psig steam through unit 1 (lb/h)
mB2 = Q2/hv //Mass flowrate of 500 psig steam through unit 2 (lb/h)
mB3 = Q3/hv //Mass flowrate of 500 psig steam through unit 3 (lb/h)
mB4 = Q4/hv //Mass flowrate of 500 psig steam through unit 4 (lb/h)
mBT = mB1+mB2+mB3+mB4 //Total steam required (lb/h)
mBT = round(mBT*10**-1)/10**-1
//Result:
printf("The total steam required is : %f lb/h.",mBT)
|
67da16f284a125ff45f8b1edd45b207b4985f46f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1658/CH5/EX5.12/Ex5_12.sce | 31ce39ea39951152969046e6a0b9c048f7049e28 | [] | 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 | 102 | sce | Ex5_12.sce | clc;
VS=5;
R=510;
VF=0.7;
VR=VS-0.7;
disp('V',VR*1,"VR=");
I=VR/R;
disp('mA',I*10**3,"I=");
|
1c109d6c462b2dfcf182d1c1863ada9433df33ce | 449d555969bfd7befe906877abab098c6e63a0e8 | /1016/CH16/EX16.5/ex16_5.sce | 2f76730ea28a59f16ee60f0853c9ff51364dfe5c | [] | 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 | 370 | sce | ex16_5.sce | clc;clear;
//Example 16.5
//given data
B=0.5;//magnetic field in Wb/m^2
d=1.5;//diameter in m
f=59;//frequency in Hz
e=1.6*10^-19;//the charge on electron in C
c=3*10^8;//speed of light in m/s
pi=3.14;//const
//calculations
R=d/2;
N=c/(4*(2*pi*50)*R);
E=B*e*R*c/(1.6*10^-13);
disp(E,'final energy in MeV');
AE=E/N*10^6;
disp(AE,'average energy in eV') |
ed9f247eb115f8bb90d23eca4b6e49fabc73dfdc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1595/CH1/EX1.10/ex1_10.sce | 09a34b37b3a945b8107bd2680e876a64b4df30ca | [] | 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 | 215 | sce | ex1_10.sce | //Introductory Topics :example 1-10 : (pg no. 26)
i= 14*10^-3;//dc current
R=50;
x=(20*i*R);
y=10*log10(x);
printf("\nNR = 20.Idc.R = %.f",x);//noise ratio
printf("\nNF = 10log(NR) = %.2f dB",y);//noise figure |
51413f9546e64e892f3e158995ddb51ae85f760c | 584105ff5b87869494a42f632079668e4c3f82de | /help/builder_help.sce | aa44b55709dfae47882810f94e40334d074d67c0 | [] | no_license | kevgeo/FOSSEE-Computer-Vision | 0ceb1aafb800580498ea7d79982003714d88fb48 | 9ca5ceae56d11d81a178a9dafddc809238e412ba | refs/heads/master | 2021-01-17T21:11:31.309967 | 2016-08-01T14:45:40 | 2016-08-01T14:45:40 | 63,127,286 | 6 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 81 | sce | builder_help.sce | tbx_builder_help_lang(["en_US"], ..
get_absolute_file_path("builder_help.sce"));
|
a9b05af080d4c53bce2dc5eb899f93227429cfc5 | 75bbd82f0bfa2040e92161597c5e36931ff7767b | /Secante.sce | bb2b806738e30c216dfe2c25f5e6591acafd783b | [] | no_license | v0ltmx/scilab-MAT | d7da8e73b9d7551c2a00be04d2a2d64e80346c1d | b2f7cdc994ad49d77f90c24393769a5fdcac0568 | refs/heads/master | 2022-01-20T10:00:26.830030 | 2019-07-20T02:42:56 | 2019-07-20T02:42:56 | 197,870,163 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 104 | sce | Secante.sce | x=[0 %pi/3 2*%pi/3 %pi/4 3*%pi/4 %pi/6 5*%pi/6 %pi];
sec(x)
x=linspace(-%pi,%pi,100)
plot(x,sec(x))
|
778dbc50281e6dc86d86233b30e871b5dfb47638 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3532/CH4/EX4.5.1/Ex4_8.sce | b7f52cdb5bc21dc7a4586de1c9f1dd2f7229e10d | [] | 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 | 758 | sce | Ex4_8.sce | clc
clear
mprintf('Mechanical vibrations by G.K.Grover\n Example 4.5.1\n')
//given data
X=0.015//amplitude of vibration of spring mass dashpot system in m
f=100//frquency of vibration of spring mass dashpot system in Hz
zeta=0.05
fnD=22//damped natural frequency in Hz
m=0.5//mass in kg
//calculations
W=2*%pi*fnD
c=2*m*W*zeta// from Eqn 3.3.6 and Eqn 3.3.7
Epercycl=%pi*c*(2*%pi*f)*X^2//Eqn 4.5.1...energy dissipated per cycle
Epersec=Epercycl*f//energy dissipated per sec
//output
mprintf(' The power required to vibrate spring mass dashpot system with \n an amplitude of 1.5 cm and at frequency of 100 Hz is %4.4f Watts',Epersec)
mprintf('\nNOTE: slight differnce in answer compared to textbook\n is due approximation of value of pi')
|
649f975935d59fe01431657119c0aa39a85ec76c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3136/CH5/EX5.3/Ex5_3.sce | 886dc35c4bdcebc552efe3c624a6f5277c010901 | [] | 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 | Ex5_3.sce | clear all; clc;
disp("From equation 5.11 with Vu=constant,we have (Vu^2/r)dr+(Va)dVa=0 ")
disp("Or Vu^2lnr+Va^2/2=C")
disp("Or Vu^2*ln(r/rh)=(Vah^2-Va^2)/2")
disp("Or Va^2=Vah^2-2*Vu^2*ln(r/rh)")
V_ah=70
//let m=Vah^2
m=V_ah^2
printf("\n Vah^2 = %0.0f",m)
V_u=500
//let n=Vu^2
n=V_u^2
printf("\n Vu^2= %0.0f",n)
//let x=Vu^2*2
x=n*2//Since n=Vu^2
printf("\n 2*Vu^2= %0.0f",x)
disp("Thus Va=(4900-5000*ln(0.5r))^0.5 m/s")
disp("and at the tip,Vat=27.1m/s")
|
762e34115200a71a768e4ac8a0ceb66cf7846b6f | 9d59fb06cf0644f9c0c84aae7977eeff57116a45 | /1-RDMP/RDMP-3c.sce | 6f94687fc83f0d946b5cc099d2e36063fceb2aa9 | [] | no_license | aguadix/RQ | f353b8fa0e36828c8cca9af53f5c3275ed476a75 | 43e8a31003bf038b0cd72487868c760829b9797c | refs/heads/master | 2023-03-07T10:50:29.102260 | 2023-03-06T01:35:58 | 2023-03-06T01:35:58 | 53,548,175 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,098 | sce | RDMP-3c.sce | clear; clc;
// RDMP-3c.sce
// A => B
// No adiabático: serpentín
// SECTORES
N = 10; // divisiones del serpentín
// SISTEMA DE ECUACIONES DIFERENCIALES
function dxdt = f(t,x)
// Variables diferenciales
Ts = x(1:N)
CA = x(N+1)
T = x(N+2)
// Calor transferido del reactor al serpentín
i = 1:N; Q(i) = U*As*(T-Ts(i))
// Balance de energía en el serpentín
// d(Vs*RHOs*CPs*Ts(i))dt = Fs*RHOs*CPs*Ts(i-1) - Fs*RHOs*CPs*Ts(i) + Q(i)
// Sector 1
dTsdt(1) = Fs*(Ts0-Ts(1))/Vs + Q(1)/(Vs*RHOs*CPs)
// Resto de sectores
i = 2:N; dTsdt(i) = Fs*(Ts(i-1)-Ts(i))/Vs + Q(i)/(Vs*RHOs*CPs)
// Ecuación de Arrhenius
k = k0*exp(-E/(R*T))
// Velocidad de reacción
r = k*CA
// Balance de materia para A
// d(V*CA)dt = -r*V
dCAdt = -r
// Balance de energía en el reactor
// d(V*RHO*CP*T)dt = -H*r*V - Q
dTdt = -H*r/(RHO*CP) - sum(Q)/(V*RHO*CP)
// Derivadas
dxdt(1:N) = dTsdt
dxdt(N+1) = dCAdt
dxdt(N+2) = dTdt
endfunction
// CONSTANTES
V = 1; // m3
RHO = 980; // kg/m3
CP = 4200; //J/(kg*K)
U = 400; // J/(m2*s*K)
Ds = 0.1; // m
Lstot = 13; // m
Vstot = %pi/4*Ds^2*Lstot // m3
Astot = %pi*Ds*Lstot // m2
Vs = Vstot/N // m3
As = Astot/N // m2
Fs = 1E-3; //m3/s
Ts0 = 283; // K
RHOs = 1000; // kg/m3
CPs = 4180; //J/(kg*K)
H = -5E5; // J/mol
k0 = 2.2E4; // s-1
E = 41570; // J/mol
R = 8.314; // J/(mol*K)
// CONDICIONES INICIALES
i = 1:N; Tsini(i) = 283; // K
CAini = 500; // mol/m3
Tini = 283; // K
xini = [Tsini; CAini; Tini];
// TIEMPO
tfin = 1500; dt = 1; t = 0:dt:tfin; // s
// RESOLVER
x = ode(xini,0,t,f);
Ts = x(1:N,:); Tsfin = Ts(:,$)
CA = x(N+1,:); CAfin = CA($)
T = x(N+2,:); Tfin = T($)
[Tmax,indexTmax] = max(T)
tTmax = t(indexTmax)
// GRÁFICAS
scf(1); clf(1);
plot(t,CA);
xgrid; xlabel('t'); legend('CA',-2,%f);
scf(2); clf(2);
plot(t,T,'r-',t,Ts,'r:',tTmax,Tmax,'ro');
xgrid; xlabel('t'); legend('T','Ts',-2,%f);
scf(3); clf(3);
plot(Tsini,'ro-'); // t=0
plot(Ts(:,$/2),'ro-'); // t=tfin/2
plot(Tsfin,'ro-'); // t=tfin
xgrid; xlabel('Sector'); ylabel('Ts');
|
e86a34b64a1a158e70680aa7d00e7953430ed65c | 449d555969bfd7befe906877abab098c6e63a0e8 | /323/CH7/EX7.7/ex7_7.sci | 16f3c27776dead13e5f1b6fa57f978234a5a38f3 | [] | 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 | 224 | sci | ex7_7.sci | //Chapter 7,Ex 7.7,Pg 7.15
clc;
a=0.98
Vce=0.2
Ic=2*10^-3
Vcc=12
Rc=4
b=a/(1-a)
printf("\n Beta=%.0f \n",b)
Ice=(Vcc-Vce)/Rc
printf("\n Ic=%.2f mA \n",Ic*10^3)
Ib=Ic/b
printf("\n Ib(sat)=%.2f uA \n",Ib*10^6)
|
128083e698307260c3397488643894bd2ed17e8c | 717ddeb7e700373742c617a95e25a2376565112c | /278/CH8/EX8.4/ex_8_4.sce | 30fb21c4be03b607c50ce69fb140672ebd884e9c | [] | 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 | 532 | sce | ex_8_4.sce | //find working stress in flange
clc
//solution
//given
//refer fig 8.12
D=200//mm
p=0.35//N/mm^2
n=8
d=16//mm
Dp=290//mm
tf=20//mm
//using table ft=14//N/mm^2 ,table 8.2 gives C=9mm
C=9//mm
ft=14//N/mm^2
t=(p*D/(2*ft))+C//mm
d1=d+2//mm//dia of bolts
D1=Dp-d1//mm
pi=3.14
F=(pi/4)*[D1]^2*p//N//force acting to separate flanges
x=90//mm
y=[Dp/2]-[D/2+t]//mm
//let fb be working stress
M=F*y/n//N-mm
//Mr=fb*Z=(1/6)*x*(tf)^2=6000*fb
//M=6000*fb
fb=M/6000//N/mm^2
printf("the working stress is ,%f N/mm^2",fb) |
f469b5f779f7e22f7e8c2a56204c47f6b2f1fb4b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1862/CH20/EX20.8/C20P8.sce | 6a037261ffac2662aa2e1232beb403f8454657dd | [] | 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 | 683 | sce | C20P8.sce | clear
clc
//to find difference between masses of combined ball from sum of masses of original balls
//Given:
//mass of ball
m = 35//in gram
//speed of ball
v = 1.7//in m/s
//speed of light
c = 3.00e8//in m/s
//Solution:
//appiying fomule for energy and mass in special relativity
//applying conservation of energy
//increase in rest energy
delta_E0 = 2*((1/2)*(m*10^-3)*(v^2))//in J //taking mass in Kg
//increase in mass
delta_m = delta_E0/(c^2)//in Kg
printf ("\n\n Increase in rest energy delta_E0 = \n\n %.3f J" ,delta_E0);
printf ("\n\n Difference between masses of combined ball from sum of masses of original balls delta_m = \n\n %.1e Kg" ,delta_m);
|
085082229cfa9ceb70944336a368f104801f8fcf | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/CompressibleFlowSolver/Tests/IsentropicVortex16_P8_GAUSS.tst | 9be96e4ea881c5e3232f13343082d007c63e1b0f | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 1,050 | tst | IsentropicVortex16_P8_GAUSS.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>Euler Isentropic Vortex P=8 GAUSS</description>
<executable>CompressibleFlowSolver</executable>
<parameters>IsentropicVortex16_P8_GAUSS.xml</parameters>
<files>
<file description="Session File">IsentropicVortex16_P8_GAUSS.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="rho" tolerance="1e-12">1.40009e-07</value>
<value variable="rhou" tolerance="1e-12">3.57402e-07</value>
<value variable="rhov" tolerance="1e-12">3.78317e-07</value>
<value variable="E" tolerance="1e-12">1.26238e-06</value>
</metric>
<metric type="Linf" id="2">
<value variable="rho" tolerance="1e-12">3.77656e-07</value>
<value variable="rhou" tolerance="1e-12">1.34087e-06</value>
<value variable="rhov" tolerance="1e-12">1.39239e-06</value>
<value variable="E" tolerance="1e-12">5.19969e-06</value>
</metric>
</metrics>
</test>
|
f83472c6cfae10a892ce6883c906a86ca7d91c4c | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH2/EX2.5/example2_5.sce | 16aabe2cd5f0a1f4fe0a58b56e7b35ff9465947f | [] | 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 | 195 | sce | example2_5.sce | disp("Part a");
q=60;
t=4*60;
i=q/t;
disp("the current flowing in the circuit (in A) is");disp(i);
disp("Part b");
t1=10*60;
q1=i*t1;
disp("the charge transferred (in C) is"); disp(q1);
|
47128b0609cbcc577b6a50cc50f5439e20fdd241 | 449d555969bfd7befe906877abab098c6e63a0e8 | /626/CH11/EX11.7/11_7.sce | c1feef8c365666a7863e027896031db7b7c99682 | [] | 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 | 279 | sce | 11_7.sce | clear;
clc;
close;
disp("Example 11.7")
g=9.8 //in m/s^2
Is=420 //in s
the=90 //in degree
tb=30 //in s
gavg=9.65 //in m/s^2
MR=0.1
delv1=-g*Is*log(MR) //in m/s
delv2=-g*Is*log(MR)-gavg*tb
delp=abs(delv2-delv1)/delv1*100
disp(delp,"% reduction in terminal speed :") |
d4a03dd5f5082f5d2502dc02738b857ad6717cc2 | 743962f1d0e2d5a341cf583d6c7888e219f4ea1f | /RBF/RBF_Interpolation_Scilab/multiquadratic_matrix.sce | 29c46cd449da825f617f9002bef7951836cf1618 | [] | no_license | addNaNs/NA_seminarski | 7a17cf8ff2fc2aedaaa5658ce13c6ce4f4a5f4fa | 28f667703f599fc0e041398312a884efd7cd1e75 | refs/heads/master | 2020-12-22T17:48:18.517965 | 2020-01-29T01:16:43 | 2020-01-29T01:16:43 | 236,879,155 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 120 | sce | multiquadratic_matrix.sce | function [M, r0] = multiquadratic_matrix(X)
r0 = sqrt(mean(X) * max(X));
M = multiquadratic(X, r0);
endfunction
|
733f283224ed85efdb5e940be62aa8797036fd79 | 449d555969bfd7befe906877abab098c6e63a0e8 | /635/CH8/EX8.17/Ch08Ex17.sci | 775f9adfd037cafab2750a8d8d756c313fde392d | [] | 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,085 | sci | Ch08Ex17.sci | // Scilab code Ex8.17: Diffraction of electrons from fcc crystal planes Page 295 (2010)
// Declare a function for converting angle into degrees and minutes
function [d,m] = degree_minute(n)
d = int(n);
m = (n-int(n))*60;
endfunction
h = 6.626e-034; // Planck's constant, Js
m = 9.1e-031; // Rest mass of electron, kg
e = 1.602e-019; // charge on an electron, coulomb
a = 3.5e-010; // Lattice parameter of fcc crystal, m
V = 80; // Accelerating potential for electrons, volt
lambda = h/sqrt(2*m*e*V); // de-Broglie wavelength of electrons, m
d_111 = a/sqrt(3); // Interplanar spacing for (111) planes of fcc crystal, m
// Bragg's equation for first order diffraction (n = 1) is
// lambda = 2*d_111*sind(theta_111); // Bragg's law, m
theta_111 = asind(lambda/(2*d_111)); // Bragg's angle, degree
[deg, mint] = degree_minute(theta_111); // Call conversion function
printf("\nThe Bragg angle for electron diffraction = %d deg %d min", deg, mint);
// Result
// The Bragg angle for electron diffraction = 19 deg 50 min
|
63eaab99f5c401ddd5aad8005f2db50a2f466ccf | dc1af20bca10db33d1adcbf61d5fe874eb6eab07 | /PluginTesting/environment/SIMPLE_TEST/SIMPLE_TEST.tst | 983ca6b4e85a05a948f61f945bbd4f4e00e97484 | [] | no_license | TimSVector/PointOfSales_v2 | 2d1130516cfc5d77f2e5d0f60adcde96374f6fc2 | ef630f05850715568725cf94cc0e497146a049d4 | refs/heads/master | 2023-08-04T10:51:50.031346 | 2023-08-03T20:50:28 | 2023-08-03T20:50:28 | 133,404,783 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,316 | tst | SIMPLE_TEST.tst | -- VectorCAST 19.sp1 (06/26/19)
-- Test Case Script
--
-- Environment : SIMPLE_TEST
-- Unit(s) Under Test: manager
--
-- Script Features
TEST.SCRIPT_FEATURE:C_DIRECT_ARRAY_INDEXING
TEST.SCRIPT_FEATURE:CPP_CLASS_OBJECT_REVISION
TEST.SCRIPT_FEATURE:MULTIPLE_UUT_SUPPORT
TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES
TEST.SCRIPT_FEATURE:STANDARD_SPACING_R2
TEST.SCRIPT_FEATURE:OVERLOADED_CONST_SUPPORT
TEST.SCRIPT_FEATURE:UNDERSCORE_NULLPTR
TEST.SCRIPT_FEATURE:FULL_PARAMETER_TYPES
TEST.SCRIPT_FEATURE:STRUCT_DTOR_ADDS_POINTER
TEST.SCRIPT_FEATURE:STRUCT_FIELD_CTOR_ADDS_POINTER
TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS
TEST.SCRIPT_FEATURE:VCAST_MAIN_NOT_RENAMED
--
-- Subprogram: <<INIT>>
-- Test Case: <<INIT>>.001
TEST.SUBPROGRAM:<<INIT>>
TEST.NEW
TEST.NAME:<<INIT>>.001
TEST.AUTOMATIC_INITIALIZATION
TEST.VALUE:manager.<<GLOBAL>>.(cl).Manager.Manager.<<constructor>>.Manager().<<call>>:0
TEST.END
-- Unit: manager
-- Subprogram: (cl)Manager::PlaceOrder
-- Test Case: (cl)Manager::PlaceOrder.001
TEST.UNIT:manager
TEST.SUBPROGRAM:(cl)Manager::PlaceOrder
TEST.NEW
TEST.NAME:(cl)Manager::PlaceOrder.001
TEST.COMPOUND_ONLY
TEST.END
-- Test Case: (cl)Manager::PlaceOrder.Steak.BadCF
TEST.UNIT:manager
TEST.SUBPROGRAM:(cl)Manager::PlaceOrder
TEST.NEW
TEST.NAME:(cl)Manager::PlaceOrder.Steak.BadCF
TEST.VALUE:manager.(cl)Manager::PlaceOrder.Table:1
TEST.VALUE:manager.(cl)Manager::PlaceOrder.Seat:1
TEST.VALUE:manager.(cl)Manager::PlaceOrder.Order.Entree:Steak
TEST.FLOW
manager.cpp.(cl)Manager::PlaceOrder
uut_prototype_stubs.DataBase::GetTableRecord
manager.cpp.(cl)Manager::AddIncludedDessert
uut_prototype_stubs.DataBase::UpdateTableRecord
manager.cpp.(cl)Manager::PlaceOrder
TEST.END_FLOW
TEST.END
-- Test Case: (cl)Manager::PlaceOrder.Steak.BadEV
TEST.UNIT:manager
TEST.SUBPROGRAM:(cl)Manager::PlaceOrder
TEST.NEW
TEST.NAME:(cl)Manager::PlaceOrder.Steak.BadEV
TEST.VALUE:manager.(cl)Manager::PlaceOrder.Table:1
TEST.VALUE:manager.(cl)Manager::PlaceOrder.Seat:1
TEST.VALUE:manager.(cl)Manager::PlaceOrder.Order.Entree:Steak
TEST.EXPECTED:uut_prototype_stubs.DataBase::UpdateTableRecord.Data[0].CheckTotal:15
TEST.END
-- Test Case: (cl)Manager::PlaceOrder.Steak.CF
TEST.UNIT:manager
TEST.SUBPROGRAM:(cl)Manager::PlaceOrder
TEST.NEW
TEST.NAME:(cl)Manager::PlaceOrder.Steak.CF
TEST.VALUE:manager.(cl)Manager::PlaceOrder.Table:1
TEST.VALUE:manager.(cl)Manager::PlaceOrder.Seat:1
TEST.VALUE:manager.(cl)Manager::PlaceOrder.Order.Entree:Steak
TEST.FLOW
manager.cpp.<<INIT>>
manager.cpp.<<INIT>>
manager.cpp.(cl)Manager::PlaceOrder
uut_prototype_stubs.DataBase::GetTableRecord
uut_prototype_stubs.DataBase::UpdateTableRecord
manager.cpp.(cl)Manager::PlaceOrder
TEST.END_FLOW
TEST.END
-- Test Case: (cl)Manager::PlaceOrder.Steak.EV
TEST.UNIT:manager
TEST.SUBPROGRAM:(cl)Manager::PlaceOrder
TEST.NEW
TEST.NAME:(cl)Manager::PlaceOrder.Steak.EV
TEST.VALUE:manager.(cl)Manager::PlaceOrder.Table:1
TEST.VALUE:manager.(cl)Manager::PlaceOrder.Seat:1
TEST.VALUE:manager.(cl)Manager::PlaceOrder.Order.Entree:Steak
TEST.EXPECTED:uut_prototype_stubs.DataBase::UpdateTableRecord.Data[0].CheckTotal:14
TEST.END
-- Test Case: (cl)Manager::PlaceOrder.Steak.NoEV
TEST.UNIT:manager
TEST.SUBPROGRAM:(cl)Manager::PlaceOrder
TEST.NEW
TEST.NAME:(cl)Manager::PlaceOrder.Steak.NoEV
TEST.VALUE:manager.(cl)Manager::PlaceOrder.Table:1
TEST.VALUE:manager.(cl)Manager::PlaceOrder.Seat:1
TEST.VALUE:manager.(cl)Manager::PlaceOrder.Order.Entree:Steak
TEST.END
-- COMPOUND TESTS
TEST.SUBPROGRAM:<<COMPOUND>>
TEST.NEW
TEST.NAME:<<COMPOUND>>.001
TEST.SLOT: "1", "manager", "(cl)Manager::PlaceOrder", "1", "(cl)Manager::PlaceOrder.Steak.NoEV"
TEST.SLOT: "2", "manager", "(cl)Manager::PlaceOrder", "1", "(cl)Manager::PlaceOrder.Steak.EV"
TEST.SLOT: "3", "manager", "(cl)Manager::PlaceOrder", "1", "(cl)Manager::PlaceOrder.Steak.BadEV"
TEST.SLOT: "4", "manager", "(cl)Manager::PlaceOrder", "1", "(cl)Manager::PlaceOrder.Steak.CF"
TEST.SLOT: "5", "manager", "(cl)Manager::PlaceOrder", "1", "(cl)Manager::PlaceOrder.Steak.BadCF"
TEST.END
--
-- COMPOUND TESTS
TEST.SUBPROGRAM:<<COMPOUND>>
TEST.NEW
TEST.NAME:<<COMPOUND>>.002
TEST.SLOT: "1", "manager", "(cl)Manager::PlaceOrder", "1", "(cl)Manager::PlaceOrder.Steak.EV"
TEST.SLOT: "2", "manager", "(cl)Manager::PlaceOrder", "1", "(cl)Manager::PlaceOrder.Steak.CF"
TEST.END
--
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.