blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
21 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
141k
586M
star_events_count
int64
0
30.4k
fork_events_count
int64
0
9.67k
gha_license_id
stringclasses
8 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
50 values
src_encoding
stringclasses
23 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
29 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
8fa02bfd12626dfe488cca91abf601577baaa780
449d555969bfd7befe906877abab098c6e63a0e8
/1076/CH13/EX13.19/13_19.sce
59de3cf68970129ce323262a613041a67d5a0060
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
293
sce
13_19.sce
clear clc Pm=2 Pi=1 H=6 G=1 f=50 p=Pi/Pm M=G*H/(%pi*f) d0=asin(p) dcc=acos(((p*(%pi - (2*d0)))- (Pi*cos(d0)))/(Pm-Pi)) mprintf("Critical Clearing angle = %.4f rad\n\n", dcc) tcc=sqrt(2*M*(dcc-d0)/Pi) mprintf("Critical Clearing time = %.3f sec = %.2f cycles", tcc , tcc*50)
1d0550e63dd42237cae44d68b87cd1447030c029
449d555969bfd7befe906877abab098c6e63a0e8
/1026/CH6/EX6.3/Example6_3.sce
4bce8860e6fff742a056439ffd331b1e21bd2b93
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
399
sce
Example6_3.sce
//chapter6,Example6_3,pg 121 vd=1*10^-3 sig=6.17*10^7 ue=0.0056 rhoe=-(sig/ue) Jc1=-rhoe*vd E1=(Jc1)/sig I=80 A=9*10^-6 Jc2=I/A E2=Jc2/sig V=0.5*10^-3 d=3*10^-3 E3=V/d printf("E-field due to Jc1\n") printf("E1=%.6f V/m",E1) printf("\nE-field due to Jc2\n") printf("E2=%.6f V/m",E2) printf("\nE-field due to cube\n") printf("E3=%.6f V/m",E3)
59f1757143924a3090b83ef9f5e27ae19ab1a724
449d555969bfd7befe906877abab098c6e63a0e8
/2084/CH15/EX15.2w/15_2w.sce
aaa99ce7cde3294cb115e41cf77606102eeaad9b
[]
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
749
sce
15_2w.sce
//developed in windows XP operating system 32bit //platform Scilab 5.4.1 clc;clear; //example 15.2w //calculation of the maximum velocity and acceleraion of the particle //given data //given wave equation is.....y = (3.0cm)*sind((3.14cm^-1)x - (3.14 s^-1)*t)) t=0//time taken(in s) t1=.11//time(in s) for acceleration function yv=f(t) yv = (3.0)*sin(-(3.14)*t)//take x=0 (after derivative )..for maximum velocity endfunction //calculation //V = dy/dt vmax=derivative(f,t) //vn=(-9.4)*(314)*(sin((3.14*x)+(314*t)))......take x=6(after derivative)...for acceleration at x=6 cm a=-(2952)*sin(6*%pi-11*%pi) printf('the maximum velocity is %3.2f m/s',vmax) printf('\nthe acceleration at t=0.11 s and x= 6 cm is %d cm^2/s',a)
3f6dd0886cdc9361ee2a8e2f3afd431dab333e4c
449d555969bfd7befe906877abab098c6e63a0e8
/1964/CH4/EX4.6/ex4_6.sce
ae28b3d0377dc487f2de07995cf4afbdb78dbc0f
[]
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,145
sce
ex4_6.sce
//Chapter-4, Example 4.6, Page 134 //============================================================================= clc clear //INPUT DATA N=200;//no of turns a=250;//area of cross-section in sq.cm Bm=0.5;//magnetic field strength in Tesla speed=1200;//in r.p.m //CALCULATIONS w=2*%pi*(speed/60);//angular freq in rad/sec phi=Bm*a*10^-4;//area taken in sq.m Em=N*w*phi;//maximum value of induced Emf mprintf("maximum value of induced Emf is %d volts\n",Em); //equation for instantaneous induced emf is e=Em*sin(w*t) //when plane of coil is parallel to field ,theta is 90 degrees e1=Em*sin(%pi/2);//converted degrees to radians mprintf("when plane of coil is parallel to field, induced Emf is %d volts\n",e1); //when plane of coil is parallel to field ,theta is 0 degrees e2=Em*sin(0); mprintf("when plane of coil is perpendicular to field, induced Emf is %d volts\n",e2); //when plane of coli is inclined at 45 degrees to the field e3=Em*sin(%pi/4); mprintf("when plane of coil is at 45 degrees to field, induced Emf is %d volts\n",e3); //=================================END OF PROGRAM==============================
b2d2a6d9cd1959e0cafedc97a153d734a6e1893c
449d555969bfd7befe906877abab098c6e63a0e8
/2939/CH10/EX10.10/Ex10_10.sce
9023ee61fa39a75f9a0f920b25931613d8fcfcf5
[]
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
409
sce
Ex10_10.sce
//Ex10_10 clc; // Given: M=55;// wt of Mn m=0.1;// in g t=90;// min irradated flux=10^6; t1=5; //in hours cs=13.3*10^-24// in cm^2 hl=2.58;// in hours Na=6.022*10^23; r=100;// in % // Solution: s=1-(exp(-.693*t/(2.58*60))); A=(m*Na*r*flux*cs*s)/(100*M); x=exp(-0.693*5/2.58); // activity after cooling period A1=A*x*60;// in dpm printf("The activity of sample in dpm is = %f", A1)
21656bfe74b74e3d9db7f0f7e5e5265e6470ef89
449d555969bfd7befe906877abab098c6e63a0e8
/2741/CH4/EX4.1/Chapter4_Example1.sce
142cacb58130d636a294f44c54cb8eff4dd08dfd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
810
sce
Chapter4_Example1.sce
clc clear //Input data m=1000;//Mass of Ice in gms Sp=0.5;//Specific heat of Ice in cal/g-K t1=-10;//Initial temperature of Ice in degree centigrade t2=0;//The final temperature of Ice in degree centigrade Li=80;//Latent heat of fusion of ice in cals per gram Ls=540;//Latent heat of fusion of steam in cals per gram //Calculations h1=m*-t1*Sp;//Heat required to raise the temperature of Ice in cals h2=m*Li;//Heat required to melt ice at 0 degree centigrade in cals h3=m*100;//Heat required to raise the temperature of water from 0 to 100 degree centigrade in cals h4=m*Ls;//Heat required to convert water into steam at 100 degree centigrade in cals T=h1+h2+h3+h4;//Total quantity of heat required in cals //Output printf('Total quantity of heat required is %3.0f cals ',T)
f9d82df2495e2dff7e5b16bdb1b26376f7cd6743
24fb1e72f2244733455f40fda1ae95423110e82a
/lecture2.sce
fd6f6c073ecbe660a987557cd346e998e0955683
[]
no_license
Aie-Aie/scilab
a4cbed5b58134009de1c084950a45da1e2b6f2db
616568e7589f61dcda425410fbedc943b238f11b
refs/heads/master
2021-09-11T20:42:55.522610
2018-04-12T05:29:52
2018-04-12T05:29:52
106,638,444
0
0
null
null
null
null
UTF-8
Scilab
false
false
497
sce
lecture2.sce
//matrix of cofactors column=4 row=4 mymatrix3=[] mymatrix4=[] mymatrix(1:column, 1:column)=1 mymatrix2=[1, 2, 4, 5;3, 4, 5, 5; 6,7, 8, 7; 1, 2, 3, 4] disp(mymatrix2) for row1=1:row for col1=1:column mymatrix2(row1, col1)=((-1)^(row1+col1))*mymatrix2(row1, col1) end, end disp(mymatrix2) /////////////////////////////////////////////// for i=1:column z=(-1)^i //disp(z) end for i=1:column // disp(row) row=row+1 end
ba52f1dfc3d23f8f631cdf358234fa887b7078ab
449d555969bfd7befe906877abab098c6e63a0e8
/3835/CH4/EX4.35/Ex4_35.sce
ca622f478c2de09c798e4950c202b5b5571253ba
[]
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
336
sce
Ex4_35.sce
clear // //superposition theorem r=4 //z=4+(8+6j)*(0-j10)/8+j6+0-j10 //z=14-j5 z=14.87 l=40 //I1a=z/l=2.69 in polar form I1a=complex(2.533,0.904) I2a=complex(-0.324,-2.67) //from fig c z=complex(2.93,-9.47) I1b=complex(-0.895,3.935) I2b=complex(1.056,-2.474) I1=I1a+I1b printf("\n I1") I2=I2a+I2b printf("\n I2") I=I1+I2 printf("\n I")
ebbf7986d58ec49e0e43fd240fc01aeeeffa2ea9
449d555969bfd7befe906877abab098c6e63a0e8
/1640/CH4/EX4.10/4_10.sce
825ab86c47c52ae1f79bb536a22ff54c42fd8872
[]
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
249
sce
4_10.sce
clc //initialisation of variables L= 3 //ft H= 6 //in Cd= 0.62 Cd1= 0.59 a= 45 //degrees g= 32.2 //ft/sec^2 //CALCULATIONS H= ((2/3)*Cd*sqrt(2*g)*L*(H/12)^1.5/((8/15)*Cd1*sqrt(2*g)))^0.4 //RESULTS printf ('depth of water = %.3f ft ',H)
d2534d3e3dec6601213adee9589543719c52a14f
449d555969bfd7befe906877abab098c6e63a0e8
/1379/CH3/EX3.1.1/example3_1.sce
f0c445893139194d89cca33ca7f49d64c3a8adc6
[]
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
791
sce
example3_1.sce
//exapple 3.1 clc; funcprot(0); // Initialization of Variable rho=998; mu=1.002/1000; x=48/100; u=19.6/100; x1=30/100; b=2.6; //calculation //part1 disp("fluid in boundary layer would be entirely in streamline motion "); Re=rho*x*u/mu; printf("reynolds no is %.2e",Re); //part 2 Re1=rho*x1*u/mu; delta=x1*4.64*Re1^-.5; disp(delta*1000,"boundary layer width in (mm):"); //part3 y=0.5*delta;//middle of boundary layer ux=3/2*u*y/delta-.5*u*(y/delta)^3; disp(ux*100,"velocity of water in (cm/s):"); //part4 R=0.323*rho*u^2*Re1^-0.5; disp(R,"shear stress at 30cm in (N/m^2):"); //part5 Rms=0.646*rho*u^2*Re^-0.5; disp(Rms,"mean shear stress experienced over whole plate in (N/m^2)"); //part6 F=Rms*x*b; disp(F,"total force experienced by the plate in (N)")
ecf55e317835edd69350ccb19b82aec14df1436c
449d555969bfd7befe906877abab098c6e63a0e8
/1004/CH11/EX11.3/Ch011Ex3.sci
4351f7dfb134c71519585faf28f69e3a6dbc3298
[]
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
710
sci
Ch011Ex3.sci
// Scilab code: Ex11.3 : Gamma ray emission: Pg: 229 (2008) h_bar = 1.0e-034; // Order of reduced Planck's constant, Js e = 1.0e-019; // Order of energy equivalent of 1 eV, J/eV tau1 = 1e-009; // Life time of gamma ray emission, sec tau2 = 1e-012; // Life time of gamma ray emission, sec W1 = h_bar/tau1; // Full width at half maxima for tau1, eV W2 = h_bar/tau2; // Full width at half maxima for tau2, eV printf("\nThe full width at half maxima for %1.0e = %1.0e eV", tau1, W1/e); printf("\nThe full width at half maxima for %1.0e = %1.0e eV", tau2, W2/e); // Result // The full width at half maxima for 1e-009 = 1e-006 eV // The full width at half maxima for 1e-012 = 1e-003 eV
e6a3774eb5d39de1c6ccf49bd43ba54dbef2eef4
449d555969bfd7befe906877abab098c6e63a0e8
/1727/CH7/EX7.16/7_16.sce
09d45292559b8c995178269f237f9e3a9245854a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
190
sce
7_16.sce
clc //Initialization of variables d1=0.1 //m d2=0.05 //m l1=20 //m l2=20 //m f=0.02 //calculations Kl=(f*l2/d2 *(d1/d2)^4 - f*l1/d1) //results printf("Loss coefficient = %d ",Kl)
a103fe322998228bdd8add0f52253a96070c8b1f
39c5c468df5e2bde0147a30cf092fc8da3e7ed3e
/UFRGS/calcNumerico/area2/m8/m8_grupo.sce
5ee7f2b3fc55235d442ddc487308893bf319a459
[]
no_license
andredxc/Files
9dffc9fe5f7e923b83035d794dfa15c930cdb898
e32309b9ab548b829b04be66c2776cf9c9c6656e
refs/heads/master
2021-06-03T10:44:01.606242
2020-09-21T15:39:48
2020-09-21T15:39:48
107,410,076
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,674
sce
m8_grupo.sce
/* Q1 - Encontre a reta y=a_1+a_2 x que melhor se ajusta aos pontos com coordenadas x=[0,0.2,0.4,0.6,0.8,1] e y=sin(x+5). Forneça como respostas o coeficente a_1. */ //Coeficiente A = (1) --- B = (2) clear x=[0 0.2 0.4 0.6 0.8 1]'; y=sin(x+5); n=size(x,1); M=[n sum(x) sum(x) sum(x.^2)] b=[sum(y) sum(x.*y)] a=inv(M)*b disp(a(1)) /*Q2 - Dados os pontos x=0:0.2:1 e y=cos(x+20), encontre a reta y=ax+b que melhor se ajusta a esses pontos. Forneça como resposta o coeficiente a? */ //Coeficiente A = (2) --- B = (1) clear x=[0:0.2:1]'; y=cos(x+20); n=size(x,1); M=[n sum(x) sum(x) sum(x.^2)] b=[sum(y) sum(x.*y)] a=inv(M)*b; disp(a(2)) /*Q3 - Dados os pontos x=1:0.5:12 e y=3*sin(x+20)+x^2, encontre o polinômio de grau 2 que melhor se ajusta a esses pontos. Forneça como resposta o coeficiente de x^2. */ clear x=1:0.5:12; y=3*sin(x+20)+x^2; n=size(x,1); p=2; for i=1:p+1 for j=1:p+1 M(i,j)=sum(x.^(i+j-2)) end end for i=1:p+1 b(i)=sum(y.*x.^(i-1)) end a=inv(M)*b; //coeficiente vai ser a ordem do polinomio, (1)x0 (2)x1 (3)x2 disp(a(3)) /*Q4 - Dados os pontos x=1:0.5:12 e y=11*sin(x)+x^2, encontre a parábola p(x) que que melhor se ajusta a esses pontos. Forneça como resposta p(3.14). */ clear x=1:0.5:12; y=11*sin(x)+x^2; n=size(x,1); p=2; for i=1:p+1 for j=1:p+1 M(i,j)=sum(x.^(i+j-2)) end end for i=1:p+1 b(i)=sum(y.*x.^(i-1)) end a=inv(M)*b disp(a(1)+a(2)*3.14 + a(3)*3.14^2) /*Q5 - Dados os pontos x=1:0.1:4 e y=sin(20+1/x), encontre o polinômio p(x) de grau 3 que melhor se ajusta a esses pontos. Calcule p(2.1). */ clear x=1:0.1:4; y=sin(20+1./x); n=size(x,1); p=3; for i=1:p+1 for j=1:p+1 M(i,j)=sum(x.^(i+j-2)) end end for i=1:p+1 b(i)=sum(y.*x.^(i-1)) end a=inv(M)*b; disp(a(1)+a(2)*2.1 + a(3)*2.1^2 + a(4)*2.1^3) /* Q6 - Qual reta no formato y=kx melhor se ajusta aos pontos com coordenadas x=-2:0.1:2 e y=ex p(x/12)-1? Forneça como resposta k. */ x=[-2:0.1:2]' y=exp(x/12)-1 A=[x^1] k=(A'*A)\(A'*y) disp(k) /* Q7 - Qual parábola do tipo y=a+bx^2 melhor se ajusta aos pontos com coordenadas x=0:0.1:2.5 e y=cos(x)+19. Forneça o coeficiente b. */ //a+bx^2 clear x=0:0.1:2.5 y=cos(x)+19; n=size(x,1); p=2; M=[sum(x.^0) sum(x.^2) sum(x.^2) sum(x.^4)] b=[sum(y) sum(y.*x.^2)] a=inv(M)*b; disp(a(2)) /* Q8 - Qual parábola do tipo y(x)=a+bx^2 melhor se ajusta aos pontos com coordenadas x=0:0.1:2.5 e y=cos(x)+8. Forneça y(1). */ //a+bx^2 clear x=0:0.1:2.5 y=cos(x)+8; n=size(x,1); p=2; M=[sum(x.^0) sum(x.^2) sum(x.^2) sum(x.^4)] b=[sum(y) sum(y.*x.^2)] a=inv(M)*b; disp(a(1)+a(2)*1^2) //ou só a(1) + a(2)
aacb0c3d8f1dca7b04a6fb28b3d66df737ef831b
449d555969bfd7befe906877abab098c6e63a0e8
/1523/CH1/EX1.15/1_15.sce
758ec863d19bc69373985d3028bad79e7ea2daf8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
293
sce
1_15.sce
//Basic Circuit Concepts //pg no.-1.20 //example 1.15 r1=3; r2=2.33; r3=6; v1=18; v2=5.985; mprintf("\nApplying KCL at the node, \n(Va-18)/3+(Va-5.985)/2.33+Va/6 = 0"); Va=((v1*r2*r3)+(v2*r1*r3))/((r2*r3)+(r1*r3)+(r1*r2)); printf("\nSolving the equation,we get, \nVa = %.2f V",Va);
288f73f8351b55d72d0c72661f2734aa494a238a
449d555969bfd7befe906877abab098c6e63a0e8
/1430/CH9/EX9.2/exa9_2.sce
fe2aa6625fbc1c747ab66602c19ee4ad2c6dc8d3
[]
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
425
sce
exa9_2.sce
// Example 9.2 // Step response of an RC circuit C=50*10^-6; R_eq=(3000*6000)/(3000+6000); // From figure 9.10(a) v_oc=(6*12)/(3+6); tau=R_eq*C; t=0:0.0001:1 v=v_oc*(1-exp(-t/tau)); // t>0 i=(v_oc-v)/(R_eq); // t>0 subplot(2,1,1) plot(t,v,) xlabel('t') ylabel('v(t)') title('Voltage waveform across capacitor') subplot(2,1,2) plot(t,i) xlabel('t') ylabel('i(t)') title('Current waveform across capacitor')
edf12eb5667e13e029e2ca465727f01d0a6b70a9
449d555969bfd7befe906877abab098c6e63a0e8
/1628/CH14/EX14.5/Ex14_5.sce
e0cf736a12e61afe227701a49e3c85b922456b6c
[]
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,124
sce
Ex14_5.sce
// Example 14.5 I=100; // Full-rated short-circuit current V=3.3*10^3/sqrt(3); // Three phase voltage R=0.9; // Remature resistance Zs=5.196; // Impedance Vz=I*Zs; // Voltage drop per phase on full load Q=acosd(R/Zs); // Phase angle pf1=0.8; // Lagging power factor q1=acosd(pf1); // Lagging angle alfa1=Q-q1; // Resultant angle Cos1=cosd(alfa1); // power factor for Resultant E1=(sqrt(V*V+Vz*Vz+2*V*Vz*Cos1)); Er1=(E1-V)/V; // the Voltage Regulation (0.8 Lagging) disp('(a) the Voltage Regulation (0.8 Lagging) is = '+string(Er1*100)+' per Cent'); alfa3=Q+q1; // Resultant angle Cos3=cosd(alfa3); // power factor for Resultant E3=(sqrt(V*V+Vz*Vz+2*V*Vz*Cos3)); Er3=(E3-V)/V; // the Voltage Regulation (0.8 Leading) disp('(b) the Voltage Regulation (0.8 Leading) is = '+string(Er3*100)+' per Cent'); // p 563 14.5
99e481857cc00b8d55a211b7ce96c430a4a9a814
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/SCHI/XN24TFZ/ATWM1_Working_Memory_MEG_XN24TFZ_Session2/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce
5980ea436dc34b2f6fe07ae0a94c622f9175745a
[]
no_license
atwm1/Presentation
65c674180f731f050aad33beefffb9ba0caa6688
9732a004ca091b184b670c56c55f538ff6600c08
refs/heads/master
2020-04-15T14:04:41.900640
2020-02-14T16:10:11
2020-02-14T16:10:11
56,771,016
0
1
null
null
null
null
UTF-8
Scilab
false
false
48,617
sce
ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2"; #scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen scenario_type = trials; # for MEG #scan_period = 2000; # TR #pulses_per_scan = 1; #pulse_code = 1; pulse_width=6; default_monitor_sounds = false; active_buttons = 2; response_matching = simple_matching; button_codes = 10, 20; default_font_size = 36; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; write_codes=true; # for MEG only begin; #Picture definitions box { height = 382; width = 382; color = 0, 0, 0;} frame1; box { height = 369; width = 369; color = 255, 255, 255;} frame2; box { height = 30; width = 4; color = 0, 0, 0;} fix1; box { height = 4; width = 30; color = 0, 0, 0;} fix2; box { height = 30; width = 4; color = 255, 0, 0;} fix3; box { height = 4; width = 30; color = 255, 0, 0;} fix4; box { height = 369; width = 369; color = 42, 42, 42;} background; TEMPLATE "StimuliDeclaration.tem" {}; trial { sound sound_incorrect; time = 0; duration = 1; } wrong; trial { sound sound_correct; time = 0; duration = 1; } right; trial { sound sound_no_response; time = 0; duration = 1; } miss; # Start of experiment (MEG only) - sync with CTF software trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; } expStart; time = 0; duration = 1000; code = "ExpStart"; port_code = 80; }; # baselinePre (at the beginning of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }default; time = 0; duration = 10000; #mri_pulse = 1; code = "BaselinePre"; port_code = 91; }; TEMPLATE "ATWM1_Working_Memory_MEG.tem" { trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 44 62 292 292 399 125 2242 2992 2542 fixation_cross gabor_113 gabor_180 gabor_058 gabor_164 gabor_113_alt gabor_180 gabor_058_alt gabor_164 "2_1_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2550_gabor_patch_orientation_113_180_058_164_target_position_2_4_retrieval_position_2" gabor_circ gabor_180_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_1_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 2092 fixation_cross gabor_060 gabor_147 gabor_092 gabor_131 gabor_060_alt gabor_147 gabor_092_alt gabor_131 "2_2_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2100_gabor_patch_orientation_060_147_092_131_target_position_2_4_retrieval_position_2" gabor_circ gabor_147_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_2_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_147_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1942 2992 2442 fixation_cross gabor_089 gabor_170 gabor_007 gabor_112 gabor_089_alt gabor_170 gabor_007_alt gabor_112 "2_3_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2450_gabor_patch_orientation_089_170_007_112_target_position_2_4_retrieval_position_2" gabor_circ gabor_031_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_3_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_031_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1842 2992 2592 fixation_cross gabor_011 gabor_137 gabor_175 gabor_091 gabor_011_alt gabor_137 gabor_175 gabor_091_alt "2_4_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_2600_gabor_patch_orientation_011_137_175_091_target_position_2_3_retrieval_position_1" gabor_011_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_4_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_011_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1742 2992 2392 fixation_cross gabor_014 gabor_077 gabor_037 gabor_153 gabor_014_alt gabor_077 gabor_037_alt gabor_153 "2_5_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_014_077_037_153_target_position_2_4_retrieval_position_2" gabor_circ gabor_124_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_5_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2142 2992 1942 fixation_cross gabor_110 gabor_001 gabor_044 gabor_080 gabor_110_alt gabor_001 gabor_044_alt gabor_080 "2_6_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_110_001_044_080_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_126_framed blank blank blank blank fixation_cross_white "2_6_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1742 2992 2192 fixation_cross gabor_085 gabor_066 gabor_124 gabor_014 gabor_085 gabor_066_alt gabor_124 gabor_014_alt "2_7_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_085_066_124_014_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_173_framed gabor_circ blank blank blank blank fixation_cross_white "2_7_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2242 2992 2442 fixation_cross gabor_071 gabor_043 gabor_133 gabor_160 gabor_071 gabor_043_alt gabor_133_alt gabor_160 "2_8_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2450_gabor_patch_orientation_071_043_133_160_target_position_1_4_retrieval_position_1" gabor_071_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_8_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1792 2992 1992 fixation_cross gabor_006 gabor_158 gabor_116 gabor_027 gabor_006 gabor_158_alt gabor_116_alt gabor_027 "2_9_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_006_158_116_027_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_027_framed blank blank blank blank fixation_cross_white "2_9_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2192 2992 2442 fixation_cross gabor_083 gabor_145 gabor_121 gabor_103 gabor_083_alt gabor_145 gabor_121_alt gabor_103 "2_10_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_083_145_121_103_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_058_framed blank blank blank blank fixation_cross_white "2_10_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1942 2992 2092 fixation_cross gabor_047 gabor_111 gabor_065 gabor_128 gabor_047_alt gabor_111 gabor_065 gabor_128_alt "2_11_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2100_gabor_patch_orientation_047_111_065_128_target_position_2_3_retrieval_position_1" gabor_047_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_11_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_047_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1992 2992 2192 fixation_cross gabor_099 gabor_042 gabor_027 gabor_080 gabor_099 gabor_042_alt gabor_027 gabor_080_alt "2_12_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_099_042_027_080_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_167_framed gabor_circ blank blank blank blank fixation_cross_white "2_12_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_167_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1942 2992 2142 fixation_cross gabor_054 gabor_171 gabor_122 gabor_017 gabor_054 gabor_171_alt gabor_122 gabor_017_alt "2_13_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2150_gabor_patch_orientation_054_171_122_017_target_position_1_3_retrieval_position_1" gabor_102_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_13_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1892 2992 1942 fixation_cross gabor_009 gabor_115 gabor_132 gabor_166 gabor_009_alt gabor_115 gabor_132_alt gabor_166 "2_14_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_009_115_132_166_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_166_framed blank blank blank blank fixation_cross_white "2_14_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_166_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1892 2992 2092 fixation_cross gabor_007 gabor_070 gabor_178 gabor_088 gabor_007_alt gabor_070 gabor_178_alt gabor_088 "2_15_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2100_gabor_patch_orientation_007_070_178_088_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_178_framed gabor_circ blank blank blank blank fixation_cross_white "2_15_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_178_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 2442 fixation_cross gabor_043 gabor_101 gabor_133 gabor_060 gabor_043 gabor_101 gabor_133_alt gabor_060_alt "2_16_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_043_101_133_060_target_position_1_2_retrieval_position_2" gabor_circ gabor_150_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_16_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_150_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 2492 fixation_cross gabor_173 gabor_037 gabor_127 gabor_108 gabor_173_alt gabor_037 gabor_127_alt gabor_108 "2_17_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_173_037_127_108_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_108_framed blank blank blank blank fixation_cross_white "2_17_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_108_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2042 2992 2292 fixation_cross gabor_001 gabor_077 gabor_140 gabor_029 gabor_001 gabor_077 gabor_140_alt gabor_029_alt "2_18_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_001_077_140_029_target_position_1_2_retrieval_position_1" gabor_001_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_18_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1992 2992 2342 fixation_cross gabor_080 gabor_016 gabor_104 gabor_044 gabor_080 gabor_016 gabor_104_alt gabor_044_alt "2_19_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_080_016_104_044_target_position_1_2_retrieval_position_1" gabor_080_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_19_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_080_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1742 2992 2142 fixation_cross gabor_179 gabor_163 gabor_058 gabor_021 gabor_179_alt gabor_163_alt gabor_058 gabor_021 "2_20_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_179_163_058_021_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_058_framed gabor_circ blank blank blank blank fixation_cross_white "2_20_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_038 gabor_002 gabor_171 gabor_154 gabor_038 gabor_002 gabor_171_alt gabor_154_alt "2_21_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_038_002_171_154_target_position_1_2_retrieval_position_1" gabor_083_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_21_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 2042 2992 1992 fixation_cross gabor_033 gabor_161 gabor_115 gabor_143 gabor_033_alt gabor_161 gabor_115 gabor_143_alt "2_22_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2050_3000_2000_gabor_patch_orientation_033_161_115_143_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_143_framed blank blank blank blank fixation_cross_white "2_22_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_143_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1792 2992 2042 fixation_cross gabor_127 gabor_095 gabor_046 gabor_016 gabor_127 gabor_095_alt gabor_046_alt gabor_016 "2_23_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_127_095_046_016_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_016_framed blank blank blank blank fixation_cross_white "2_23_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_016_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1892 2992 2042 fixation_cross gabor_173 gabor_127 gabor_063 gabor_003 gabor_173 gabor_127_alt gabor_063_alt gabor_003 "2_24_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_173_127_063_003_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_143_framed blank blank blank blank fixation_cross_white "2_24_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1892 2992 2492 fixation_cross gabor_050 gabor_092 gabor_077 gabor_138 gabor_050_alt gabor_092 gabor_077 gabor_138_alt "2_25_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2500_gabor_patch_orientation_050_092_077_138_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_122_framed gabor_circ blank blank blank blank fixation_cross_white "2_25_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_122_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1892 2992 2292 fixation_cross gabor_031 gabor_111 gabor_167 gabor_048 gabor_031_alt gabor_111 gabor_167 gabor_048_alt "2_26_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_2300_gabor_patch_orientation_031_111_167_048_target_position_2_3_retrieval_position_1" gabor_079_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_26_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_079_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 1892 fixation_cross gabor_155 gabor_071 gabor_115 gabor_178 gabor_155_alt gabor_071 gabor_115_alt gabor_178 "2_27_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_1900_gabor_patch_orientation_155_071_115_178_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_042_framed blank blank blank blank fixation_cross_white "2_27_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_042_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1742 2992 2392 fixation_cross gabor_084 gabor_132 gabor_046 gabor_014 gabor_084 gabor_132_alt gabor_046_alt gabor_014 "2_28_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_084_132_046_014_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_153_framed blank blank blank blank fixation_cross_white "2_28_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1792 2992 2042 fixation_cross gabor_121 gabor_036 gabor_016 gabor_174 gabor_121 gabor_036 gabor_016_alt gabor_174_alt "2_29_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_121_036_016_174_target_position_1_2_retrieval_position_2" gabor_circ gabor_036_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_29_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1992 2992 2042 fixation_cross gabor_085 gabor_069 gabor_008 gabor_114 gabor_085_alt gabor_069 gabor_008 gabor_114_alt "2_30_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_085_069_008_114_target_position_2_3_retrieval_position_2" gabor_circ gabor_024_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_30_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1842 2992 2242 fixation_cross gabor_052 gabor_020 gabor_134 gabor_158 gabor_052 gabor_020 gabor_134_alt gabor_158_alt "2_31_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_052_020_134_158_target_position_1_2_retrieval_position_1" gabor_100_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_31_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_100_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1842 2992 2492 fixation_cross gabor_087 gabor_108 gabor_043 gabor_158 gabor_087 gabor_108_alt gabor_043 gabor_158_alt "2_32_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_2500_gabor_patch_orientation_087_108_043_158_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_158_framed blank blank blank blank fixation_cross_white "2_32_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_158_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1742 2992 2092 fixation_cross gabor_167 gabor_081 gabor_096 gabor_128 gabor_167_alt gabor_081 gabor_096 gabor_128_alt "2_33_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_167_081_096_128_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_096_framed gabor_circ blank blank blank blank fixation_cross_white "2_33_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_096_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 1992 fixation_cross gabor_092 gabor_180 gabor_155 gabor_140 gabor_092_alt gabor_180 gabor_155 gabor_140_alt "2_34_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_092_180_155_140_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_018_framed gabor_circ blank blank blank blank fixation_cross_white "2_34_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_018_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2242 2992 2242 fixation_cross gabor_148 gabor_180 gabor_017 gabor_036 gabor_148 gabor_180_alt gabor_017 gabor_036_alt "2_35_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2250_gabor_patch_orientation_148_180_017_036_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_062_framed gabor_circ blank blank blank blank fixation_cross_white "2_35_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1742 2992 2542 fixation_cross gabor_108 gabor_177 gabor_090 gabor_159 gabor_108_alt gabor_177_alt gabor_090 gabor_159 "2_36_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_108_177_090_159_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_140_framed gabor_circ blank blank blank blank fixation_cross_white "2_36_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_140_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2092 2992 2592 fixation_cross gabor_106 gabor_025 gabor_043 gabor_149 gabor_106 gabor_025_alt gabor_043 gabor_149_alt "2_37_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2600_gabor_patch_orientation_106_025_043_149_target_position_1_3_retrieval_position_1" gabor_060_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_37_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2192 2992 2192 fixation_cross gabor_148 gabor_104 gabor_169 gabor_042 gabor_148_alt gabor_104 gabor_169_alt gabor_042 "2_38_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2200_3000_2200_gabor_patch_orientation_148_104_169_042_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_121_framed gabor_circ blank blank blank blank fixation_cross_white "2_38_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_121_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1842 2992 2342 fixation_cross gabor_095 gabor_025 gabor_147 gabor_180 gabor_095 gabor_025_alt gabor_147 gabor_180_alt "2_39_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_095_025_147_180_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_147_framed gabor_circ blank blank blank blank fixation_cross_white "2_39_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_147_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2092 2992 2242 fixation_cross gabor_007 gabor_178 gabor_028 gabor_118 gabor_007_alt gabor_178_alt gabor_028 gabor_118 "2_40_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_007_178_028_118_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_118_framed blank blank blank blank fixation_cross_white "2_40_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1942 2992 1992 fixation_cross gabor_170 gabor_011 gabor_098 gabor_060 gabor_170_alt gabor_011 gabor_098 gabor_060_alt "2_41_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2000_gabor_patch_orientation_170_011_098_060_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_098_framed gabor_circ blank blank blank blank fixation_cross_white "2_41_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_098_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1892 2992 2092 fixation_cross gabor_120 gabor_039 gabor_060 gabor_077 gabor_120 gabor_039 gabor_060_alt gabor_077_alt "2_42_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_120_039_060_077_target_position_1_2_retrieval_position_1" gabor_120_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_42_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_120_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 2042 2992 2192 fixation_cross gabor_124 gabor_055 gabor_164 gabor_019 gabor_124 gabor_055_alt gabor_164 gabor_019_alt "2_43_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2050_3000_2200_gabor_patch_orientation_124_055_164_019_target_position_1_3_retrieval_position_2" gabor_circ gabor_055_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_43_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_055_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1992 2992 2142 fixation_cross gabor_085 gabor_102 gabor_131 gabor_065 gabor_085_alt gabor_102 gabor_131_alt gabor_065 "2_44_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_085_102_131_065_target_position_2_4_retrieval_position_2" gabor_circ gabor_102_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_44_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 2292 fixation_cross gabor_011 gabor_150 gabor_121 gabor_165 gabor_011_alt gabor_150 gabor_121_alt gabor_165 "2_45_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_011_150_121_165_target_position_2_4_retrieval_position_2" gabor_circ gabor_150_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_45_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_150_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_077 gabor_017 gabor_097 gabor_149 gabor_077 gabor_017 gabor_097_alt gabor_149_alt "2_46_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_077_017_097_149_target_position_1_2_retrieval_position_1" gabor_077_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_46_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_077_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2192 2992 1942 fixation_cross gabor_120 gabor_165 gabor_054 gabor_039 gabor_120_alt gabor_165_alt gabor_054 gabor_039 "2_47_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_120_165_054_039_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_006_framed gabor_circ blank blank blank blank fixation_cross_white "2_47_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2092 2992 2492 fixation_cross gabor_136 gabor_049 gabor_103 gabor_169 gabor_136 gabor_049 gabor_103_alt gabor_169_alt "2_48_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2100_3000_2500_gabor_patch_orientation_136_049_103_169_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_120_framed blank blank blank blank fixation_cross_white "2_48_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_120_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1992 2992 1942 fixation_cross gabor_075 gabor_160 gabor_016 gabor_035 gabor_075 gabor_160 gabor_016_alt gabor_035_alt "2_49_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_1950_gabor_patch_orientation_075_160_016_035_target_position_1_2_retrieval_position_1" gabor_125_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_49_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_125_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1742 2992 1892 fixation_cross gabor_051 gabor_009 gabor_030 gabor_118 gabor_051 gabor_009_alt gabor_030_alt gabor_118 "2_50_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_051_009_030_118_target_position_1_4_retrieval_position_1" gabor_097_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_50_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2142 2992 2392 fixation_cross gabor_114 gabor_048 gabor_131 gabor_083 gabor_114_alt gabor_048 gabor_131 gabor_083_alt "2_51_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2400_gabor_patch_orientation_114_048_131_083_target_position_2_3_retrieval_position_2" gabor_circ gabor_003_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_51_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2192 2992 1942 fixation_cross gabor_124 gabor_147 gabor_172 gabor_061 gabor_124_alt gabor_147_alt gabor_172 gabor_061 "2_52_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_124_147_172_061_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_172_framed gabor_circ blank blank blank blank fixation_cross_white "2_52_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1842 2992 2292 fixation_cross gabor_084 gabor_020 gabor_129 gabor_047 gabor_084 gabor_020_alt gabor_129 gabor_047_alt "2_53_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_2300_gabor_patch_orientation_084_020_129_047_target_position_1_3_retrieval_position_2" gabor_circ gabor_068_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_53_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_068_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2092 2992 2542 fixation_cross gabor_138 gabor_090 gabor_048 gabor_170 gabor_138 gabor_090 gabor_048_alt gabor_170_alt "2_54_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_138_090_048_170_target_position_1_2_retrieval_position_1" gabor_138_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_54_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_138_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1942 2992 2242 fixation_cross gabor_050 gabor_035 gabor_122 gabor_088 gabor_050 gabor_035 gabor_122_alt gabor_088_alt "2_55_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2250_gabor_patch_orientation_050_035_122_088_target_position_1_2_retrieval_position_1" gabor_004_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_55_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2092 2992 1992 fixation_cross gabor_009 gabor_150 gabor_175 gabor_090 gabor_009 gabor_150_alt gabor_175_alt gabor_090 "2_56_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2100_3000_2000_gabor_patch_orientation_009_150_175_090_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_036_framed gabor_circ blank blank blank blank fixation_cross_white "2_56_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_036_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1842 2992 2142 fixation_cross gabor_156 gabor_094 gabor_043 gabor_178 gabor_156 gabor_094_alt gabor_043_alt gabor_178 "2_57_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_156_094_043_178_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_178_framed blank blank blank blank fixation_cross_white "2_57_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 2392 fixation_cross gabor_065 gabor_094 gabor_050 gabor_175 gabor_065_alt gabor_094 gabor_050 gabor_175_alt "2_58_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2400_gabor_patch_orientation_065_094_050_175_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_004_framed gabor_circ blank blank blank blank fixation_cross_white "2_58_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1792 2992 1892 fixation_cross gabor_135 gabor_019 gabor_055 gabor_161 gabor_135 gabor_019_alt gabor_055_alt gabor_161 "2_59_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_1900_gabor_patch_orientation_135_019_055_161_target_position_1_4_retrieval_position_1" gabor_135_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_59_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_135_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2242 2992 2142 fixation_cross gabor_151 gabor_012 gabor_032 gabor_118 gabor_151_alt gabor_012_alt gabor_032 gabor_118 "2_60_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2150_gabor_patch_orientation_151_012_032_118_target_position_3_4_retrieval_position_2" gabor_circ gabor_061_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_60_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_061_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 2592 fixation_cross gabor_072 gabor_144 gabor_056 gabor_020 gabor_072_alt gabor_144 gabor_056_alt gabor_020 "2_61_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2600_gabor_patch_orientation_072_144_056_020_target_position_2_4_retrieval_position_2" gabor_circ gabor_144_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_61_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_144_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1992 2992 2542 fixation_cross gabor_099 gabor_013 gabor_062 gabor_045 gabor_099 gabor_013 gabor_062_alt gabor_045_alt "2_62_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_099_013_062_045_target_position_1_2_retrieval_position_2" gabor_circ gabor_013_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_62_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1842 2992 1892 fixation_cross gabor_068 gabor_086 gabor_013 gabor_042 gabor_068 gabor_086 gabor_013_alt gabor_042_alt "2_63_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_068_086_013_042_target_position_1_2_retrieval_position_2" gabor_circ gabor_086_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_63_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_086_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2242 2992 2342 fixation_cross gabor_114 gabor_085 gabor_055 gabor_003 gabor_114_alt gabor_085 gabor_055_alt gabor_003 "2_64_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_114_085_055_003_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_139_framed blank blank blank blank fixation_cross_white "2_64_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 2242 2992 2042 fixation_cross gabor_043 gabor_012 gabor_149 gabor_176 gabor_043_alt gabor_012 gabor_149_alt gabor_176 "2_65_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2250_3000_2050_gabor_patch_orientation_043_012_149_176_target_position_2_4_retrieval_position_1" gabor_043_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_65_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_043_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1942 2992 2242 fixation_cross gabor_174 gabor_063 gabor_032 gabor_096 gabor_174_alt gabor_063_alt gabor_032 gabor_096 "2_66_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2250_gabor_patch_orientation_174_063_032_096_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_096_framed blank blank blank blank fixation_cross_white "2_66_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_096_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2092 2992 2592 fixation_cross gabor_132 gabor_042 gabor_160 gabor_113 gabor_132 gabor_042_alt gabor_160 gabor_113_alt "2_67_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2600_gabor_patch_orientation_132_042_160_113_target_position_1_3_retrieval_position_1" gabor_084_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_67_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2192 2992 2192 fixation_cross gabor_036 gabor_116 gabor_010 gabor_082 gabor_036 gabor_116_alt gabor_010_alt gabor_082 "2_68_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2200_gabor_patch_orientation_036_116_010_082_target_position_1_4_retrieval_position_1" gabor_036_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_68_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_116 gabor_096 gabor_075 gabor_034 gabor_116 gabor_096_alt gabor_075_alt gabor_034 "2_69_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_116_096_075_034_target_position_1_4_retrieval_position_1" gabor_162_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_69_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2192 2992 2292 fixation_cross gabor_005 gabor_177 gabor_116 gabor_071 gabor_005_alt gabor_177_alt gabor_116 gabor_071 "2_70_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2200_3000_2300_gabor_patch_orientation_005_177_116_071_target_position_3_4_retrieval_position_2" gabor_circ gabor_132_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_70_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_132_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; }; # baselinePost (at the end of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }; time = 0; duration = 5000; code = "BaselinePost"; port_code = 92; };
ebdf90eecf23eddccd148d2bd4130da64b331ade
449d555969bfd7befe906877abab098c6e63a0e8
/2741/CH4/EX4.7/Chapter4_Example7.sce
173ee71f966d3eb9e7a4160f4d7d4fb86cb7aeef
[]
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
751
sce
Chapter4_Example7.sce
clc clear //Input data M=27;//The mass of the substance in g t=100;//The temperature of the substance in degree centigrade a=3/100;//Area of cross section in cm^2 l=10;//The length of the coloumn through which liquid moves in cm Li=80;//Latent heat of Ice in cals per gram V1=1000;//The volume of water in cm^3 V2=1090;//The volume of Ice from the volume of water on freezing in cm^3 //Calculations v=l*a;//Decrease in volume in cm^3 V=V2-V1;//The decrease in volume of Ice in cm^3 Vi=V/1000;//The decrease in volume when one gram of ice melts in cm^3 S=(Li*v)/(Vi*M*t);//Specific heat of the substance incal/g degree centigrade //Output printf('The specific heat of the substance is %3.3f cal/g.degree centigrade ',S)
84ad3f6cc9b354d7a91e439f245320a87caf6007
01697f0dc71290a6b6e233849a73d19a883845f1
/sem04/lab06/l06q04.sce
4a69874c7a1df79b7c15598d03e39b2b15f69e68
[]
no_license
aaruni96/Math-Lab
5d83a13547308bd9d1b7daa28be29a49e1020fbd
488469c9aba9251f5725e0851fb19e2aef38d234
refs/heads/master
2021-01-12T06:29:53.790743
2018-04-27T09:21:40
2018-04-27T09:21:40
77,370,232
0
0
null
null
null
null
UTF-8
Scilab
false
false
395
sce
l06q04.sce
clc; clear; x=1.15:0.05:1.3; printf("\nX values"); disp(x); y=[1.08,1.1,1.12,1.14]; printf("\ny values"); disp(y); X=1.28; n=length(x); h=x(2)-x(1); p=(X-x(n))/h; sum1=y(n); term=1; printf("\nDifference Table"); for i=1:n-1 for j=1:n-i y(j)=y(j+1)-y(j); printf("\t%f",y(j)); end term=term*(p+i-1)/i; sum1=sum1+term*y(n-i); printf("\n"); end printf("\nThe value of f(1.28) : %f", sum1);
a609f55c1f5a2ee8c0284f88a6cd39c9de60d8b4
449d555969bfd7befe906877abab098c6e63a0e8
/632/CH4/EX4.4/example4_4.sce
502318127f0651af646c8b62deb2f69c1396f189
[]
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
136
sce
example4_4.sce
//clc() P = 195;//kPa T = 273;//K P1 = 250;//kPa T1 = P1 * T / P; disp("K",T1,"Maximum temperature to which tyre may be heated = ")
37032d8bcfe3f333a607f8ddb5dcb3cce0d8b807
717ddeb7e700373742c617a95e25a2376565112c
/278/CH19/EX19.3/ex_19_3.sce
e44779afebc4c16043201d1dbaa97a081fd757ff
[]
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
879
sce
ex_19_3.sce
// find.. clc //solution //given D=0.9//m N=200//rpm P=7500//W T=145//n //T1=2*T2 n=6 fb=15//N/mm^2 t=63//N/mm^2 v=%pi*N*D/60//m/s //let T1 and T2 be tneion on tight and slag side //P=(T1-T2)*v...eq1 //T1=2T2...eq2 //from 1 and 2 T2=796//N T1=1592//N //b=T1/14.5//mm printf("the widht is,%f mm\n",T1/14.5) printf("the widht is,say 112mm\n") b=112//mm T=(P*60)/(2*%pi*N)*1000//N-mm //((T*16)/(%pi*t))(1/3)=12.4*d^3 printf("the dia of shaft is,%f mm\n",(T/12.4)^(1/3)) printf("the dia of shaft is,say d=35mm\n") d=35//mm printf("width of pulley is B\n",112+13) t1=D*1000/300 + 2//mm printf("the thickness of pulley is,%f mm\n",t1) //let b1 minor axis,a1 major axis //a1=2*b1 M=2*T1/n*1000//N-mm //Z=(%pi/32)*b1*a1^2=(%pi)/8*b1^3=0.393*b1^3 //fb=M/Z b1=(M/(0.393*fb))^(1/3)//mm printf("the minor and moajor axis is,%f mm\n,%f mm",b1,2*b1)
86f2c8db5295de253f7eb4cd267b125e64df6e82
5c99f90e816244fbea65c73357432fb54ac25d09
/Okumura.sce
476ac9d8e57309cec8b747945be097b43c4c77d8
[]
no_license
varunkamble/story_book
6301153ce6898a4275f99017facd814ea1df1633
0bc1f9d059b9cc718e36ea0b8da4a53dd24812d3
refs/heads/master
2020-03-26T05:27:21.794874
2018-10-21T17:15:34
2018-10-21T17:15:34
144,558,147
0
1
null
2018-09-18T13:33:23
2018-08-13T09:31:05
Python
UTF-8
Scilab
false
false
1,312
sce
Okumura.sce
clc; clear all; hb=input("Enter the height of base station antenna:") hm=input("Enter the height of mobile station antenna:") Gt=input("Gain of the transmitting antenna:") Gr=input("Gain of the receiving antenna:") dist=input("Enter the distance between transmitting and receiving antenna:") Amu=24 f1=input("Enter the first frequency value:") f2=input("Enter the second frequency value:") f3=input("Enter the third frequency value:") f4=input("Enter the fourth frequency value:") f5=input("Enter the fifth frequency value:") d=[1:1:dist]' //////OUTDOOR PROPAGATION MODEL-OKUMURA MODEL//// Lfs = 32.45 + 20*log10(d) + 20*log10(f1) - 10*log10(Gt) - 10*log10(Gr) Lp1 = Lfs + Amu + hb + hm Lfs = 32.45 + 20*log10(d) + 20*log10(f2) - 10*log10(Gt) - 10*log10(Gr) Lp2 = Lfs + Amu + hb + hm Lfs = 32.45 + 20*log10(d) + 20*log10(f3) - 10*log10(Gt) - 10*log10(Gr) Lp3 = Lfs + Amu + hb + hm Lfs = 32.45 + 20*log10(d) + 20*log10(f4) - 10*log10(Gt) - 10*log10(Gr) Lp4 = Lfs + Amu + hb + hm Lfs = 32.45 + 20*log10(d) + 20*log10(f5) - 10*log10(Gt) - 10*log10(Gr) Lp5 = Lfs + Amu + hb + hm figure; plot(d,[Lp1 Lp2 Lp3 Lp4 Lp5]); xlabel('x--> D (distance in Km)','fontsize',4); ylabel('y--> Lp (path loss)','fontsize',4); title('Okumura model','fontsize',7); hl=legend(["200MHZ","400MHZ","600MHZ","800MHZ","1000MHZ"],4);
9527000aa87030191d22eeaf5a31d353a97f494d
090c4bc08ecd896fc1d76fa3454c03fa0cb805f0
/SciLab/laba4.sce
6954014f9d888656de5e47e3a8e0aa6d5c29890d
[]
no_license
GennadySX/pLabs
6c64cd2fdc87a204e9b675ef7cf54f4cae4356c7
50810647bcc7a48ce38d51c321b165a48560b5d6
refs/heads/master
2020-09-05T17:22:46.474588
2019-11-07T06:35:33
2019-11-07T06:35:33
220,167,548
0
0
null
null
null
null
UTF-8
Scilab
false
false
514
sce
laba4.sce
//лабораторная работа 4 clc A=[3 -5 1; 1 4 8]; B=[4;6]; disp(x=A\B, '*****РЕШЕНИЕ СИСТЕМЫ УРАВНЕНИЙ 1*****'); A=[2 -3 1; 0 5 -2]; B=[4;2]; disp(x=A\B, '*****РЕШЕНИЕ СИСТЕМЫ УРАВНЕНИЙ 2*****'); A=[5 -2 0; 1 1 1; 2 4 -3]; B=[2; 3; 29]; disp(x=A\B, '*****РЕШЕНИЕ СИСТЕМЫ УРАВНЕНИЙ 3*****'); A=[2 1 0 1; 1 -3 2 4; -5 0 -1 -7; 1 -6 2 6]; B=[8; 9; -5; 0]; disp(x=A\B, '*****РЕШЕНИЕ СИСТЕМЫ УРАВНЕНИЙ 4*****');
71cedee918e706079fd3781f8a8a66bb88bfc2ea
449d555969bfd7befe906877abab098c6e63a0e8
/226/CH10/EX10.9/example9_sce.sce
4b889eaa4d5f61c40fe143f0fb8c98367d854fee
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
268
sce
example9_sce.sce
//chapter 10 //example 10.9 //page 405 printf("\n") printf("given") Id=3*10^-3;Vds=10;Vdd=25;Vg=5.2;Vgsoff=-6;Idss=8*10^-3;R2=1*10^6; R=(Vdd-Vds)/Id//R=(Rs+Rd)/2 Rd=R/2 Rs=Rd Vgs=Id*Rs Vgs=Vgsoff*(1-sqrt(Id/Idss)) Vs=Id*Rs Vg=Vs-(-Vgs) R1=((Vdd-Vg)*R2)/Vg
cfa6d948c9fa968bd4fff8f1ca204ce462c2935b
449d555969bfd7befe906877abab098c6e63a0e8
/615/CH10/EX10.1/10_1.sce
23a164ee2b49e4aeb9978a7586eca347b7fee106
[]
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
517
sce
10_1.sce
//polymer chemistry// //example 10.1// N1=5;//no of molecules// N2=10; N3=20; N4=20; N5=10; M1=5000;//molecular mass of each molecule// M2=6000; M3=10000; M4=15000; M5=25000; M=(M1*N1+M2*N2+M3*N3+M4*N4+M5*N5)/(N1+N2+N3+N4+N5);//formula for number average molecular mass// printf("The number average molecular mass is %f",M); Mw=(N1*M1^2+N2*M2^2+N3*M3^2+N4*M4^2+N5*M5^2)/(M1*N1+M2*N2+M3*N3+M4*N4+M5*N5);//formula of weight-average molecular mass// printf("\nThe weight average molecular mass is %f",Mw);
345cda82c8dbad060dc25348e49c465f3b4a1f59
449d555969bfd7befe906877abab098c6e63a0e8
/147/CH18/EX18.6/Example18_6.sce
56fba1fae55283d37e9f82c168dae4cd26d0ddf4
[]
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
382
sce
Example18_6.sce
//Number of revolutions per kWh N1 at V and I, Time t for revolutions N2 close(); clear; clc; V = 230;//V I = 10;//A N1 = 900;//revolution t = 69;//seconds N2 = 20; theta = 0; //Energy consumed 'E' E = V*I/2*cos(theta)*t/3600*10^(-3); //Number of revolutions meter should have of running correct 'N' N = E*N1; Error = (N2-N)/N*100; mprintf('Error = %0.4f %%',Error);
691b8663cbc252d37887c6702ef0c5648c72f7fd
449d555969bfd7befe906877abab098c6e63a0e8
/3685/CH22/EX22.3/Ex22_3.sce
0b19ce9066bc16e22ff28c39db236e4564602529
[]
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
948
sce
Ex22_3.sce
clc // Given that lambda = 10 // Mean free path of the gas in cm N0 = 10000 // No of free paths x1 = 10 // In cm x2 = 20 // In cm x3 = 50 // In cm x4 = 5 // In cm x5 = 9.5 // In cm x6 = 10.5 // In cm x7 = 9.9 // In cm x8 = 10.1 // In cm printf("\n Example 22.3 \n") // For x>10 cm N1 = N0*(exp(-1)) // For x>20 cm N2 = N0*(exp(-2)) // For x>50 cm N3 = N0*(exp(-5)) function y=f(x), y = (-N0/lambda)*(exp((-x)/lambda)), endfunction // For 5>x>10 cm N4 = intg(x4,x1,f) // For 9.5>x>10.5 cm N5 = intg(x5,x6,f) // For 9.9>x>10.1 cm N6 = intg(x7,x8,f) // For x=10 cm N7 = intg(x1,x1,f) printf("\n The no of free paths which are longer than, \n 10 cm = %d,\n 20 cm = %d,\n 50 cm = %d,\n\n The no of free paths which are between,\n 5 cm and 10 cm = %d,\n 9.5 cm and 10.5 cm = %d,\n 9.9 cm and 10.1 cm = %d,\n\n The no of free paths which are exactly 10 cm = %d",ceil(N1),ceil(N2),ceil(N3),floor(N4),floor(N5),floor(N6),N7)
cd386d45b6115ccc39f65143dca7b514156473f0
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.0/macros/percent/%svr.sci
17944a4966863747fc8742d30a9ebe699f9dac7a
[ "MIT", "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
263
sci
%svr.sci
//<h>=%svr(h1,h2) // %svr(h1,h2) calcule (I+h1*h2)\h1. h1 matrice de scalaires, h2 matrice // de fractions rationnelles //! [m1,n1]=size(h1) [m2,n2]=size(h2(2)) if abs(n1-m2)+abs(m1-n2)<>0 then error('inconsistent dimensions'),end h=(eye(m1,m1)+h1*h2)\h1 //end
ec848a0f4700e6245b7054ce8745e9f4e1be9662
449d555969bfd7befe906877abab098c6e63a0e8
/1397/CH2/EX2.7/2_7.sce
739bef271bacac27c5c284a650980e3c76fb3a16
[]
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
442
sce
2_7.sce
//clc(); clear; //To determine the fundamental frequency t=0.001; //thickness of the crystal in metres rho=2650; //density of quartz in kg/m^3 Y=7.9*10^10; //youngs modulus in N/m^2 V=sqrt(Y/rho); printf("the fundamental frequency is %f m/s",V); //For fundamental mode of vibration, the thickness must be equal to lambda/2 lambda=2*t; new=V/lambda; printf("the fundamental frequency is %f Hz",new);
0714c0741aff5bf27f103bad8656511fefa699c0
2a39d29b2cb27e98632f6810ed3c2a22a56fa8eb
/Materias/LabCalcNum/Rafael/secante.sci
247660c28a8ccbd78b123604597001ae6baeadc7
[]
no_license
rafael747/my-stuff
74358384bc1a5b381d1951dfaef87efdf4cb53c2
8614aefdc3ca9afdc1534557f73719af8494f7fa
refs/heads/master
2021-01-17T12:47:48.206860
2020-06-04T15:10:20
2020-06-04T15:10:20
57,989,835
2
0
null
null
null
null
UTF-8
Scilab
false
false
688
sci
secante.sci
function [raiz, x, iter, ea]=secante(xi,xf,f,tol,imax) iter = 0; // inicializa numero de iteracoes x1 = xi; x2 = xf //x(iter+1)=x1; // insere raiz inicial no vetor de raizes while (1) xrold = x2; xr = x2-f(x2).*(x1-x2) ./(f(x1)-f(x2)) iter = iter+1; x(iter)=xr if(xr ~= 0) then // calcula erro relativo ea(iter)=abs((xr-xrold)/xr); end; if(ea(iter) <= tol) then // se erro relativo menor que tol, FIM raiz = xr; return; end; if(iter >= imax) then // se excedeu num. maximo de iteracoes, FIM error('Número Máximo de Iterações Alcançado'); end; x1=x2 x2=xr end
22cc6c34f5bc3f3d5b7ad9cac37630689800f03a
449d555969bfd7befe906877abab098c6e63a0e8
/1388/CH4/EX4.10/4_10.sce
90283a1db576b4f61e11f5ba71c974cfc278176f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
290
sce
4_10.sce
clc //initialisation of variables a= 1.360 //l^2 atm mole^-1 b= 0.0317 //l mole^-1 R= 0.08205 //J/mol K R1= 1.987 //cal/mole K Cp= 6.9 //cal mole^-1 deg^-1 T= 273.2 //K //CALCULATIONS u= ((2*a/(R*T))-b)/(Cp*(R/R1)) //RESULTS printf (' Joule thomson coefficient= %.3f atm^-1',u)
11359296b371c220f54f4255c5ea9ee60540fc90
449d555969bfd7befe906877abab098c6e63a0e8
/2939/CH11/EX11.1/Ex11_1.sce
56be256d1dc571ea328eb687b2816a05ba91ffdf
[]
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,774
sce
Ex11_1.sce
//Ex11_1 clc; //Given: density1=1.000;// for water in CGS units density2=0.789;// for ethanol in CGS units density3=0.793;// for methanol in CGS units l=6.023*10^23;// avogadro constant ue=0.211;// electron absorption coefficent in barn per electron // 1 b=10^(-24) cm^2 //solution: (a) Water z1=10;// no. of electrons a1=18;// atomic mass of water uw=ue*z1;//molecule absorption coefficient umw=(uw*l*10^-24)/a1;//mass absorption coefficient ulw=umw*density1;// linear absorption coefficient printf("\n The molecule absorption coefficient of water in b/molecule is = %f ",uw) printf("\n The mass absorption coefficient of water in cm^2/g is = %f ",umw) printf("\n The linear absorption coefficient of water in cm^-1 is = %f ",ulw) //solution: (b) ethanol z2=26;// no. of electrons a2=46;// atomic mass of water ueth=ue*z2;//molecule absorption coefficient umeth=(ueth*l*10^-24)/a2;//mass absorption coefficient uleth=umeth*density2;// linear absorption coefficient printf("\n \n The molecule absorption coefficient of ethanol in b/molecule is = %f ",ueth) printf("\n The mass absorption coefficient of ethanol in cm^2/g is = %f ",umeth) printf("\n The linear absorption coefficient of ethanol in cm^-1 is = %f ",uleth) //solution: (c) methanol z3=18;// no. of electrons a3=32;// atomic mass of water umet=ue*z3;//molecule absorption coefficient ummet=(umet*l*10^-24)/a3;//mass absorption coefficient ulmet=ummet*density3;// linear absorption coefficient printf("\n \n The molecule absorption coefficient of methanol in b/molecule is = %f ",umet) printf("\n The mass absorption coefficient of methanol in cm^2/g is = %f ",ummet) printf("\n The linear absorption coefficient of methanol in cm^-1 is = %f ",ulmet)
c3a42d4dc5aee04079345962dc1529e0a32ca682
449d555969bfd7befe906877abab098c6e63a0e8
/3843/CH4/EX4.10/Ex4_10.sce
dc6b6c95c39e942bad711c4f7b04f1c22bb44e7e
[]
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
378
sce
Ex4_10.sce
// Example 4_10 clc;funcprot(0); // Given data V=0.02;// m^3 T_1=50;// °C P=400;// kPa Q=50;// The amount of heat added in kJ T_2=700;// °C R=287;// J/kg.K c_p=1.00;// kJ/kg.K // Calculation m=((P*10^3)*V)/(R*(T_1+273));// The mass in kg W_paddle=Q-(m*c_p*(T_2-T_1));// The paddel-wheel work in kJ printf("\nThe paddel-wheel work,W_paddle=%1.3f kJ",W_paddle);
b8c79dd7ad754073e5c4cd0c0f7172be1f65de7d
449d555969bfd7befe906877abab098c6e63a0e8
/1619/CH3/EX3.2.7/Example3_2_7.sce
0e56f6f8214951e649d527aa36fc0cb72f6541a5
[]
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
502
sce
Example3_2_7.sce
//Example 3.2.7 page 3.16 clc; clear; lamda = 0.87*10^-6; Tr= 50*10^-9; I= 0.04; Tnr= 110*10^-9; t= Tr*Tnr/(Tr+Tnr); t=t*10^9; //converting in ns... printf("Total carrier recombination life time is %.2f ns",t); t=t/10^9; h= 6.625*10^-34; //plancks const c= 3*10^8; q=1.602*10^-19; n= t/Tr; printf("\n\nThe efficiency is %.3f %%",n); Pint=(n*h*c*I)/(q*lamda)*1000; printf("\n\nInternal power generated is %.2f mW",Pint); printf("\n\n***NOTE- Internal Power wrong in book... ");
04d12f32a294edbeb1b9390eb542e3ad916e6fbe
449d555969bfd7befe906877abab098c6e63a0e8
/1859/CH7/EX7.19/exa_7_19.sce
ad616d953aab971047cca4431e3f42400c733eed
[]
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
476
sce
exa_7_19.sce
// Exa 7.19 clc; clear; close; // Given data R1= 500;//in ohm R2= 1000;// in ohm R3= R2;//in ohm L1= 0.18;// in H f= 5000/(2*%pi);// in Hz omega= 2*%pi*f; // L1= R2*R3*C4/(1+(omega*C4*R4)^2) (i) // and R1= R2*R3*R4*omega^2*C4^2/(1+(omega*C4*R4)^2) or R1= omega^2*R4*C4*L1 R4C4= R1/(omega^2*L1); // From eq (i) C4= L1*(1+(omega*R4C4)^2)/(R2*R3);// in F disp(C4*10^6,"Value of C in micro F"); R4= R4C4/C4;// in ohm disp(round(R4),"Value of R4 in ohm")
412c98aa88c21ef3947f950642b7599ba85db03f
449d555969bfd7befe906877abab098c6e63a0e8
/3872/CH8/EX8.8/EX8_8.sce
e11b07266d4f81cc851622af6e6244ea1bcfd73d
[]
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,465
sce
EX8_8.sce
//Book - Power System: Analysis & Design 5th Edition //Authors - J. Duncan Glover, Mulukutla S. Sarma, and Thomas J. Overbye //Chapter - 8 ; Example 8.8 //Scilab Version - 6.0.0 ; OS - Windows clc; clear; Q = 900; //rated power in MVA Vg = 13.8; //generator voltage in kV Vt = 345; //transmission line voltage in kV Vd = 34.5; //distribution line voltage in kV V1 = 13.8; //voltage at the winding X in kV V2 = 199.2; //voltage at the winding H in kV V3 = 19.92; //voltage at the winding M in kV Zn = %i*0.10; //neutral impedance in ohm VbaseX = 13.8; //rated line to line voltage of terminal X in kV VbaseM = sqrt(3)*V3; //rated line to line voltage of terminal M in kV ZbaseM = (Vd^2)/Q; //base impedance of medium line voltage in ohm Zn = Zn/ZbaseM; //neutral impedance in per unit printf('\n The base impedance of medium voltage terminal ZbaseM is %f ohm',ZbaseM); printf('\n The per unit neutral impedance is Zn is i%0.4f per unit', imag(Zn));
03fc4b0da635f8845c70042459f9d5fa510eb871
449d555969bfd7befe906877abab098c6e63a0e8
/2990/CH5/EX5.3/Ex5_4.sce
bf51894bf1b63c9c8727647af14ee100820166c0
[]
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
681
sce
Ex5_4.sce
funcprot(0); // Initialization of Variable function[dms]=degtodms(deg) d = int(deg) md = abs(deg - d) * 60 m = int(md) sd = (md - m) * 60 sd=round(sd*100)/100 dms=[d m sd] endfunction LMT=21+23.0/60+05.0/3600//local chronometer time Long=65.0+19.0/60//longitude GST=13+15.0/60+20.0/3600; RA=9+32.0/60+15.0/3600; Long2=82.0+30.0/60//longitude of India //calculation e1=Long/15*9.8565/3600//error SIT=RA+24-GST+e1//sidereal time interval after LMM e2=SIT*9.8296/3600//error MI=SIT-e2//mean interval after LMM LMT=LMT-(Long2-Long)/15.0; CE=MI-LMT; CE=degtodms(CE); disp(CE,"chronometer error in hours,min,sec respectively"); clear()
f3a48e68049f11d863fa775d266ac10b5905ed66
717ddeb7e700373742c617a95e25a2376565112c
/3044/CH7/EX7.5/Ex7_5.sce
a3fa9cb4c177a0e5c98d85caf7e06b662c439f80
[]
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
463
sce
Ex7_5.sce
// Variable declaration n = 100 // sample size Mean = 21.6 // sample mean std_dev = 5.1 // standard deviation // Calculation // as alpha = 0.05 , z(alpha/2) = 1.96 Z = 1.96 y1 = Mean - Z*(std_dev / sqrt(n)) // lower limit of range y2 = Mean + Z*(std_dev / sqrt(n)) // upper limit of range // Result printf ( "95%% confidence interval: ( %.2f , %.2f )",y1,y2)
166257fb944540dd845eecbdeec5b256aabc1b4b
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH23/EX23.5/Ex23_5.sce
5dff280878c03426b6c7d482efd8bfa045dfa6f9
[]
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
55
sce
Ex23_5.sce
clc; BD=6000; B1=BD; B2=B1; B=sqrt(BD); disp(B);
871f07d3ae1fe38eeebd52445cd2fa708fbc40c4
8458ae69238b4e9e89cec1f6bdb30f6d009e3053
/plots/PlotFrequency.sci
997254847821385553cf4c929ded72a07c93d13a
[]
no_license
keigorori/signal_processing
aa5f18bcb2be385ce3a4fef208d29b05a036faf9
a30e41e3fd2c3287af43e0d4bd554020a5055ff3
refs/heads/master
2020-04-05T10:45:01.018660
2019-02-08T02:08:59
2019-02-08T02:08:59
156,809,290
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,192
sci
PlotFrequency.sci
//////////////////////// // 周波数のプロット //////////////////////// function PlotFrequency(signal, samplingRate, windowType, handle, style, displayRect) // 波形サンプル数 N = size(signal, 'c'); // 窓の生成 & 補正係数設定 win = window(windowType, N); if windowType =='hn' // ハン窓 win_adj_coef = 0.5; elseif windowType =='hm' // ハミング窓 win_adj_coef = 0.54; else // 矩形窓 win_adj_coef = 1; end // フーリエ変換 FFT_abs = abs( fft(signal.*win) ); // 窓掛けた信号をfftして振幅をとる FFT_normalize = FFT_abs / N; // fft長による正規化(1/N)) FFT_adj = FFT_normalize * (2/win_adj_coef); //折り返し分を補正(2倍), 窓の影響を補正(1/win_adj_coef) FFT_db = 20*log10(FFT_adj); // パワースペクトルに変換 // x軸(samplingRate/N:分解能、振幅スペクトルはN/2で線対称となるので0~N/2の範囲を使う) xGrid = samplingRate*(0:(N/2))/N; // プロット scf(handle); plot2d("ln", xGrid, FFT_db(1:size(xGrid,'c')), style, rect=displayRect); xtitle('パワースペクトル', '[Hz]', '[dB]'); endfunction
028153ea70ce4d0df6634202f0842162444fd609
449d555969bfd7befe906877abab098c6e63a0e8
/3863/CH4/EX4.14/Ex4_14.sce
731aa56c8dcd45cad8fc6fe66da6b2a25f9b923d
[]
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
Ex4_14.sce
clear // //Given //Variable declaration d=12.5 //Diameter of the rod in mm delL=3.2 //Increase in length in mm W=10*1000 //Steady load in N P=700 //Falling load in N h=75 //Falling height in mm E=2.1e5 //Youngs modulus in N/sq.mm //Calculation A=((%pi/4)*d**2) //Area of rod in sq.mm L=(E*A*delL/W) //Length of the rod in mm sigma=((P/A)*(1+(sqrt(1+((2*E*A*h)/(P*L)))))) //Stress produced by the falling weight in N/mm^2 //Result printf("\n NOTE:The given answer for stress is wrong.The correct answer is,") printf("\n Stress = %.2f N/mm^2",sigma)
19a63e9af4618bed1cc5f3352e9a5f2527edd166
449d555969bfd7befe906877abab098c6e63a0e8
/716/CH9/EX9.7/Solved_Ex9_7.sce
40180ea4895eaddad956bb63011c8c6065f0fb17
[]
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
Solved_Ex9_7.sce
//Determine the Response of LTI system if input x(n)={-1 1 2 1 -1} and impulse Response h(n)={-1 1 -1 1} clc; clear; x=[-1 1 2 1 -1]; disp(x,'Input signal=> x(n)='); h=[-1 1 -1 1]; disp(h,'Impulse Response=> h(n)='); k=length(x)+length(h)-1; for n=length(x)+1:1:k x(n)=0;//appending 0s end for n=length(h)+1:1:k h(n)=0;//appending 0s end n=0:1:k; X=fft(x); disp(X,'4 point FFT of x(n)=>'); H=fft(h); disp(X,'4 point FFT of h(n)=>'); Y=X.*H; y=ifft(Y); disp(y,'Response to input,x(n)=> y(n)=');
33b18cc112c63ff4da48fe27dfd0668f5d8920fc
449d555969bfd7befe906877abab098c6e63a0e8
/226/CH19/EX19.23/example23_sce.sce
070ea9575694ba7589be1623b3a9201b76e7e926
[]
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
325
sce
example23_sce.sce
//chapter 19 //example 19.23 //page 871 printf("\n") printf("given") Vcc=23;Rl=8;Rf2=100*10^3;Rf1=5.6*10^3;Cf=1*10^-6; Vp=Vcc-5 Po=(Vp)^2 /(2*Rl); printf("maximum output power is %3.2fW\n",Po) Acl=(Rf1+Rf2)/Rf1; printf(" voltage gain %3.1f\n",Acl) f=1/(2*3.14*Cf*Rf1); printf("lower cutoff frequency is %dHz\n",f)
6884267d34dbc5bcabc79dd11886c4ec7a835e3c
449d555969bfd7befe906877abab098c6e63a0e8
/620/CH9/EX9.7/example9_7.sce
60f49215035d80b46aa5c23a0da0076fdc35f6da
[]
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
815
sce
example9_7.sce
rl1=4; rl2=8; rl3=16; rl4=100; v=40; r=8; disp("when load is 4 Ω"); vl1=v*rl1/(rl1+r); disp("the load voltage (in V) is"); disp(vl1); pl1=vl1^2/rl1; p1=v^2/(rl1+r); n1=pl1*100/p1; disp("the efficiency (in %) is"); disp(n1); disp("when load is 8 Ω"); vl2=v*rl2/(rl2+r); disp("the load voltage (in V) is"); disp(vl2); pl2=(vl2^2)/rl2; p2=(v^2)/(rl2+r); n2=pl2*100/p2; disp("the efficiency (in %) is"); disp(n2); disp("when load is 16 Ω"); vl3=v*rl3/(rl3+r); disp("the load voltage (in V) is"); disp(vl3); pl3=vl3^2/rl3; p3=v^2/(rl3+r); n3=pl3*100/p3; disp("the efficiency (in %) is"); disp(n3); disp("when load is 100 Ω"); vl4=v*rl4/(rl4+r); disp("the load voltage (in V) is"); disp(vl4); pl4=vl4^2/rl4; p4=v^2/(rl4+r); n4=pl4*100/p4; disp("the efficiency (in %) is"); disp(n4);
7f4f6dc0652c49ca4884fff355175d0873a4d98a
449d555969bfd7befe906877abab098c6e63a0e8
/2414/CH15/EX15.5/Ex15_5.sce
e0a4c798d8080ea26bb2bdb1a6a896e7b59495e4
[]
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
176
sce
Ex15_5.sce
clc; close(); clear(); //page no 504 //prob no. 15.5 d=10^5; //m Pt=100; //W Gt=50; Pd=Gt*Pt/(4*%pi*d^2); mprintf('The power density is ,Pd= %.2f nW/m^2',Pd*10^9);
8cd7e426b3cb83842e33bf9be5e9f17b30354404
449d555969bfd7befe906877abab098c6e63a0e8
/3862/CH11/EX11.3/Ex11_3.sce
9ebd4586b835c7edcb16ce13743e669ef231e18a
[]
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
655
sce
Ex11_3.sce
clear //The direct stresses at a point in the strained material are 120 N/mm2 compressive and 80 N/mm2 tensile. There is no shear stress. // //variable declaration //The plane AC makes 30° (anticlockwise) to the plane of px (y-axis). Hence theta= 30°. px = 80 N/mm^2 py = – 120 N/mm^2 ,q = 0 px=(80) py=(-120) q=(0) theta=30 pn=((px+py)/2)+((px-py)/2)*cos(2*theta*%pi/180)+q*sin(2*theta*%pi/180) printf("\n pn= %0.0f N/mm^2",pn) pt=((px-py)/2)*sin(2*theta*%pi/180)-q*cos(2*theta*%pi/180) printf("\n pt= %0.1f N/mm^2",pt) p=sqrt((pn**2)+(pt**2)) printf("\n p= %0.2f N/mm^2",p) alpha=atan(pn/pt)*180/%pi printf("\n alpha= %0.1f °",alpha)
0587f0e55cc5d4e94aee1309e6ac98165cd578a7
897ce6a3fd5b682122c396af7e24fa53014c7cb3
/src_script/scilab/_import/rtsx_10/common/tb_optparse.sci
026571a7de0b0b9d3389409f1bdc2b248c2467dd
[]
no_license
stub22/glue-ai-v1_friendularity
e66f5ab357eba45de2def6f7900f414e358a4125
74949dc3e9b0d08b39857735aad901915e61322d
refs/heads/master
2022-12-19T18:57:01.336831
2017-08-04T12:55:12
2017-08-04T12:55:12
284,544,364
0
0
null
2020-10-14T00:08:14
2020-08-02T21:24:34
Java
UTF-8
Scilab
false
false
8,490
sci
tb_optparse.sci
// tb_optparse.sci // Remark: I have no idea how to adapt this one // so it is not used. // This function is adapted from The Robotics Toolbox for Matlab (RTB). // Copyright (C) 1993-2011, by Peter I. Corke // http://www.petercorke.com // OPTPARSE Standard option parser for Toolbox functions // // [OPTOUT,ARGS] = TB_OPTPARSE(OPT, ARGLIST) is a generalized option parser for // Toolbox functions. It supports options that have an assigned value, boolean // or enumeration types (string or int). // // The software pattern is: // // function(a, b, c, varargin) // opt.foo = true; // opt.bar = false; // opt.blah = []; // opt.choose = {'this', 'that', 'other'}; // opt.select = {'#no', '#yes'}; // opt = tb_optparse(opt, varargin); // // Optional arguments to the function behave as follows: // 'foo' sets opt.foo <- true // 'nobar' sets opt.foo <- false // 'blah', 3 sets opt.blah <- 3 // 'blah', {x,y} sets opt.blah <- {x,y} // 'that' sets opt.choose <- 'that' // 'yes' sets opt.select <- 2 (the second element) // // and can be given in any combination. // // If neither of 'this', 'that' or 'other' are specified then opt.choose <- 'this'. // If neither of 'no' or 'yes' are specified then opt.select <- 1. // // Note: // - That the enumerator names must be distinct from the field names. // - That only one value can be assigned to a field, if multiple values // are required they must be converted to a cell array. // - To match an option that starts with a digit, prefix it with 'd_', so // the field 'd_3d' matches the option '3d'. // // The allowable options are specified by the names of the fields in the // structure opt. By default if an option is given that is not a field of // opt an error is declared. // // Sometimes it is useful to collect the unassigned options and this can be // achieved using a second output argument // [opt,arglist] = tb_optparse(opt, varargin); // which is a cell array of all unassigned arguments in the order given in // varargin. // // The return structure is automatically populated with fields: verbose and // debug. The following options are automatically parsed: // 'verbose' sets opt.verbose <- true // 'verbose=2' sets opt.verbose <- 2 (very verbose) // 'verbose=3' sets opt.verbose <- 3 (extremeley verbose) // 'verbose=4' sets opt.verbose <- 4 (ridiculously verbose) // 'debug', N sets opt.debug <- N // 'setopt', S sets opt <- S // 'showopt' displays opt and arglist // Ryan Steindl based on Robotics Toolbox for MATLAB (v6 and v9) // // Copyright (C) 1993-2011, by Peter I. Corke // // This file is part of The Robotics Toolbox for MATLAB (RTB). function [opt,others] = tb_optparse(in, argv) false=0; true = 1; nargin = argn(2); nargout = argn(1); if nargin == 1 argv = []; end if ~iscell(argv) error('RTB:tboptparse:badargs', 'input must be a cell array'); end arglist = []; argc = 1; opt = in; opt.verbose = false; opt.debug = 0; showopt = false; while argc <= length(argv) option = argv(argc); assigned = false; if type(option)==10 select option // look for hardwired options case 'verbose' opt.verbose = true; assigned = true; case 'verbose=2' opt.verbose = 2; assigned = true; case 'verbose=3' opt.verbose = 3; assigned = true; case 'verbose=4' opt.verbose = 4; assigned = true; case 'debug' opt.debug = argv{argc+1}; argc = argc+1; assigned = true; case 'setopt' new = argv{argc+1}; argc = argc+1; assigned = true; // copy matching field names from new opt struct to current one for f=fieldnames(new)' if isfield(opt, f(1)) opt = setfield(opt, f(1), getfield(new, f(1)); end end case 'showopt' showopt = true; assigned = true; else // does the option match a field in the opt structure? if isfield(opt, option) | isfield(opt, ['d_' option]) if ~isfield(opt, option) option = ['d_' option]; end val = getfield(opt, option); if or(type(val)==[4,6]) // islogical(val) // a logical variable can only be set by an option opt = setfield(opt, option, true); else // otherwise grab its value from the next arg try opt = setfield(opt, option, argv{argc+1}); catch me if strcmp(me.identifier, 'MATLAB:badsubscript') error('RTB:tboptparse:badargs', 'too few arguments provided'); else rethrow(me); end end argc = argc+1; end assigned = true; elseif length(option)>2 && strcmp(option(1:2), 'no') && isfield(opt, option(3:end)) val = getfield(opt, option(3:end)); if islogical(val) // a logical variable can only be set by an option opt = setfield(opt, option(3:end), false); assigned = true; end else // the option doesnt match a field name for field=fieldnames(opt)' val = getfield(opt, field{1}); if iscell(val) for i=1:length(val) if isempty(val{i}) continue; end if strcmp(option, val{i}) opt = setfield(opt, field{1}, option); assigned = true; break; elseif val{i}(1) == '#' && strcmp(option, val{i}(2:end)) opt = setfield(opt, field{1}, i); assigned = true; break; end end if assigned break; end end end end end // select end if ~assigned // non matching options are collected if nargout == 2 arglist = [arglist argv(argc)]; else if isstr(argv{argc}) error(['unknown options: ' argv{argc}]); end end end argc = argc + 1; end // while // if enumerator value not assigned, set the default value if ~isempty(in) for field=fieldnames(in)' if iscell(getfield(in, field{1})) && iscell(getfield(opt, field{1})) val = getfield(opt, field{1}); if isempty(val{1}) opt = setfield(opt, field{1}, val{1}); elseif val{1}(1) == '#' opt = setfield(opt, field{1}, 1); else opt = setfield(opt, field{1}, val{1}); end end end end if showopt fprintf('Options:\n'); opt arglist end if nargout == 2 others = arglist; end endfunction
c3a8a1cabff3c6a4ffe3418c61ea0d17d37dbd29
ece5c630921508b439ed25c5f7ab3db5a66f7a1a
/Assignment2_Team8/Comparator8Bit.tst
9506e7a44198c8fcf883d709b694aa2ab2fe0ba6
[]
no_license
VedantS01/HDLProjectsCS2310
f8d17d1c9c28034a21026a4fbe2ae5d38cf39330
d2a39a4c062173475bd06ff0b3396f1ac6303103
refs/heads/main
2023-06-19T20:42:48.411561
2021-07-14T19:37:51
2021-07-14T19:37:51
386,054,022
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,322
tst
Comparator8Bit.tst
load Comparator8Bit.hdl, output-file Comparator8Bit.out, //compare-to And.cmp, output-list a0%B3.1.3 a1%B3.1.3 a2%B3.1.3 a3%B3.1.3 a4%B3.1.3 a5%B3.1.3 a6%B3.1.3 a7%B3.1.3 b0%B3.1.3 b1%B3.1.3 b2%B3.1.3 b3%B3.1.3 b4%B3.1.3 b5%B3.1.3 b6%B3.1.3 b7%B3.1.3 small%B3.1.3 equal%B3.1.3 large%B3.1.3; set a0 1, set a1 1, set a2 0, set a2 0, set a3 0, set a4 0, set a5 0, set a6 0, set a7 0, set b0 0, set b1 0, set b2 0, set b3 0, set b4 0, set b5 0, set b6 0, set b7 0, eval, output; set a0 0, set a1 0, set a2 0, set a2 0, set a3 0, set a4 0, set a5 0, set a6 0, set a7 0, set b0 0, set b1 0, set b2 0, set b3 0, set b4 0, set b5 0, set b6 0, set b7 0, eval, output; set a0 1, set a1 1, set a2 1, set a2 1, set a3 1, set a4 0, set a5 1, set a6 0, set a7 1, set b0 1, set b1 1, set b2 1, set b3 1, set b4 0, set b5 1, set b6 0, set b7 1, eval, output; set a0 0, set a1 1, set a2 1, set a2 0, set a3 1, set a4 0, set a5 1, set a6 0, set a7 1, set b0 1, set b1 0, set b2 1, set b3 0, set b4 1, set b5 0, set b6 1, set b7 0, eval, output; set a0 1, set a1 0, set a2 0, set a2 1, set a3 0, set a4 1, set a5 0, set a6 1, set a7 0, set b0 0, set b1 1, set b2 0, set b3 1, set b4 0, set b5 1, set b6 0, set b7 1, eval, output;
832ba69dc26f934d08f3a82b8c39a23b5eb4e3ca
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/WINGMAN TRAIN EDIT BOY.sce
30c537101c6c9d088fd4e3db28e1b631310334c0
[]
no_license
MBHuman/Scenarios
be1a722825b3b960014b07cda2f12fa4f75c7fc8
1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137
refs/heads/master
2023-01-14T02:10:25.103083
2020-11-21T16:47:14
2020-11-21T16:47:14
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
196,407
sce
WINGMAN TRAIN EDIT BOY.sce
Name=WINGMAN TRAIN EDIT BOY PlayerCharacters=Apex Legend Sniper BotCharacters=Apex No Shield.bot;Apex Blue Shield.bot;Apex White Shield.bot;Apex Purple Shield.bot;Apex NoAttack NoShield.bot;Apex NoAttack PurpleShield.bot;Apex NoAttack BlueShield.bot;Apex NoAttack WhiteShield.bot IsChallenge=true Timelimit=60.0 PlayerProfile=Apex Legend Sniper AddedBots=Apex NoAttack NoShield.bot;Apex NoAttack PurpleShield.bot;Apex NoAttack PurpleShield.bot;Apex NoAttack BlueShield.bot;Apex NoAttack BlueShield.bot;Apex NoAttack WhiteShield.bot;Apex NoAttack WhiteShield.bot;Apex NoAttack NoShield.bot;Apex NoAttack NoShield.bot;Apex NoAttack PurpleShield.bot;Apex NoAttack NoShield.bot;Apex NoAttack NoShield.bot;Apex NoAttack NoShield.bot;Apex NoAttack NoShield.bot PlayerMaxLives=0 BotMaxLives=1;1;1;1;1;1;1;1;1;1;1;1;1;1 PlayerTeam=1 BotTeams=2;2;2;2;2;2;2;2;2;2;2;2;2;2 MapName=smallobstacles_midrange_aimmap-converted.map MapScale=1.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=true InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=2.0 ScoreToWin=1999.0 ScorePerDamage=2.0 ScorePerKill=75.0 ScorePerMidairDirect=10.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=true ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=Apex Legends - Advanced Aim Training +Map SniperForum WeaponHeroTag=Kraber,G7-Scout,Longbow,Triple Take, Apex legends DifficultyTag=2 AuthorsTag=MrJ4nes BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=Advanced Apex Legends Aim Trainer Series(SniperMidRangeTraining) +Realistic Weapon Behaviour+ SniperMap GameVersion=2.0.0.2 ScorePerDistance=0.0 MBSEnable=false MBSTime1=0.25 MBSTime2=0.5 MBSTime3=0.75 MBSTime1Mult=1.0 MBSTime2Mult=2.0 MBSTime3Mult=3.0 MBSFBInstead=false MBSRequireEnemyAlive=false [Aim Profile] Name=Medium Skill MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Bot Profile] Name=Apex No Shield DodgeProfileNames=Fast Strafes Close;Mimic;ADAD;Short Strafes Jumping DodgeProfileWeights=2.0;1.5;1.0;1.0 DodgeProfileMaxChangeTime=2.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.0;0.0;0.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Medium Skill;Medium Skill;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Apex No Shield SeeThroughWalls=false NoDodging=false NoAiming=false AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=Apex Blue Shield DodgeProfileNames=Fast Strafes Close;Mimic;ADAD;Short Strafes Jumping DodgeProfileWeights=2.0;1.5;1.0;1.0 DodgeProfileMaxChangeTime=2.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.0;0.0;0.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Medium Skill;Medium Skill;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Apex Blue Shield SeeThroughWalls=false NoDodging=false NoAiming=false AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=Apex White Shield DodgeProfileNames=Fast Strafes Close;Mimic;ADAD;Short Strafes Jumping DodgeProfileWeights=2.0;1.5;1.0;1.0 DodgeProfileMaxChangeTime=2.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.0;0.0;0.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Medium Skill;Medium Skill;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Apex White Shield SeeThroughWalls=false NoDodging=false NoAiming=false AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=Apex Purple Shield DodgeProfileNames=Fast Strafes Close;Mimic;ADAD;Short Strafes Jumping DodgeProfileWeights=2.0;1.5;1.0;1.0 DodgeProfileMaxChangeTime=2.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.0;0.0;0.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Medium Skill;Medium Skill;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Apex Purple Shield SeeThroughWalls=false NoDodging=false NoAiming=false AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=Apex NoAttack NoShield DodgeProfileNames=Fast Strafes Close;Mimic;ADAD;Short Strafes Jumping DodgeProfileWeights=2.0;1.5;1.0;0.5 DodgeProfileMaxChangeTime=1.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.0;0.0;0.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Medium Skill;Medium Skill;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Apex No Attack NoShield SeeThroughWalls=true NoDodging=false NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=Apex NoAttack PurpleShield DodgeProfileNames=Fast Strafes Close;Mimic;ADAD;Short Strafes Jumping DodgeProfileWeights=2.0;1.5;1.0;0.5 DodgeProfileMaxChangeTime=1.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.0;0.0;0.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Medium Skill;Medium Skill;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Apex Purple Shield SeeThroughWalls=true NoDodging=false NoAiming=false AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=Apex NoAttack BlueShield DodgeProfileNames=Fast Strafes Close;Mimic;ADAD;Short Strafes Jumping DodgeProfileWeights=2.0;1.5;1.0;0.5 DodgeProfileMaxChangeTime=1.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.0;0.0;0.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Medium Skill;Medium Skill;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Apex Blue Shield SeeThroughWalls=true NoDodging=false NoAiming=false AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=Apex NoAttack WhiteShield DodgeProfileNames=Fast Strafes Close;Mimic;ADAD;Short Strafes Jumping DodgeProfileWeights=2.0;1.5;1.0;0.5 DodgeProfileMaxChangeTime=1.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.0;0.0;0.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Medium Skill;Medium Skill;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Apex White Shield SeeThroughWalls=true NoDodging=false NoAiming=false AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Character Profile] Name=Apex Legend Sniper MaxHealth=200.0 WeaponProfileNames=Wingman;;;;;;; MinRespawnDelay=3.0 MaxRespawnDelay=9.0 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=300.0 MaxCrouchSpeed=400.0 Acceleration=2000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=400.0 Gravity=1.6 AirControl=0.1 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=0.366 Y=0.067 Z=0.371 EnemyHeadColor=X=0.863 Y=0.776 Z=0.434 TeamBodyColor=X=0.366 Y=0.067 Z=0.371 TeamHeadColor=X=0.863 Y=0.776 Z=0.434 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=270.0 MainBBType=Cylindrical MainBBHeight=83.0 MainBBRadius=13.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=1.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=65.0 ProjBBRadius=10.0 ProjBBHasHead=true ProjBBHeadRadius=6.0 ProjBBHeadOffset=-8.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=Run.abilsprint;Melee.abilmelee;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=0.9 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.1 AllowBufferedJumps=false BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=1.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=140.0 TPSOffset=X=0.000 Y=20.000 Z=0.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Apex No Shield MaxHealth=100.0 WeaponProfileNames=Peacemaker;Wingman;R-99;R-301;;;; MinRespawnDelay=3.0 MaxRespawnDelay=9.0 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=175.0 MaxCrouchSpeed=160.0 Acceleration=2000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=400.0 Gravity=1.6 AirControl=0.1 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=0.863 Y=0.776 Z=0.434 EnemyHeadColor=X=1.000 Y=0.584 Z=0.004 TeamBodyColor=X=0.863 Y=0.776 Z=0.434 TeamHeadColor=X=0.016 Y=0.440 Z=0.072 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=270.0 MainBBType=Cylindrical MainBBHeight=83.0 MainBBRadius=13.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=1.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=65.0 ProjBBRadius=10.0 ProjBBHasHead=true ProjBBHeadRadius=6.0 ProjBBHeadOffset=-8.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=Run.abilsprint;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=0.9 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.1 AllowBufferedJumps=false BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=1.0 ForwardSpeedBias=1.0 HealthRegainedonkill=200.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=140.0 TPSOffset=X=0.000 Y=20.000 Z=0.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Apex Blue Shield MaxHealth=150.0 WeaponProfileNames=Peacemaker;Wingman;Longbow;Hemlock;;;; MinRespawnDelay=3.0 MaxRespawnDelay=9.0 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=175.0 MaxCrouchSpeed=160.0 Acceleration=2000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=400.0 Gravity=1.6 AirControl=0.1 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=0.863 Y=0.776 Z=0.434 EnemyHeadColor=X=1.000 Y=0.888 Z=0.000 TeamBodyColor=X=0.366 Y=0.067 Z=0.371 TeamHeadColor=X=0.863 Y=0.776 Z=0.434 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=270.0 MainBBType=Cylindrical MainBBHeight=83.0 MainBBRadius=13.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=1.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=65.0 ProjBBRadius=10.0 ProjBBHasHead=true ProjBBHeadRadius=6.0 ProjBBHeadOffset=-8.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=Run.abilsprint;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=0.9 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.1 AllowBufferedJumps=false BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=1.0 ForwardSpeedBias=1.0 HealthRegainedonkill=200.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=140.0 TPSOffset=X=0.000 Y=20.000 Z=0.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Apex White Shield MaxHealth=125.0 WeaponProfileNames=R-301;Wingman;R-99;Peacemaker;;;; MinRespawnDelay=3.0 MaxRespawnDelay=9.0 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=175.0 MaxCrouchSpeed=160.0 Acceleration=2000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=400.0 Gravity=1.6 AirControl=0.1 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=0.863 Y=0.776 Z=0.434 EnemyHeadColor=X=1.000 Y=0.584 Z=0.004 TeamBodyColor=X=0.366 Y=0.067 Z=0.371 TeamHeadColor=X=0.863 Y=0.776 Z=0.434 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=270.0 MainBBType=Cylindrical MainBBHeight=83.0 MainBBRadius=13.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=1.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=65.0 ProjBBRadius=10.0 ProjBBHasHead=true ProjBBHeadRadius=6.0 ProjBBHeadOffset=-8.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=Run.abilsprint;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=0.9 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.1 AllowBufferedJumps=false BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=1.0 ForwardSpeedBias=1.0 HealthRegainedonkill=200.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=140.0 TPSOffset=X=0.000 Y=20.000 Z=0.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Apex Purple Shield MaxHealth=200.0 WeaponProfileNames=Peacemaker;Wingman;R-301;Spitfire;Longbow;Hemlock;; MinRespawnDelay=3.0 MaxRespawnDelay=9.0 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=175.0 MaxCrouchSpeed=160.0 Acceleration=2000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=400.0 Gravity=1.6 AirControl=0.1 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=0.863 Y=0.776 Z=0.434 EnemyHeadColor=X=1.000 Y=0.888 Z=0.000 TeamBodyColor=X=0.366 Y=0.067 Z=0.371 TeamHeadColor=X=0.863 Y=0.776 Z=0.434 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=270.0 MainBBType=Cylindrical MainBBHeight=83.0 MainBBRadius=13.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=1.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=65.0 ProjBBRadius=10.0 ProjBBHasHead=true ProjBBHeadRadius=6.0 ProjBBHeadOffset=-8.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=Run.abilsprint;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=0.9 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.1 AllowBufferedJumps=false BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=1.0 ForwardSpeedBias=1.0 HealthRegainedonkill=200.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=140.0 TPSOffset=X=0.000 Y=20.000 Z=0.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Apex No Attack NoShield MaxHealth=100.0 WeaponProfileNames=Peacemaker;Wingman;R-99;R-301;;;; MinRespawnDelay=3.0 MaxRespawnDelay=9.0 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=175.0 MaxCrouchSpeed=160.0 Acceleration=2000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=150.0 Gravity=1.6 AirControl=0.1 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=0.863 Y=0.776 Z=0.434 EnemyHeadColor=X=1.000 Y=0.584 Z=0.004 TeamBodyColor=X=0.863 Y=0.776 Z=0.434 TeamHeadColor=X=0.016 Y=0.440 Z=0.072 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=270.0 MainBBType=Cylindrical MainBBHeight=83.0 MainBBRadius=13.0 MainBBHasHead=true MainBBHeadRadius=7.0 MainBBHeadOffset=1.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=65.0 ProjBBRadius=10.0 ProjBBHasHead=true ProjBBHeadRadius=6.0 ProjBBHeadOffset=-8.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=Run.abilsprint;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=0.9 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.1 AllowBufferedJumps=false BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=1.0 ForwardSpeedBias=1.0 HealthRegainedonkill=200.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=140.0 TPSOffset=X=0.000 Y=20.000 Z=0.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Dodge Profile] Name=Fast Strafes Close MaxTargetDistance=150.0 MinTargetDistance=50.0 ToggleLeftRight=true ToggleForwardBack=true MinLRTimeChange=0.1 MaxLRTimeChange=1.0 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.1 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.07 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.6 MaxCrouchTime=0.8 MinJumpTime=0.1 MaxJumpTime=0.1 LeftStrafeTimeMult=0.5 RightStrafeTimeMult=0.6 StrafeSwapMinPause=0.1 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 [Dodge Profile] Name=Mimic MaxTargetDistance=1245.901611 MinTargetDistance=373.770477 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.2 MaxLRTimeChange=0.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.5 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Mimic TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 [Dodge Profile] Name=ADAD MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.2 MaxLRTimeChange=0.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.2 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.16 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.1 MaxCrouchTime=0.2 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 [Dodge Profile] Name=Short Strafes Jumping MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.2 MaxLRTimeChange=0.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.65 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.5 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 [Weapon Profile] Name=Wingman Type=Projectile ShotsPerClick=1 DamagePerShot=45.0 KnockbackFactor=0.0 TimeBetweenShots=0.2923 Pierces=false Category=SemiAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=25000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=25000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=2.1 ReloadTimeFromPartial=2.1 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=45.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.5 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=true ADSZoomDelay=0.0 ADSZoomSensFactor=0.8 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=1 DecalSize=4.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=3.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=60.0 ADSFOVScale=Apex Legends ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Machine Pistol WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Gunshot ParticleBodyImpact=None ParticleProjectileTrail=None ParticleHitscanTrace=Bullet ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=0.1 DamageAtCenter=0.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.0 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=0.0,0.1,0.0,0.0 SpreadSCA=0.0,0.1,0.0,0.0 SpreadMSA=0.0,0.1,0.0,0.0 SpreadMCA=0.0,0.1,0.0,0.0 SpreadSSH=2.0,2.0,1.0,2.0 SpreadSCH=2.0,2.0,3.0,6.0 SpreadMSH=2.0,2.0,1.0,2.0 SpreadMCH=2.0,2.0,3.0,6.0 MaxRecoilUp=1.3 MinRecoilUp=1.0 MinRecoilHoriz=1.0 MaxRecoilHoriz=1.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=1.0 AAMaxSpeed=360.0 AADeadZone=0.0 AAFOV=360.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Peacemaker Type=Hitscan ShotsPerClick=11 DamagePerShot=10.0 KnockbackFactor=1.0 TimeBetweenShots=1.1 Pierces=false Category=SemiAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=1.5 MagazineMax=5 AmmoPerShot=1 ReloadTimeFromEmpty=3.5 ReloadTimeFromPartial=2.5 DamageFalloffStartDistance=111111.0 DamageFalloffStopDistance=1000000.0 DamageAtMaxRange=10.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.8 RecoilNegatable=false DecalType=1 DecalSize=3.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=5 CancelReloadOnKill=true FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=None ParticleBodyImpact=None ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=0.0,0.1,0.0,0.0 SpreadSCA=0.0,0.1,0.0,0.0 SpreadMSA=0.0,0.1,0.0,0.0 SpreadMCA=0.0,0.1,0.0,0.0 SpreadSSH=0.0,0.1,1.0,1.0 SpreadSCH=0.0,0.1,0.0,0.0 SpreadMSH=0.0,0.1,2.0,4.0 SpreadMCH=0.0,0.1,0.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=1.0 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 PBS1=1.25,23.0 PBS2=1.8,27.0 PBS3=1.1,360.0 PBS4=2.0,40.0 PBS5=1.6,98.0 PBS6=1.3,270.0 PBS7=1.7,170.0 PBS8=0.0,0.0 PBS9=0.0,0.0 PBS10=0.0,0.0 [Weapon Profile] Name=R-99 Type=Hitscan ShotsPerClick=1 DamagePerShot=12.0 KnockbackFactor=4.0 TimeBetweenShots=0.04 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=1.5 MagazineMax=17 AmmoPerShot=1 ReloadTimeFromEmpty=2.45 ReloadTimeFromPartial=1.8 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=true ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=1 DecalSize=3.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=false SpreadStationaryVelocity=100.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Gunshot ParticleBodyImpact=Blood ParticleProjectileTrail=None ParticleHitscanTrace=None ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=0.0,0.1,0.0,0.0 SpreadSCA=0.0,0.1,0.0,0.0 SpreadMSA=0.0,0.1,0.0,0.0 SpreadMCA=0.0,0.1,0.0,0.0 SpreadSSH=1.0,1.0,-0.5,0.5 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=1.0,1.0,-0.5,0.5 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=1.0 MinRecoilUp=0.0 MinRecoilHoriz=-0.8 MaxRecoilHoriz=0.8 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=R-301 Type=Hitscan ShotsPerClick=1 DamagePerShot=14.0 KnockbackFactor=4.0 TimeBetweenShots=0.08 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=17 AmmoPerShot=1 ReloadTimeFromEmpty=2.45 ReloadTimeFromPartial=1.8 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=true ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.07 HitSoundCooldown=0.07 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=1 DecalSize=5.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=None ParticleBodyImpact=Blood ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=0.0,0.1,0.0,0.0 SpreadSCA=0.0,0.1,0.0,0.0 SpreadMSA=0.0,0.1,0.0,0.0 SpreadMCA=0.0,0.1,0.0,0.0 SpreadSSH=1.0,1.0,-1.0,2.0 SpreadSCH=1.0,1.0,-1.0,3.0 SpreadMSH=1.0,1.0,-1.0,2.0 SpreadMCH=1.0,1.0,-1.0,3.0 MaxRecoilUp=0.1 MinRecoilUp=0.0 MinRecoilHoriz=-0.2 MaxRecoilHoriz=0.2 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Longbow Type=Hitscan ShotsPerClick=1 DamagePerShot=55.0 KnockbackFactor=0.0 TimeBetweenShots=0.5 Pierces=false Category=SemiAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=5 AmmoPerShot=1 ReloadTimeFromEmpty=2.1 ReloadTimeFromPartial=2.1 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=45.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=true ADSZoomDelay=0.2 ADSZoomSensFactor=0.8 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=1 DecalSize=7.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=false SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=97.099998 ADSFOVScale=Apex Legends ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Gunshot ParticleBodyImpact=None ParticleProjectileTrail=None ParticleHitscanTrace=None ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=0.1 DamageAtCenter=0.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.0 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=0.0,0.1,0.0,0.0 SpreadSCA=0.0,0.1,0.0,0.0 SpreadMSA=0.0,0.1,0.0,0.0 SpreadMCA=0.0,0.1,0.0,0.0 SpreadSSH=0.0,0.1,2.0,8.0 SpreadSCH=2.0,2.0,3.0,6.0 SpreadMSH=0.0,0.1,2.0,8.0 SpreadMCH=2.0,2.0,3.0,6.0 MaxRecoilUp=1.3 MinRecoilUp=1.0 MinRecoilHoriz=2.0 MaxRecoilHoriz=2.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=1.0 AAMaxSpeed=360.0 AADeadZone=0.0 AAFOV=360.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Hemlock Type=Hitscan ShotsPerClick=1 DamagePerShot=18.0 KnockbackFactor=4.0 TimeBetweenShots=0.4 Pierces=false Category=FullyAuto BurstShotCount=3 TimeBetweenBursts=0.1 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=1.3 MagazineMax=17 AmmoPerShot=1 ReloadTimeFromEmpty=2.45 ReloadTimeFromPartial=1.8 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=true ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.07 HitSoundCooldown=0.07 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=1 DecalSize=5.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=true ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=None ParticleBodyImpact=Blood ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=0.0,0.1,0.0,0.0 SpreadSCA=0.0,0.1,0.0,0.0 SpreadMSA=0.0,0.1,0.0,0.0 SpreadMCA=0.0,0.1,0.0,0.0 SpreadSSH=1.0,1.0,-1.0,1.0 SpreadSCH=1.0,1.0,-1.0,3.0 SpreadMSH=1.0,1.0,-1.0,1.0 SpreadMCH=1.0,1.0,-1.0,3.0 MaxRecoilUp=0.1 MinRecoilUp=0.0 MinRecoilHoriz=-0.2 MaxRecoilHoriz=0.2 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Spitfire Type=Hitscan ShotsPerClick=1 DamagePerShot=20.0 KnockbackFactor=4.0 TimeBetweenShots=0.117188 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=34 AmmoPerShot=1 ReloadTimeFromEmpty=3.33 ReloadTimeFromPartial=2.8 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=true ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=1 DecalSize=5.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Gunshot ParticleBodyImpact=Blood ParticleProjectileTrail=None ParticleHitscanTrace=None ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=0.0,0.1,0.0,0.0 SpreadSCA=0.0,0.1,0.0,0.0 SpreadMSA=0.0,0.1,0.0,0.0 SpreadMCA=0.0,0.1,0.0,0.0 SpreadSSH=1.0,1.0,-1.0,2.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=1.0,1.0,-1.0,2.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=0.2 MinRecoilUp=0.1 MinRecoilHoriz=-0.2 MaxRecoilHoriz=0.2 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Melee Ability Profile] Name=Melee MaxCharges=1.0 ChargeTimer=0.25 ChargesRefundedOnKill=0.0 DelayAfterUse=1.0 FullyAuto=false AbilityDuration=0.15 HurtboxRadius=75.0 HurtboxDamage=30.0 HurtboxGroundKnockbackFactor=0.0 HurtboxAirKnockbackFactor=0.0 BlockAttackTimer=0.5 AbilityBlockedWhenAttacking=false AmmoPerShot=0 FlatKnockbackHorizontal=100.0 FlatKnockbackVertical=0.0 FlatKnockbackHorizontalMin=100.0 FlatKnockbackVerticalMin=0.0 AIUseInCombat=true AIUseOutOfCombat=false AIUseOnGround=true AIUseInAir=true AIReuseTimer=1.0 AIMinSelfHealth=0.0 AIMaxSelfHealth=100.0 AIMinTargHealth=0.0 AIMaxTargHealth=100.0 AIMinTargDist=0.0 AIMaxTargDist=600.0 AIMaxTargFOV=15.0 AIDamageReaction=false AIDamageReactionIgnoreChance=0.0 AIDamageReactionMinDelay=0.125 AIDamageReactionMaxDelay=0.25 AIDamageReactionCooldown=1.0 AIDamageReactionThreshold=0.0 AIDamageReactionResetTimer=0.1 [Sprint Ability Profile] Name=Run MaxCharges=1.0 ChargeTimer=0.001 ChargesRefundedOnKill=0.0 DelayAfterUse=0.1 FullyAuto=false AbilityDuration=0.0 BlockAttackWhileSprinting=false AbilityBlockedWhenAttacking=false SpeedModifier=1.8 45DegreeSprint=true 90DegreeSprint=true 135DegreeSprint=true 180DegreeSprint=false TapToSprint=true Block45DegreesWhenSprinting=false AIUseInCombat=true AIUseOutOfCombat=false AIUseOnGround=true AIUseInAir=true AIReuseTimer=1.0 AIMinSelfHealth=0.0 AIMaxSelfHealth=100.0 AIMinTargHealth=0.0 AIMaxTargHealth=100.0 AIMinTargDist=0.0 AIMaxTargDist=2000.0 AIMaxTargFOV=15.0 AIDamageReaction=true AIDamageReactionIgnoreChance=0.0 AIDamageReactionMinDelay=0.125 AIDamageReactionMaxDelay=0.25 AIDamageReactionCooldown=1.0 AIDamageReactionThreshold=0.0 AIDamageReactionResetTimer=0.1 [Map Data] reflex map version 8 global entity type WorldSpawn brush vertices -960.000000 -16.000000 -320.000000 -960.000000 -16.000000 256.000000 -960.000000 16.000000 256.000000 -960.000000 16.000000 -320.000000 1024.000000 16.000000 256.000000 1024.000000 -16.000000 256.000000 1024.000000 -16.000000 -320.000000 1024.000000 16.000000 -320.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5904.000000 -160.000000 3520.000000 5904.000000 -160.000000 -3600.000000 5904.000000 -128.000000 -3600.000000 5904.000000 -128.000000 3520.000000 1536.000000 -128.000000 3520.000000 1536.000000 -160.000000 3520.000000 1536.000000 -160.000000 -3600.000000 1536.000000 -128.000000 -3600.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 6 7 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 7 4 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 5 4 0x00000000 __TB_empty brush vertices -5120.000000 -128.000000 -3600.000000 -5120.000000 -160.000000 -3600.000000 -5120.000000 -160.000000 3520.000000 -5120.000000 -128.000000 3520.000000 -1472.000000 -160.000000 3520.000000 -1472.000000 -128.000000 3520.000000 -1472.000000 -128.000000 -3600.000000 -1472.000000 -160.000000 -3600.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty brush vertices -1472.000000 -128.000000 3520.000000 -1472.000000 -160.000000 3520.000000 1536.000000 -160.000000 3520.000000 1536.000000 -128.000000 3520.000000 1536.000000 -128.000000 784.000000 -1472.000000 -128.000000 784.000000 -1472.000000 -160.000000 784.000000 1536.000000 -160.000000 784.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 6 7 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 7 4 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 5 4 0x00000000 __TB_empty brush vertices 1536.000000 -160.000000 -3600.000000 -1472.000000 -160.000000 -3600.000000 -1472.000000 -128.000000 -3600.000000 1536.000000 -128.000000 -3600.000000 -1472.000000 -128.000000 -784.000000 1536.000000 -128.000000 -784.000000 1536.000000 -160.000000 -784.000000 -1472.000000 -160.000000 -784.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty brush vertices -1488.000000 -160.000000 768.000000 -1488.000000 -160.000000 1072.000000 -1488.000000 -80.000000 1072.000000 -1488.000000 -80.000000 768.000000 1536.000000 -80.000000 1072.000000 1536.000000 -160.000000 1072.000000 1536.000000 -160.000000 768.000000 1536.000000 -80.000000 768.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1536.000000 -160.000000 -1088.000000 1536.000000 -160.000000 1072.000000 1536.000000 -80.000000 1072.000000 1536.000000 -80.000000 -1088.000000 1856.000000 -80.000000 1072.000000 1856.000000 -160.000000 1072.000000 1856.000000 -160.000000 -1088.000000 1856.000000 -80.000000 -1088.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1536.000000 -160.000000 -784.000000 1536.000000 -160.000000 -1088.000000 1536.000000 -80.000000 -1088.000000 1536.000000 -80.000000 -784.000000 -1488.000000 -80.000000 -1088.000000 -1488.000000 -160.000000 -1088.000000 -1488.000000 -160.000000 -784.000000 -1488.000000 -80.000000 -784.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -1488.000000 -160.000000 1072.000000 -1488.000000 -160.000000 -1088.000000 -1488.000000 -80.000000 -1088.000000 -1488.000000 -80.000000 1072.000000 -1808.000000 -80.000000 -1088.000000 -1808.000000 -160.000000 -1088.000000 -1808.000000 -160.000000 1072.000000 -1808.000000 -80.000000 1072.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -5104.000000 -160.000000 3536.000000 -5104.000000 -160.000000 -3600.000000 -5104.000000 -80.000000 -3600.000000 -5104.000000 -80.000000 3536.000000 -5424.000000 -80.000000 -3600.000000 -5424.000000 -160.000000 -3600.000000 -5424.000000 -160.000000 3536.000000 -5424.000000 -80.000000 3536.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 6240.000000 -160.000000 3520.000000 6240.000000 -160.000000 -3616.000000 6240.000000 80.000000 -3616.000000 6240.000000 80.000000 3520.000000 5920.000000 80.000000 -3616.000000 5920.000000 -160.000000 -3616.000000 5920.000000 -160.000000 3520.000000 5920.000000 80.000000 3520.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -5424.000000 -160.000000 3840.000000 6224.000000 -160.000000 3840.000000 6224.000000 80.000000 3840.000000 -5424.000000 80.000000 3840.000000 6224.000000 80.000000 3520.000000 6224.000000 -160.000000 3520.000000 -5424.000000 -160.000000 3520.000000 -5424.000000 80.000000 3520.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 6224.000000 -160.000000 -3600.000000 6224.000000 -160.000000 -3920.000000 6224.000000 80.000000 -3920.000000 6224.000000 80.000000 -3600.000000 -5424.000000 80.000000 -3920.000000 -5424.000000 -160.000000 -3920.000000 -5424.000000 -160.000000 -3600.000000 -5424.000000 80.000000 -3600.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 3072.000000 -160.000000 -912.000000 3072.000000 -160.000000 -576.000000 3072.000000 -0.000000 -576.000000 3072.000000 0.000000 -912.000000 3408.000000 0.000000 -576.000000 3408.000000 -160.000000 -576.000000 3408.000000 -160.000000 -912.000000 3408.000000 -0.000000 -912.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 4512.000000 -160.000000 1152.000000 4512.000000 -160.000000 816.000000 4512.000000 -0.000000 816.000000 4512.000000 0.000000 1152.000000 4176.000000 0.000000 816.000000 4176.000000 -160.000000 816.000000 4176.000000 -160.000000 1152.000000 4176.000000 -0.000000 1152.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2800.000000 -160.000000 2464.000000 2800.000000 -160.000000 2128.000000 2800.000000 -0.000000 2128.000000 2800.000000 0.000000 2464.000000 2464.000000 0.000000 2128.000000 2464.000000 -160.000000 2128.000000 2464.000000 -160.000000 2464.000000 2464.000000 -0.000000 2464.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 4960.000000 -160.000000 -2336.000000 4960.000000 -160.000000 -2672.000000 4960.000000 -0.000000 -2672.000000 4960.000000 0.000000 -2336.000000 4624.000000 0.000000 -2672.000000 4624.000000 -160.000000 -2672.000000 4624.000000 -160.000000 -2336.000000 4624.000000 -0.000000 -2336.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -3040.000000 -160.000000 2960.000000 -3040.000000 -160.000000 2624.000000 -3040.000000 0.000000 2624.000000 -3040.000000 0.000000 2960.000000 -3376.000000 0.000000 2624.000000 -3376.000000 -160.000000 2624.000000 -3376.000000 -160.000000 2960.000000 -3376.000000 -0.000000 2960.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -2928.000000 -160.000000 -16.000000 -2928.000000 -160.000000 -352.000000 -2928.000000 -0.000000 -352.000000 -2928.000000 0.000000 -16.000000 -3264.000000 0.000000 -352.000000 -3264.000000 -160.000000 -352.000000 -3264.000000 -160.000000 -16.000000 -3264.000000 -0.000000 -16.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -2336.000000 -160.000000 -1648.000000 -2336.000000 -160.000000 -1984.000000 -2336.000000 -0.000000 -1984.000000 -2336.000000 0.000000 -1648.000000 -2672.000000 0.000000 -1984.000000 -2672.000000 -160.000000 -1984.000000 -2672.000000 -160.000000 -1648.000000 -2672.000000 -0.000000 -1648.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1264.000000 -160.000000 -1824.000000 1264.000000 -160.000000 -2160.000000 1264.000000 -0.000000 -2160.000000 1264.000000 0.000000 -1824.000000 928.000000 0.000000 -2160.000000 928.000000 -160.000000 -2160.000000 928.000000 -160.000000 -1824.000000 928.000000 -0.000000 -1824.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -368.000000 -160.000000 -2448.000000 -368.000000 -160.000000 -2784.000000 -368.000000 -0.000000 -2784.000000 -368.000000 0.000000 -2448.000000 -704.000000 0.000000 -2784.000000 -704.000000 -160.000000 -2784.000000 -704.000000 -160.000000 -2448.000000 -704.000000 -0.000000 -2448.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -3776.000000 -160.000000 -2608.000000 -3776.000000 -160.000000 -2944.000000 -3776.000000 -0.000000 -2944.000000 -3776.000000 0.000000 -2608.000000 -4112.000000 0.000000 -2944.000000 -4112.000000 -160.000000 -2944.000000 -4112.000000 -160.000000 -2608.000000 -4112.000000 -0.000000 -2608.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -3584.000000 -160.000000 1248.000000 -3584.000000 -160.000000 912.000000 -3584.000000 0.000000 912.000000 -3584.000000 0.000000 1248.000000 -3920.000000 0.000000 912.000000 -3920.000000 -160.000000 912.000000 -3920.000000 -160.000000 1248.000000 -3920.000000 -0.000000 1248.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -800.000000 -160.000000 2608.000000 -800.000000 -160.000000 2272.000000 -800.000000 0.000000 2272.000000 -800.000000 0.000000 2608.000000 -1136.000000 0.000000 2272.000000 -1136.000000 -160.000000 2272.000000 -1136.000000 -160.000000 2608.000000 -1136.000000 -0.000000 2608.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 992.000000 -160.000000 2112.000000 992.000000 -160.000000 1776.000000 992.000000 -0.000000 1776.000000 992.000000 0.000000 2112.000000 656.000000 0.000000 1776.000000 656.000000 -160.000000 1776.000000 656.000000 -160.000000 2112.000000 656.000000 -0.000000 2112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5232.000000 -160.000000 3088.000000 5232.000000 -160.000000 2752.000000 5232.000000 -0.000000 2752.000000 5232.000000 0.000000 3088.000000 4896.000000 0.000000 2752.000000 4896.000000 -160.000000 2752.000000 4896.000000 -160.000000 3088.000000 4896.000000 -0.000000 3088.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 3024.000000 -160.000000 -2288.000000 3024.000000 -160.000000 -2624.000000 3024.000000 -0.000000 -2624.000000 3024.000000 0.000000 -2288.000000 2688.000000 0.000000 -2624.000000 2688.000000 -160.000000 -2624.000000 2688.000000 -160.000000 -2288.000000 2688.000000 -0.000000 -2288.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4096.000000 -160.000000 -304.000000 -4096.000000 -160.000000 -640.000000 -4096.000000 -0.000000 -640.000000 -4096.000000 0.000000 -304.000000 -4432.000000 0.000000 -640.000000 -4432.000000 -160.000000 -640.000000 -4432.000000 -160.000000 -304.000000 -4432.000000 -0.000000 -304.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 3168.000000 -160.000000 960.000000 3168.000000 -160.000000 624.000000 3168.000000 -0.000000 624.000000 3168.000000 0.000000 960.000000 2832.000000 0.000000 624.000000 2832.000000 -160.000000 624.000000 2832.000000 -160.000000 960.000000 2832.000000 -0.000000 960.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5360.000000 -160.000000 -368.000000 5360.000000 -160.000000 -704.000000 5360.000000 -0.000000 -704.000000 5360.000000 0.000000 -368.000000 5024.000000 0.000000 -704.000000 5024.000000 -160.000000 -704.000000 5024.000000 -160.000000 -368.000000 5024.000000 -0.000000 -368.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 3424.000000 -160.000000 -1600.000000 3424.000000 -160.000000 -1728.000000 3424.000000 -0.000000 -1728.000000 3424.000000 0.000000 -1600.000000 2720.000000 0.000000 -1728.000000 2720.000000 -160.000000 -1728.000000 2720.000000 -160.000000 -1600.000000 2720.000000 -0.000000 -1600.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5808.000000 -160.000000 672.000000 5808.000000 -160.000000 544.000000 5808.000000 -0.000000 544.000000 5808.000000 0.000000 672.000000 5104.000000 0.000000 544.000000 5104.000000 -160.000000 544.000000 5104.000000 -160.000000 672.000000 5104.000000 -0.000000 672.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 4352.000000 -160.000000 1856.000000 4352.000000 -160.000000 1728.000000 4352.000000 -0.000000 1728.000000 4352.000000 0.000000 1856.000000 3648.000000 0.000000 1728.000000 3648.000000 -160.000000 1728.000000 3648.000000 -160.000000 1856.000000 3648.000000 -0.000000 1856.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2416.000000 -160.000000 3072.000000 2416.000000 -160.000000 2944.000000 2416.000000 -0.000000 2944.000000 2416.000000 0.000000 3072.000000 1712.000000 0.000000 2944.000000 1712.000000 -160.000000 2944.000000 1712.000000 -160.000000 3072.000000 1712.000000 -0.000000 3072.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -2592.000000 -160.000000 2080.000000 -2592.000000 -160.000000 1952.000000 -2592.000000 0.000000 1952.000000 -2592.000000 0.000000 2080.000000 -3296.000000 0.000000 1952.000000 -3296.000000 -160.000000 1952.000000 -3296.000000 -160.000000 2080.000000 -3296.000000 -0.000000 2080.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -3040.000000 -160.000000 -896.000000 -3040.000000 -160.000000 -1024.000000 -3040.000000 -0.000000 -1024.000000 -3040.000000 0.000000 -896.000000 -3744.000000 0.000000 -1024.000000 -3744.000000 -160.000000 -1024.000000 -3744.000000 -160.000000 -896.000000 -3744.000000 -0.000000 -896.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -3664.000000 -160.000000 -2064.000000 -3664.000000 -160.000000 -2192.000000 -3664.000000 -0.000000 -2192.000000 -3664.000000 0.000000 -2064.000000 -4368.000000 0.000000 -2192.000000 -4368.000000 -160.000000 -2192.000000 -4368.000000 -160.000000 -2064.000000 -4368.000000 -0.000000 -2064.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -160.000000 -160.000000 -2080.000000 -288.000000 -160.000000 -2080.000000 -288.000000 -0.000000 -2080.000000 -160.000000 0.000000 -2080.000000 -288.000000 0.000000 -1376.000000 -288.000000 -160.000000 -1376.000000 -160.000000 -160.000000 -1376.000000 -160.000000 -0.000000 -1376.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -3024.000000 -160.000000 -1200.000000 -3024.000000 -160.000000 -1904.000000 -3024.000000 0.000000 -1904.000000 -3024.000000 0.000000 -1200.000000 -3152.000000 0.000000 -1904.000000 -3152.000000 -160.000000 -1904.000000 -3152.000000 -160.000000 -1200.000000 -3152.000000 -0.000000 -1200.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -1696.000000 -160.000000 3232.000000 -1696.000000 -160.000000 2528.000000 -1696.000000 -0.000000 2528.000000 -1696.000000 0.000000 3232.000000 -1824.000000 0.000000 2528.000000 -1824.000000 -160.000000 2528.000000 -1824.000000 -160.000000 3232.000000 -1824.000000 -0.000000 3232.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2800.000000 -160.000000 2128.000000 2800.000000 -160.000000 1424.000000 2800.000000 -0.000000 1424.000000 2800.000000 0.000000 2128.000000 2672.000000 0.000000 1424.000000 2672.000000 -160.000000 1424.000000 2672.000000 -160.000000 2128.000000 2672.000000 -0.000000 2128.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 4944.000000 -160.000000 -768.000000 4944.000000 -160.000000 -1472.000000 4944.000000 -0.000000 -1472.000000 4944.000000 0.000000 -768.000000 4816.000000 0.000000 -1472.000000 4816.000000 -160.000000 -1472.000000 4816.000000 -160.000000 -768.000000 4816.000000 -0.000000 -768.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 3728.000000 -160.000000 -2496.000000 3728.000000 -160.000000 -3200.000000 3728.000000 -0.000000 -3200.000000 3728.000000 0.000000 -2496.000000 3600.000000 0.000000 -3200.000000 3600.000000 -160.000000 -3200.000000 3600.000000 -160.000000 -2496.000000 3600.000000 -0.000000 -2496.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2464.000000 -160.000000 16.000000 2464.000000 -160.000000 -688.000000 2464.000000 -0.000000 -688.000000 2464.000000 0.000000 16.000000 2336.000000 0.000000 -688.000000 2336.000000 -160.000000 -688.000000 2336.000000 -160.000000 16.000000 2336.000000 -0.000000 16.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1072.000000 1072.000000 -4032.000000 1072.000000 -144.000000 -4032.000000 1072.000000 -144.000000 -5392.000000 1072.000000 1072.000000 -5392.000000 864.000000 -144.000000 -5392.000000 864.000000 1072.000000 -5392.000000 864.000000 1072.000000 -4032.000000 864.000000 -144.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty brush vertices 576.000000 -144.000000 -5392.000000 528.000000 -144.000000 -5392.000000 528.000000 1072.000000 -5392.000000 576.000000 1072.000000 -5392.000000 528.000000 1072.000000 -4032.000000 528.000000 -144.000000 -4032.000000 576.000000 -144.000000 -4032.000000 576.000000 1072.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty brush vertices 240.000000 -144.000000 -5392.000000 192.000000 -144.000000 -5392.000000 192.000000 1072.000000 -5392.000000 240.000000 1072.000000 -5392.000000 192.000000 1072.000000 -4032.000000 192.000000 -144.000000 -4032.000000 240.000000 -144.000000 -4032.000000 240.000000 1072.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty brush vertices -96.000000 -144.000000 -5392.000000 -128.000000 -144.000000 -5392.000000 -128.000000 1072.000000 -5392.000000 -96.000000 1072.000000 -5392.000000 -128.000000 1072.000000 -4032.000000 -128.000000 -144.000000 -4032.000000 -96.000000 -144.000000 -4032.000000 -96.000000 1072.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty brush vertices -576.000000 -144.000000 -5392.000000 -576.000000 -144.000000 -4032.000000 -576.000000 1072.000000 -4032.000000 -576.000000 1072.000000 -5392.000000 -416.000000 1072.000000 -5392.000000 -416.000000 -144.000000 -5392.000000 -416.000000 -144.000000 -4032.000000 -416.000000 1072.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 6 7 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 7 4 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 5 4 0x00000000 __TB_empty brush vertices -128.000000 -144.000000 -5392.000000 -416.000000 -144.000000 -5392.000000 -416.000000 1072.000000 -5392.000000 -128.000000 1072.000000 -5392.000000 -416.000000 1072.000000 -4096.000000 -128.000000 1072.000000 -4096.000000 -128.000000 -144.000000 -4096.000000 -416.000000 -144.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty brush vertices -416.000000 1072.000000 -4032.000000 -416.000000 928.000000 -4032.000000 -128.000000 928.000000 -4032.000000 -128.000000 1072.000000 -4032.000000 -128.000000 1072.000000 -4096.000000 -416.000000 1072.000000 -4096.000000 -128.000000 928.000000 -4096.000000 -416.000000 928.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 6 4 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 5 4 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 6 2 0x00000000 __TB_empty brush vertices -416.000000 768.000000 -4032.000000 -416.000000 720.000000 -4032.000000 -128.000000 720.000000 -4032.000000 -128.000000 768.000000 -4032.000000 -128.000000 720.000000 -4096.000000 -128.000000 768.000000 -4096.000000 -416.000000 768.000000 -4096.000000 -416.000000 720.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty brush vertices -416.000000 560.000000 -4032.000000 -416.000000 512.000000 -4032.000000 -128.000000 512.000000 -4032.000000 -128.000000 560.000000 -4032.000000 -128.000000 512.000000 -4096.000000 -128.000000 560.000000 -4096.000000 -416.000000 560.000000 -4096.000000 -416.000000 512.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty brush vertices -416.000000 352.000000 -4032.000000 -416.000000 304.000000 -4032.000000 -128.000000 304.000000 -4032.000000 -128.000000 352.000000 -4032.000000 -128.000000 304.000000 -4096.000000 -128.000000 352.000000 -4096.000000 -416.000000 352.000000 -4096.000000 -416.000000 304.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty brush vertices -128.000000 144.000000 -4032.000000 -416.000000 144.000000 -4032.000000 -416.000000 -144.000000 -4032.000000 -128.000000 -144.000000 -4032.000000 -416.000000 -144.000000 -4096.000000 -128.000000 -144.000000 -4096.000000 -128.000000 144.000000 -4096.000000 -416.000000 144.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty brush vertices 192.000000 -144.000000 -5392.000000 -96.000000 -144.000000 -5392.000000 -96.000000 1072.000000 -5392.000000 192.000000 1072.000000 -5392.000000 -96.000000 1072.000000 -4096.000000 192.000000 1072.000000 -4096.000000 192.000000 -144.000000 -4096.000000 -96.000000 -144.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty brush vertices -96.000000 1072.000000 -4032.000000 -96.000000 928.000000 -4032.000000 192.000000 928.000000 -4032.000000 192.000000 1072.000000 -4032.000000 192.000000 1072.000000 -4096.000000 -96.000000 1072.000000 -4096.000000 192.000000 928.000000 -4096.000000 -96.000000 928.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 6 4 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 5 4 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 6 2 0x00000000 __TB_empty brush vertices -96.000000 768.000000 -4032.000000 -96.000000 720.000000 -4032.000000 192.000000 720.000000 -4032.000000 192.000000 768.000000 -4032.000000 192.000000 720.000000 -4096.000000 192.000000 768.000000 -4096.000000 -96.000000 768.000000 -4096.000000 -96.000000 720.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty brush vertices -96.000000 560.000000 -4032.000000 -96.000000 512.000000 -4032.000000 192.000000 512.000000 -4032.000000 192.000000 560.000000 -4032.000000 192.000000 512.000000 -4096.000000 192.000000 560.000000 -4096.000000 -96.000000 560.000000 -4096.000000 -96.000000 512.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty brush vertices -96.000000 352.000000 -4032.000000 -96.000000 304.000000 -4032.000000 192.000000 304.000000 -4032.000000 192.000000 352.000000 -4032.000000 192.000000 304.000000 -4096.000000 192.000000 352.000000 -4096.000000 -96.000000 352.000000 -4096.000000 -96.000000 304.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty brush vertices 192.000000 144.000000 -4032.000000 -96.000000 144.000000 -4032.000000 -96.000000 -144.000000 -4032.000000 192.000000 -144.000000 -4032.000000 -96.000000 -144.000000 -4096.000000 192.000000 -144.000000 -4096.000000 192.000000 144.000000 -4096.000000 -96.000000 144.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty brush vertices 528.000000 -144.000000 -5392.000000 240.000000 -144.000000 -5392.000000 240.000000 1072.000000 -5392.000000 528.000000 1072.000000 -5392.000000 240.000000 1072.000000 -4096.000000 528.000000 1072.000000 -4096.000000 528.000000 -144.000000 -4096.000000 240.000000 -144.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty brush vertices 240.000000 1072.000000 -4032.000000 240.000000 928.000000 -4032.000000 528.000000 928.000000 -4032.000000 528.000000 1072.000000 -4032.000000 528.000000 1072.000000 -4096.000000 240.000000 1072.000000 -4096.000000 528.000000 928.000000 -4096.000000 240.000000 928.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 6 4 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 5 4 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 6 2 0x00000000 __TB_empty brush vertices 240.000000 768.000000 -4032.000000 240.000000 720.000000 -4032.000000 528.000000 720.000000 -4032.000000 528.000000 768.000000 -4032.000000 528.000000 720.000000 -4096.000000 528.000000 768.000000 -4096.000000 240.000000 768.000000 -4096.000000 240.000000 720.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty brush vertices 240.000000 560.000000 -4032.000000 240.000000 512.000000 -4032.000000 528.000000 512.000000 -4032.000000 528.000000 560.000000 -4032.000000 528.000000 512.000000 -4096.000000 528.000000 560.000000 -4096.000000 240.000000 560.000000 -4096.000000 240.000000 512.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty brush vertices 240.000000 352.000000 -4032.000000 240.000000 304.000000 -4032.000000 528.000000 304.000000 -4032.000000 528.000000 352.000000 -4032.000000 528.000000 304.000000 -4096.000000 528.000000 352.000000 -4096.000000 240.000000 352.000000 -4096.000000 240.000000 304.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty brush vertices 528.000000 144.000000 -4032.000000 240.000000 144.000000 -4032.000000 240.000000 -144.000000 -4032.000000 528.000000 -144.000000 -4032.000000 240.000000 -144.000000 -4096.000000 528.000000 -144.000000 -4096.000000 528.000000 144.000000 -4096.000000 240.000000 144.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty brush vertices 864.000000 -144.000000 -5392.000000 576.000000 -144.000000 -5392.000000 576.000000 1072.000000 -5392.000000 864.000000 1072.000000 -5392.000000 576.000000 1072.000000 -4096.000000 864.000000 1072.000000 -4096.000000 864.000000 -144.000000 -4096.000000 576.000000 -144.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty brush vertices 576.000000 1072.000000 -4032.000000 576.000000 928.000000 -4032.000000 864.000000 928.000000 -4032.000000 864.000000 1072.000000 -4032.000000 864.000000 1072.000000 -4096.000000 576.000000 1072.000000 -4096.000000 864.000000 928.000000 -4096.000000 576.000000 928.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 6 4 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 5 4 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 6 2 0x00000000 __TB_empty brush vertices 576.000000 768.000000 -4032.000000 576.000000 720.000000 -4032.000000 864.000000 720.000000 -4032.000000 864.000000 768.000000 -4032.000000 864.000000 720.000000 -4096.000000 864.000000 768.000000 -4096.000000 576.000000 768.000000 -4096.000000 576.000000 720.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty brush vertices 576.000000 560.000000 -4032.000000 576.000000 512.000000 -4032.000000 864.000000 512.000000 -4032.000000 864.000000 560.000000 -4032.000000 864.000000 512.000000 -4096.000000 864.000000 560.000000 -4096.000000 576.000000 560.000000 -4096.000000 576.000000 512.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty brush vertices 576.000000 352.000000 -4032.000000 576.000000 304.000000 -4032.000000 864.000000 304.000000 -4032.000000 864.000000 352.000000 -4032.000000 864.000000 304.000000 -4096.000000 864.000000 352.000000 -4096.000000 576.000000 352.000000 -4096.000000 576.000000 304.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty brush vertices 864.000000 144.000000 -4032.000000 576.000000 144.000000 -4032.000000 576.000000 -144.000000 -4032.000000 864.000000 -144.000000 -4032.000000 576.000000 -144.000000 -4096.000000 864.000000 -144.000000 -4096.000000 864.000000 144.000000 -4096.000000 576.000000 144.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty brush vertices 2800.000000 -144.000000 -4032.000000 2800.000000 -144.000000 -5392.000000 2800.000000 1072.000000 -5392.000000 2800.000000 1072.000000 -4032.000000 2592.000000 1072.000000 -5392.000000 2592.000000 -144.000000 -5392.000000 2592.000000 -144.000000 -4032.000000 2592.000000 1072.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2304.000000 -144.000000 -4032.000000 2304.000000 -144.000000 -5392.000000 2304.000000 1072.000000 -5392.000000 2304.000000 1072.000000 -4032.000000 2256.000000 1072.000000 -5392.000000 2256.000000 -144.000000 -5392.000000 2256.000000 -144.000000 -4032.000000 2256.000000 1072.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1968.000000 -144.000000 -4032.000000 1968.000000 -144.000000 -5392.000000 1968.000000 1072.000000 -5392.000000 1968.000000 1072.000000 -4032.000000 1920.000000 1072.000000 -5392.000000 1920.000000 -144.000000 -5392.000000 1920.000000 -144.000000 -4032.000000 1920.000000 1072.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1632.000000 -144.000000 -4032.000000 1632.000000 -144.000000 -5392.000000 1632.000000 1072.000000 -5392.000000 1632.000000 1072.000000 -4032.000000 1600.000000 1072.000000 -5392.000000 1600.000000 -144.000000 -5392.000000 1600.000000 -144.000000 -4032.000000 1600.000000 1072.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1312.000000 -144.000000 -4032.000000 1312.000000 -144.000000 -5392.000000 1312.000000 1072.000000 -5392.000000 1312.000000 1072.000000 -4032.000000 1152.000000 1072.000000 -5392.000000 1152.000000 -144.000000 -5392.000000 1152.000000 -144.000000 -4032.000000 1152.000000 1072.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1600.000000 -144.000000 -4096.000000 1600.000000 -144.000000 -5392.000000 1600.000000 1072.000000 -5392.000000 1600.000000 1072.000000 -4096.000000 1312.000000 1072.000000 -5392.000000 1312.000000 -144.000000 -5392.000000 1312.000000 -144.000000 -4096.000000 1312.000000 1072.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1600.000000 928.000000 -4032.000000 1600.000000 928.000000 -4096.000000 1600.000000 1072.000000 -4096.000000 1600.000000 1072.000000 -4032.000000 1312.000000 1072.000000 -4096.000000 1312.000000 928.000000 -4096.000000 1312.000000 928.000000 -4032.000000 1312.000000 1072.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1600.000000 720.000000 -4032.000000 1600.000000 720.000000 -4096.000000 1600.000000 768.000000 -4096.000000 1600.000000 768.000000 -4032.000000 1312.000000 768.000000 -4096.000000 1312.000000 720.000000 -4096.000000 1312.000000 720.000000 -4032.000000 1312.000000 768.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1600.000000 512.000000 -4032.000000 1600.000000 512.000000 -4096.000000 1600.000000 560.000000 -4096.000000 1600.000000 560.000000 -4032.000000 1312.000000 560.000000 -4096.000000 1312.000000 512.000000 -4096.000000 1312.000000 512.000000 -4032.000000 1312.000000 560.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1600.000000 304.000000 -4032.000000 1600.000000 304.000000 -4096.000000 1600.000000 352.000000 -4096.000000 1600.000000 352.000000 -4032.000000 1312.000000 352.000000 -4096.000000 1312.000000 304.000000 -4096.000000 1312.000000 304.000000 -4032.000000 1312.000000 352.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1600.000000 -144.000000 -4032.000000 1600.000000 -144.000000 -4096.000000 1600.000000 144.000000 -4096.000000 1600.000000 144.000000 -4032.000000 1312.000000 144.000000 -4096.000000 1312.000000 -144.000000 -4096.000000 1312.000000 -144.000000 -4032.000000 1312.000000 144.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1920.000000 -144.000000 -4096.000000 1920.000000 -144.000000 -5392.000000 1920.000000 1072.000000 -5392.000000 1920.000000 1072.000000 -4096.000000 1632.000000 1072.000000 -5392.000000 1632.000000 -144.000000 -5392.000000 1632.000000 -144.000000 -4096.000000 1632.000000 1072.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1920.000000 928.000000 -4032.000000 1920.000000 928.000000 -4096.000000 1920.000000 1072.000000 -4096.000000 1920.000000 1072.000000 -4032.000000 1632.000000 1072.000000 -4096.000000 1632.000000 928.000000 -4096.000000 1632.000000 928.000000 -4032.000000 1632.000000 1072.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1920.000000 720.000000 -4032.000000 1920.000000 720.000000 -4096.000000 1920.000000 768.000000 -4096.000000 1920.000000 768.000000 -4032.000000 1632.000000 768.000000 -4096.000000 1632.000000 720.000000 -4096.000000 1632.000000 720.000000 -4032.000000 1632.000000 768.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1920.000000 512.000000 -4032.000000 1920.000000 512.000000 -4096.000000 1920.000000 560.000000 -4096.000000 1920.000000 560.000000 -4032.000000 1632.000000 560.000000 -4096.000000 1632.000000 512.000000 -4096.000000 1632.000000 512.000000 -4032.000000 1632.000000 560.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1920.000000 304.000000 -4032.000000 1920.000000 304.000000 -4096.000000 1920.000000 352.000000 -4096.000000 1920.000000 352.000000 -4032.000000 1632.000000 352.000000 -4096.000000 1632.000000 304.000000 -4096.000000 1632.000000 304.000000 -4032.000000 1632.000000 352.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 1920.000000 -144.000000 -4032.000000 1920.000000 -144.000000 -4096.000000 1920.000000 144.000000 -4096.000000 1920.000000 144.000000 -4032.000000 1632.000000 144.000000 -4096.000000 1632.000000 -144.000000 -4096.000000 1632.000000 -144.000000 -4032.000000 1632.000000 144.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2256.000000 -144.000000 -4096.000000 2256.000000 -144.000000 -5392.000000 2256.000000 1072.000000 -5392.000000 2256.000000 1072.000000 -4096.000000 1968.000000 1072.000000 -5392.000000 1968.000000 -144.000000 -5392.000000 1968.000000 -144.000000 -4096.000000 1968.000000 1072.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2256.000000 928.000000 -4032.000000 2256.000000 928.000000 -4096.000000 2256.000000 1072.000000 -4096.000000 2256.000000 1072.000000 -4032.000000 1968.000000 1072.000000 -4096.000000 1968.000000 928.000000 -4096.000000 1968.000000 928.000000 -4032.000000 1968.000000 1072.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2256.000000 720.000000 -4032.000000 2256.000000 720.000000 -4096.000000 2256.000000 768.000000 -4096.000000 2256.000000 768.000000 -4032.000000 1968.000000 768.000000 -4096.000000 1968.000000 720.000000 -4096.000000 1968.000000 720.000000 -4032.000000 1968.000000 768.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2256.000000 512.000000 -4032.000000 2256.000000 512.000000 -4096.000000 2256.000000 560.000000 -4096.000000 2256.000000 560.000000 -4032.000000 1968.000000 560.000000 -4096.000000 1968.000000 512.000000 -4096.000000 1968.000000 512.000000 -4032.000000 1968.000000 560.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2256.000000 304.000000 -4032.000000 2256.000000 304.000000 -4096.000000 2256.000000 352.000000 -4096.000000 2256.000000 352.000000 -4032.000000 1968.000000 352.000000 -4096.000000 1968.000000 304.000000 -4096.000000 1968.000000 304.000000 -4032.000000 1968.000000 352.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2256.000000 -144.000000 -4032.000000 2256.000000 -144.000000 -4096.000000 2256.000000 144.000000 -4096.000000 2256.000000 144.000000 -4032.000000 1968.000000 144.000000 -4096.000000 1968.000000 -144.000000 -4096.000000 1968.000000 -144.000000 -4032.000000 1968.000000 144.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2592.000000 -144.000000 -4096.000000 2592.000000 -144.000000 -5392.000000 2592.000000 1072.000000 -5392.000000 2592.000000 1072.000000 -4096.000000 2304.000000 1072.000000 -5392.000000 2304.000000 -144.000000 -5392.000000 2304.000000 -144.000000 -4096.000000 2304.000000 1072.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2592.000000 928.000000 -4032.000000 2592.000000 928.000000 -4096.000000 2592.000000 1072.000000 -4096.000000 2592.000000 1072.000000 -4032.000000 2304.000000 1072.000000 -4096.000000 2304.000000 928.000000 -4096.000000 2304.000000 928.000000 -4032.000000 2304.000000 1072.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2592.000000 720.000000 -4032.000000 2592.000000 720.000000 -4096.000000 2592.000000 768.000000 -4096.000000 2592.000000 768.000000 -4032.000000 2304.000000 768.000000 -4096.000000 2304.000000 720.000000 -4096.000000 2304.000000 720.000000 -4032.000000 2304.000000 768.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2592.000000 512.000000 -4032.000000 2592.000000 512.000000 -4096.000000 2592.000000 560.000000 -4096.000000 2592.000000 560.000000 -4032.000000 2304.000000 560.000000 -4096.000000 2304.000000 512.000000 -4096.000000 2304.000000 512.000000 -4032.000000 2304.000000 560.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2592.000000 304.000000 -4032.000000 2592.000000 304.000000 -4096.000000 2592.000000 352.000000 -4096.000000 2592.000000 352.000000 -4032.000000 2304.000000 352.000000 -4096.000000 2304.000000 304.000000 -4096.000000 2304.000000 304.000000 -4032.000000 2304.000000 352.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 2592.000000 -144.000000 -4032.000000 2592.000000 -144.000000 -4096.000000 2592.000000 144.000000 -4096.000000 2592.000000 144.000000 -4032.000000 2304.000000 144.000000 -4096.000000 2304.000000 -144.000000 -4096.000000 2304.000000 -144.000000 -4032.000000 2304.000000 144.000000 -4032.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 6208.000000 -144.000000 -4096.000000 6208.000000 -144.000000 -5456.000000 6208.000000 1072.000000 -5456.000000 6208.000000 1072.000000 -4096.000000 6000.000000 1072.000000 -5456.000000 6000.000000 -144.000000 -5456.000000 6000.000000 -144.000000 -4096.000000 6000.000000 1072.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5712.000000 -144.000000 -4096.000000 5712.000000 -144.000000 -5456.000000 5712.000000 1072.000000 -5456.000000 5712.000000 1072.000000 -4096.000000 5664.000000 1072.000000 -5456.000000 5664.000000 -144.000000 -5456.000000 5664.000000 -144.000000 -4096.000000 5664.000000 1072.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5376.000000 -144.000000 -4096.000000 5376.000000 -144.000000 -5456.000000 5376.000000 1072.000000 -5456.000000 5376.000000 1072.000000 -4096.000000 5328.000000 1072.000000 -5456.000000 5328.000000 -144.000000 -5456.000000 5328.000000 -144.000000 -4096.000000 5328.000000 1072.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5040.000000 -144.000000 -4096.000000 5040.000000 -144.000000 -5456.000000 5040.000000 1072.000000 -5456.000000 5040.000000 1072.000000 -4096.000000 5008.000000 1072.000000 -5456.000000 5008.000000 -144.000000 -5456.000000 5008.000000 -144.000000 -4096.000000 5008.000000 1072.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 4720.000000 -144.000000 -4096.000000 4720.000000 -144.000000 -5456.000000 4720.000000 1072.000000 -5456.000000 4720.000000 1072.000000 -4096.000000 4560.000000 1072.000000 -5456.000000 4560.000000 -144.000000 -5456.000000 4560.000000 -144.000000 -4096.000000 4560.000000 1072.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5008.000000 -144.000000 -4160.000000 5008.000000 -144.000000 -5456.000000 5008.000000 1072.000000 -5456.000000 5008.000000 1072.000000 -4160.000000 4720.000000 1072.000000 -5456.000000 4720.000000 -144.000000 -5456.000000 4720.000000 -144.000000 -4160.000000 4720.000000 1072.000000 -4160.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5008.000000 928.000000 -4096.000000 5008.000000 928.000000 -4160.000000 5008.000000 1072.000000 -4160.000000 5008.000000 1072.000000 -4096.000000 4720.000000 1072.000000 -4160.000000 4720.000000 928.000000 -4160.000000 4720.000000 928.000000 -4096.000000 4720.000000 1072.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5008.000000 720.000000 -4096.000000 5008.000000 720.000000 -4160.000000 5008.000000 768.000000 -4160.000000 5008.000000 768.000000 -4096.000000 4720.000000 768.000000 -4160.000000 4720.000000 720.000000 -4160.000000 4720.000000 720.000000 -4096.000000 4720.000000 768.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5008.000000 512.000000 -4096.000000 5008.000000 512.000000 -4160.000000 5008.000000 560.000000 -4160.000000 5008.000000 560.000000 -4096.000000 4720.000000 560.000000 -4160.000000 4720.000000 512.000000 -4160.000000 4720.000000 512.000000 -4096.000000 4720.000000 560.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5008.000000 304.000000 -4096.000000 5008.000000 304.000000 -4160.000000 5008.000000 352.000000 -4160.000000 5008.000000 352.000000 -4096.000000 4720.000000 352.000000 -4160.000000 4720.000000 304.000000 -4160.000000 4720.000000 304.000000 -4096.000000 4720.000000 352.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5008.000000 -144.000000 -4096.000000 5008.000000 -144.000000 -4160.000000 5008.000000 144.000000 -4160.000000 5008.000000 144.000000 -4096.000000 4720.000000 144.000000 -4160.000000 4720.000000 -144.000000 -4160.000000 4720.000000 -144.000000 -4096.000000 4720.000000 144.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5328.000000 -144.000000 -4160.000000 5328.000000 -144.000000 -5456.000000 5328.000000 1072.000000 -5456.000000 5328.000000 1072.000000 -4160.000000 5040.000000 1072.000000 -5456.000000 5040.000000 -144.000000 -5456.000000 5040.000000 -144.000000 -4160.000000 5040.000000 1072.000000 -4160.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5328.000000 928.000000 -4096.000000 5328.000000 928.000000 -4160.000000 5328.000000 1072.000000 -4160.000000 5328.000000 1072.000000 -4096.000000 5040.000000 1072.000000 -4160.000000 5040.000000 928.000000 -4160.000000 5040.000000 928.000000 -4096.000000 5040.000000 1072.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5328.000000 720.000000 -4096.000000 5328.000000 720.000000 -4160.000000 5328.000000 768.000000 -4160.000000 5328.000000 768.000000 -4096.000000 5040.000000 768.000000 -4160.000000 5040.000000 720.000000 -4160.000000 5040.000000 720.000000 -4096.000000 5040.000000 768.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5328.000000 512.000000 -4096.000000 5328.000000 512.000000 -4160.000000 5328.000000 560.000000 -4160.000000 5328.000000 560.000000 -4096.000000 5040.000000 560.000000 -4160.000000 5040.000000 512.000000 -4160.000000 5040.000000 512.000000 -4096.000000 5040.000000 560.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5328.000000 304.000000 -4096.000000 5328.000000 304.000000 -4160.000000 5328.000000 352.000000 -4160.000000 5328.000000 352.000000 -4096.000000 5040.000000 352.000000 -4160.000000 5040.000000 304.000000 -4160.000000 5040.000000 304.000000 -4096.000000 5040.000000 352.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5328.000000 -144.000000 -4096.000000 5328.000000 -144.000000 -4160.000000 5328.000000 144.000000 -4160.000000 5328.000000 144.000000 -4096.000000 5040.000000 144.000000 -4160.000000 5040.000000 -144.000000 -4160.000000 5040.000000 -144.000000 -4096.000000 5040.000000 144.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5664.000000 -144.000000 -4160.000000 5664.000000 -144.000000 -5456.000000 5664.000000 1072.000000 -5456.000000 5664.000000 1072.000000 -4160.000000 5376.000000 1072.000000 -5456.000000 5376.000000 -144.000000 -5456.000000 5376.000000 -144.000000 -4160.000000 5376.000000 1072.000000 -4160.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5664.000000 928.000000 -4096.000000 5664.000000 928.000000 -4160.000000 5664.000000 1072.000000 -4160.000000 5664.000000 1072.000000 -4096.000000 5376.000000 1072.000000 -4160.000000 5376.000000 928.000000 -4160.000000 5376.000000 928.000000 -4096.000000 5376.000000 1072.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5664.000000 720.000000 -4096.000000 5664.000000 720.000000 -4160.000000 5664.000000 768.000000 -4160.000000 5664.000000 768.000000 -4096.000000 5376.000000 768.000000 -4160.000000 5376.000000 720.000000 -4160.000000 5376.000000 720.000000 -4096.000000 5376.000000 768.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5664.000000 512.000000 -4096.000000 5664.000000 512.000000 -4160.000000 5664.000000 560.000000 -4160.000000 5664.000000 560.000000 -4096.000000 5376.000000 560.000000 -4160.000000 5376.000000 512.000000 -4160.000000 5376.000000 512.000000 -4096.000000 5376.000000 560.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5664.000000 304.000000 -4096.000000 5664.000000 304.000000 -4160.000000 5664.000000 352.000000 -4160.000000 5664.000000 352.000000 -4096.000000 5376.000000 352.000000 -4160.000000 5376.000000 304.000000 -4160.000000 5376.000000 304.000000 -4096.000000 5376.000000 352.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 5664.000000 -144.000000 -4096.000000 5664.000000 -144.000000 -4160.000000 5664.000000 144.000000 -4160.000000 5664.000000 144.000000 -4096.000000 5376.000000 144.000000 -4160.000000 5376.000000 -144.000000 -4160.000000 5376.000000 -144.000000 -4096.000000 5376.000000 144.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 6000.000000 -144.000000 -4160.000000 6000.000000 -144.000000 -5456.000000 6000.000000 1072.000000 -5456.000000 6000.000000 1072.000000 -4160.000000 5712.000000 1072.000000 -5456.000000 5712.000000 -144.000000 -5456.000000 5712.000000 -144.000000 -4160.000000 5712.000000 1072.000000 -4160.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 6000.000000 928.000000 -4096.000000 6000.000000 928.000000 -4160.000000 6000.000000 1072.000000 -4160.000000 6000.000000 1072.000000 -4096.000000 5712.000000 1072.000000 -4160.000000 5712.000000 928.000000 -4160.000000 5712.000000 928.000000 -4096.000000 5712.000000 1072.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 6000.000000 720.000000 -4096.000000 6000.000000 720.000000 -4160.000000 6000.000000 768.000000 -4160.000000 6000.000000 768.000000 -4096.000000 5712.000000 768.000000 -4160.000000 5712.000000 720.000000 -4160.000000 5712.000000 720.000000 -4096.000000 5712.000000 768.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 6000.000000 512.000000 -4096.000000 6000.000000 512.000000 -4160.000000 6000.000000 560.000000 -4160.000000 6000.000000 560.000000 -4096.000000 5712.000000 560.000000 -4160.000000 5712.000000 512.000000 -4160.000000 5712.000000 512.000000 -4096.000000 5712.000000 560.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 6000.000000 304.000000 -4096.000000 6000.000000 304.000000 -4160.000000 6000.000000 352.000000 -4160.000000 6000.000000 352.000000 -4096.000000 5712.000000 352.000000 -4160.000000 5712.000000 304.000000 -4160.000000 5712.000000 304.000000 -4096.000000 5712.000000 352.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 6000.000000 -144.000000 -4096.000000 6000.000000 -144.000000 -4160.000000 6000.000000 144.000000 -4160.000000 6000.000000 144.000000 -4096.000000 5712.000000 144.000000 -4160.000000 5712.000000 -144.000000 -4160.000000 5712.000000 -144.000000 -4096.000000 5712.000000 144.000000 -4096.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -3456.000000 -144.000000 -4112.000000 -3456.000000 -144.000000 -5472.000000 -3456.000000 1072.000000 -5472.000000 -3456.000000 1072.000000 -4112.000000 -3664.000000 1072.000000 -5472.000000 -3664.000000 -144.000000 -5472.000000 -3664.000000 -144.000000 -4112.000000 -3664.000000 1072.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -3952.000000 -144.000000 -4112.000000 -3952.000000 -144.000000 -5472.000000 -3952.000000 1072.000000 -5472.000000 -3952.000000 1072.000000 -4112.000000 -4000.000000 1072.000000 -5472.000000 -4000.000000 -144.000000 -5472.000000 -4000.000000 -144.000000 -4112.000000 -4000.000000 1072.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4288.000000 -144.000000 -4112.000000 -4288.000000 -144.000000 -5472.000000 -4288.000000 1072.000000 -5472.000000 -4288.000000 1072.000000 -4112.000000 -4336.000000 1072.000000 -5472.000000 -4336.000000 -144.000000 -5472.000000 -4336.000000 -144.000000 -4112.000000 -4336.000000 1072.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4624.000000 -144.000000 -4112.000000 -4624.000000 -144.000000 -5472.000000 -4624.000000 1072.000000 -5472.000000 -4624.000000 1072.000000 -4112.000000 -4656.000000 1072.000000 -5472.000000 -4656.000000 -144.000000 -5472.000000 -4656.000000 -144.000000 -4112.000000 -4656.000000 1072.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4944.000000 -144.000000 -4112.000000 -4944.000000 -144.000000 -5472.000000 -4944.000000 1072.000000 -5472.000000 -4944.000000 1072.000000 -4112.000000 -5104.000000 1072.000000 -5472.000000 -5104.000000 -144.000000 -5472.000000 -5104.000000 -144.000000 -4112.000000 -5104.000000 1072.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4656.000000 -144.000000 -4176.000000 -4656.000000 -144.000000 -5472.000000 -4656.000000 1072.000000 -5472.000000 -4656.000000 1072.000000 -4176.000000 -4944.000000 1072.000000 -5472.000000 -4944.000000 -144.000000 -5472.000000 -4944.000000 -144.000000 -4176.000000 -4944.000000 1072.000000 -4176.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4656.000000 928.000000 -4112.000000 -4656.000000 928.000000 -4176.000000 -4656.000000 1072.000000 -4176.000000 -4656.000000 1072.000000 -4112.000000 -4944.000000 1072.000000 -4176.000000 -4944.000000 928.000000 -4176.000000 -4944.000000 928.000000 -4112.000000 -4944.000000 1072.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4656.000000 720.000000 -4112.000000 -4656.000000 720.000000 -4176.000000 -4656.000000 768.000000 -4176.000000 -4656.000000 768.000000 -4112.000000 -4944.000000 768.000000 -4176.000000 -4944.000000 720.000000 -4176.000000 -4944.000000 720.000000 -4112.000000 -4944.000000 768.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4656.000000 512.000000 -4112.000000 -4656.000000 512.000000 -4176.000000 -4656.000000 560.000000 -4176.000000 -4656.000000 560.000000 -4112.000000 -4944.000000 560.000000 -4176.000000 -4944.000000 512.000000 -4176.000000 -4944.000000 512.000000 -4112.000000 -4944.000000 560.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4656.000000 304.000000 -4112.000000 -4656.000000 304.000000 -4176.000000 -4656.000000 352.000000 -4176.000000 -4656.000000 352.000000 -4112.000000 -4944.000000 352.000000 -4176.000000 -4944.000000 304.000000 -4176.000000 -4944.000000 304.000000 -4112.000000 -4944.000000 352.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4656.000000 -144.000000 -4112.000000 -4656.000000 -144.000000 -4176.000000 -4656.000000 144.000000 -4176.000000 -4656.000000 144.000000 -4112.000000 -4944.000000 144.000000 -4176.000000 -4944.000000 -144.000000 -4176.000000 -4944.000000 -144.000000 -4112.000000 -4944.000000 144.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4336.000000 -144.000000 -4176.000000 -4336.000000 -144.000000 -5472.000000 -4336.000000 1072.000000 -5472.000000 -4336.000000 1072.000000 -4176.000000 -4624.000000 1072.000000 -5472.000000 -4624.000000 -144.000000 -5472.000000 -4624.000000 -144.000000 -4176.000000 -4624.000000 1072.000000 -4176.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4336.000000 928.000000 -4112.000000 -4336.000000 928.000000 -4176.000000 -4336.000000 1072.000000 -4176.000000 -4336.000000 1072.000000 -4112.000000 -4624.000000 1072.000000 -4176.000000 -4624.000000 928.000000 -4176.000000 -4624.000000 928.000000 -4112.000000 -4624.000000 1072.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4336.000000 720.000000 -4112.000000 -4336.000000 720.000000 -4176.000000 -4336.000000 768.000000 -4176.000000 -4336.000000 768.000000 -4112.000000 -4624.000000 768.000000 -4176.000000 -4624.000000 720.000000 -4176.000000 -4624.000000 720.000000 -4112.000000 -4624.000000 768.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4336.000000 512.000000 -4112.000000 -4336.000000 512.000000 -4176.000000 -4336.000000 560.000000 -4176.000000 -4336.000000 560.000000 -4112.000000 -4624.000000 560.000000 -4176.000000 -4624.000000 512.000000 -4176.000000 -4624.000000 512.000000 -4112.000000 -4624.000000 560.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4336.000000 304.000000 -4112.000000 -4336.000000 304.000000 -4176.000000 -4336.000000 352.000000 -4176.000000 -4336.000000 352.000000 -4112.000000 -4624.000000 352.000000 -4176.000000 -4624.000000 304.000000 -4176.000000 -4624.000000 304.000000 -4112.000000 -4624.000000 352.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4336.000000 -144.000000 -4112.000000 -4336.000000 -144.000000 -4176.000000 -4336.000000 144.000000 -4176.000000 -4336.000000 144.000000 -4112.000000 -4624.000000 144.000000 -4176.000000 -4624.000000 -144.000000 -4176.000000 -4624.000000 -144.000000 -4112.000000 -4624.000000 144.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4000.000000 -144.000000 -4176.000000 -4000.000000 -144.000000 -5472.000000 -4000.000000 1072.000000 -5472.000000 -4000.000000 1072.000000 -4176.000000 -4288.000000 1072.000000 -5472.000000 -4288.000000 -144.000000 -5472.000000 -4288.000000 -144.000000 -4176.000000 -4288.000000 1072.000000 -4176.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4000.000000 928.000000 -4112.000000 -4000.000000 928.000000 -4176.000000 -4000.000000 1072.000000 -4176.000000 -4000.000000 1072.000000 -4112.000000 -4288.000000 1072.000000 -4176.000000 -4288.000000 928.000000 -4176.000000 -4288.000000 928.000000 -4112.000000 -4288.000000 1072.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4000.000000 720.000000 -4112.000000 -4000.000000 720.000000 -4176.000000 -4000.000000 768.000000 -4176.000000 -4000.000000 768.000000 -4112.000000 -4288.000000 768.000000 -4176.000000 -4288.000000 720.000000 -4176.000000 -4288.000000 720.000000 -4112.000000 -4288.000000 768.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4000.000000 512.000000 -4112.000000 -4000.000000 512.000000 -4176.000000 -4000.000000 560.000000 -4176.000000 -4000.000000 560.000000 -4112.000000 -4288.000000 560.000000 -4176.000000 -4288.000000 512.000000 -4176.000000 -4288.000000 512.000000 -4112.000000 -4288.000000 560.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4000.000000 304.000000 -4112.000000 -4000.000000 304.000000 -4176.000000 -4000.000000 352.000000 -4176.000000 -4000.000000 352.000000 -4112.000000 -4288.000000 352.000000 -4176.000000 -4288.000000 304.000000 -4176.000000 -4288.000000 304.000000 -4112.000000 -4288.000000 352.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -4000.000000 -144.000000 -4112.000000 -4000.000000 -144.000000 -4176.000000 -4000.000000 144.000000 -4176.000000 -4000.000000 144.000000 -4112.000000 -4288.000000 144.000000 -4176.000000 -4288.000000 -144.000000 -4176.000000 -4288.000000 -144.000000 -4112.000000 -4288.000000 144.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -3664.000000 -144.000000 -4176.000000 -3664.000000 -144.000000 -5472.000000 -3664.000000 1072.000000 -5472.000000 -3664.000000 1072.000000 -4176.000000 -3952.000000 1072.000000 -5472.000000 -3952.000000 -144.000000 -5472.000000 -3952.000000 -144.000000 -4176.000000 -3952.000000 1072.000000 -4176.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -3664.000000 928.000000 -4112.000000 -3664.000000 928.000000 -4176.000000 -3664.000000 1072.000000 -4176.000000 -3664.000000 1072.000000 -4112.000000 -3952.000000 1072.000000 -4176.000000 -3952.000000 928.000000 -4176.000000 -3952.000000 928.000000 -4112.000000 -3952.000000 1072.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -3664.000000 720.000000 -4112.000000 -3664.000000 720.000000 -4176.000000 -3664.000000 768.000000 -4176.000000 -3664.000000 768.000000 -4112.000000 -3952.000000 768.000000 -4176.000000 -3952.000000 720.000000 -4176.000000 -3952.000000 720.000000 -4112.000000 -3952.000000 768.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -3664.000000 512.000000 -4112.000000 -3664.000000 512.000000 -4176.000000 -3664.000000 560.000000 -4176.000000 -3664.000000 560.000000 -4112.000000 -3952.000000 560.000000 -4176.000000 -3952.000000 512.000000 -4176.000000 -3952.000000 512.000000 -4112.000000 -3952.000000 560.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -3664.000000 304.000000 -4112.000000 -3664.000000 304.000000 -4176.000000 -3664.000000 352.000000 -4176.000000 -3664.000000 352.000000 -4112.000000 -3952.000000 352.000000 -4176.000000 -3952.000000 304.000000 -4176.000000 -3952.000000 304.000000 -4112.000000 -3952.000000 352.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -3664.000000 -144.000000 -4112.000000 -3664.000000 -144.000000 -4176.000000 -3664.000000 144.000000 -4176.000000 -3664.000000 144.000000 -4112.000000 -3952.000000 144.000000 -4176.000000 -3952.000000 -144.000000 -4176.000000 -3952.000000 -144.000000 -4112.000000 -3952.000000 144.000000 -4112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty entity type PlayerSpawn Vector3 position 3920.000000 -104.000000 2320.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 304.000000 -104.000000 2832.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position -4224.000000 -104.000000 2832.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position -2528.000000 -104.000000 1680.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 4208.000000 -104.000000 48.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 4000.000000 -104.000000 -1952.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 5280.000000 -104.000000 1360.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 1584.000000 -104.000000 -1280.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 1056.000000 -104.000000 -2992.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position -1600.000000 -104.000000 -2032.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position -3104.000000 -104.000000 -2912.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position -4032.000000 -104.000000 -1648.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position -3824.000000 -104.000000 288.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position -2368.000000 -104.000000 448.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 2320.000000 -104.000000 208.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position -80.000000 40.000000 -80.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 2368.000000 -104.000000 -3024.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position -1472.000000 -104.000000 -3280.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position -4400.000000 -104.000000 1680.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 5232.000000 -104.000000 -2080.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 5472.000000 -104.000000 2192.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 3088.000000 -104.000000 2784.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 16.000000 -104.000000 1600.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 352.000000 40.000000 -80.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position -592.000000 40.000000 -64.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 736.000000 40.000000 -64.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamB 0
119e8cd9135bf48c386bdc9834d8881b2ec98f9c
449d555969bfd7befe906877abab098c6e63a0e8
/323/CH2/EX2.70/ex2_70.sci
60955cbac5a4f7410226e56685b54311928a98f7
[]
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
469
sci
ex2_70.sci
//Chapter 2,Ex2.70,Pg2.87 clc; disp("Refer to the diagram shown in the question") A=[1 0;-25 41] B=[3;0] I=A\B printf("\n I1= %.0f A \n",I(1)) printf("\n I2= %.0f A \n",I(2)) Vth=-20+10*I(2)+6*I(2) printf("\n Vth=%.2f V \n",Vth) //Calculation of Rth Rth=(25*16/(25+16)) printf("\n Rth= %.2f ohms \n",Rth) //For maximum power transfer the load resistance should be equal to the Thevenin resistance Pmax=(Vth*Vth/(4*Rth)) printf("\n Pmax=%.2f W \n",Pmax)
f8fe7e85d16ff2544939a5818df19fbe488604aa
449d555969bfd7befe906877abab098c6e63a0e8
/1418/CH27/EX27.14/EX27_14.sce
48eab8fbe972533bad35e4f112b4bdc5c1f9ae7e
[]
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
787
sce
EX27_14.sce
//EXAMPLE 27.14 //DC MACHINE clc; funcprot(0); //Variable Initialisation P1o=100;....//Output power of first generator in Kilo Watts V1=250;.....//Terminal voltage of first generator in Volts P2o=300;.....//Output power in second generator in Kilo Watts V2=250;...//Terminal voltage of second generator in Volts I1=200;..........//Current supplied by first generator in Amperes I2=500;.......//Current supplied by second generator in Amperes Ial=600;....//Additional load in Amperes dI1=(P1o*Ial/(P1o+P2o));......//Current spplied to first generator in Amperes dI2=(P2o*Ial/(P1o+P2o));......//Current supplied to second generator in Amperes disp(dI1,"Current spplied to first generator in Amperes:"); disp(dI2,"Current supplied to second generator in Amperes:");
271f1b8e7a36d6a535389e2e870fc731e3455670
449d555969bfd7befe906877abab098c6e63a0e8
/3137/CH1/EX1.15/Ex1_15.sce
1e2f9a1fb237c1f98ad5d305973e90e82d361fb8
[]
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
Ex1_15.sce
//Initilization of variables x1=2 //units x2=-2 //units y1=3 //units y2=4 //units z1=0 //units z2=6 //units P=[2,3,-1] //units //Calculations X=sqrt((x2-x1)^2+(y2-y1)^2+(z2-z1)^2) //units eLx=(x2-x1)/X //units eLy=(y2-y1)/X //units eLz=(z2-z1)/X //units Q=[eLx,eLy,eLz] //units Z=P*Q' //units //Result clc printf('The unit vector is:%fi+%fj+%fk \n',eLx,eLy,eLz) printf('The projection of P is:%f',Z) //Note:The final answer for the projection of P is off by 0.1 units //The answer mentioned in the textbook is -1.41
dacc246b3a271c2a469374b5fcd1ebf4401a8100
843ddfc1f1137ace0ddbffdc051fb2b2a3e2ba6b
/pade.sci
7d54a9c7cea0a29889ad1e4e3a29c4797d0c6e6f
[]
no_license
aguadix/SIMCON
8169169577fc5e69257f6dc91558b7b320974161
5f83003937740a730c4593c241309c9da7693ddf
refs/heads/master
2022-10-27T00:34:29.074871
2022-10-24T11:24:08
2022-10-24T11:24:08
53,549,792
0
0
null
null
null
null
UTF-8
Scilab
false
false
339
sci
pade.sci
function pade = pade(td,n) for j=1:n num(j) = ( factorial(2*n-j) * factorial(n) * (-td*%s)^j ) / ( factorial(2*n) * factorial(j) * factorial(n-j) ) den(j) = ( factorial(2*n-j) * factorial(n) * ( td*%s)^j ) / ( factorial(2*n) * factorial(j) * factorial(n-j) ) end pade = (1+sum(num))/(1+sum(den)) endfunction
3cb2ae39a23acd1f3679ad95698d25254b510c6b
717ddeb7e700373742c617a95e25a2376565112c
/1766/CH4/EX4.2/EX4_2.sce
6d13bc271a588ce8fae5fa0b1ef29d69cb65580f
[]
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
754
sce
EX4_2.sce
clc;funcprot(0);......//Example 4.2 //Initialization of variables L=4;........//Vertical height of the plate in m W=10;......//Width of the plate in m Tw=333;....//Temperature of the plate in K Ta=283;....//Temperature of air in K v=16.5*10^-6;.......//Viscosity in m^2/s K=0.027;.......//Thermal conductivity in W/mK g=9.81;....//Gravitational constant Pr=0.7;......//Prandlt no //Calculations Tf=(Tw+Ta)/2;.........//Film temperature in K B=1/(Tf);........//Temp inverse in K^-1 Gr=(g*B*(Tw-Ta)*L*L*L)/(v^2);.......//Grashoff No Nu=0.13*(Gr*Pr)^(1/3);............//Nusselt no h=(Nu*K)/L;.........//Heat transfer co-efficient in W/m^2 K Q=h*L*W*(Tw-Ta);.........//Rate of heat transfer in W disp(Q/1000,"Rate of heat transfer in kW:")
5450007bdba3fdeb8dada848c85e5552147b39af
92d437f771b932e7830c448f910250b9747096ec
/SAE/MIMO/pole_placement.sce
d7ee8c33f83e1a58738635b0cfc5165400975fb8
[]
no_license
pcaires/Proj_cvoo
c98ca370f5b740ab57ace1d518760100b50a3819
59a2a9573d6e9657b6beb89f7a0b637fa4d1e2a7
refs/heads/master
2023-05-14T02:30:06.579732
2021-06-06T22:48:49
2021-06-06T22:48:49
367,080,028
0
0
null
null
null
null
UTF-8
Scilab
false
false
272
sce
pole_placement.sce
exec('dinamica.sce',-1) A = A(1:4,1:4) B = B(1:4,:) C = eye(4,4) D = zeros(4,2) //Colocação de polos poles(1) = -0.01 poles(2) = -0.73 wn = 0.7 zeta = 0.6 poles(3) = -wn*zeta + %i*wn*sqrt(1-zeta^2) poles(4) = conj(poles(3)) K1 = ppol(A, B, poles)
e0e1d0a898fa7465f44cda3e194ef482bd7c9109
449d555969bfd7befe906877abab098c6e63a0e8
/2183/CH7/EX7.4/Ex_7_4.sce
1894380accba9897883164e0b245e77763404aa4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
287
sce
Ex_7_4.sce
// Example 7.4 //responsivity clc; clear; close; n=20;//efficiency e=1.6*10^-19;//elecronic charge h=0.80;//wavelength in micro meter C=3*10^8;//SPEED of light in meter per second ht=6.62*10^-34;//plank constt. R=((n/100)*e*h*10^-6)/(ht*C); disp(R,"Responsivity is in Ampere per Watt")
746bc0f15f92d932b1e7fb74605a0a523c7e312d
36e294af022143c4ad0adaf1a40183c8114cb39a
/Scripts/Get_MaxHold_Duty_cycle_Data_and_Compress.sce
fedebffabf4d2ab4f29b7be0324c6b67cde2bb45
[]
no_license
pflynn/Spectrum_analysis
d6388a46f686912a4d4a543f18b2a49063374506
eb31f3349fdf4f16227b25782d40937b126b297e
refs/heads/master
2016-09-05T17:10:44.896865
2011-06-27T15:01:20
2011-06-27T15:01:20
1,960,672
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,022
sce
Get_MaxHold_Duty_cycle_Data_and_Compress.sce
// This script compresses the data into a smaller matrix // It gets the Max hold Data // It gets the Duty cycle data printf('\n Compressing data....\n') printf('Getting Max hold data....\n') printf('Getting duty cycle data....\n') for j = start_sample:end_sample // 'number' is used to pick the desired file at hand // 'number' has to be a string as it is used as part of a file name number = string(j); if (j == start_sample) // A is array of values from the first file of data A = evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Results'+'/'+ band_name + number +'.csv')); // B stores a list the same as A, but values of A are changed to 1 or zero, 1 if the value in at that point A is above threshold // 0 if value at that point in A is below threshold. B = (A>threshold)*1; E = A; // fills in the first line in z when compress factor is 1 if int(((j -(start_sample -1))/compress_factor)) == ((j-(start_sample -1))/compress_factor) z(1:num_of_data_slots,((j-(start_sample -1))/compress_factor)) = E; end else // C holds values of current data file for j = 2, too end of loop C = evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Results'+'/'+ band_name + number +'.csv')); // same as B above, does this for each file from j = 2 too the end of loop. D = (C>threshold)*1; // sums up the amount of times each frequency is above the threshold. B = B + D; // gets the max hold data for the entire set of data A = max(A,C) E = max(E,C) // compresses the data for waterfall plot and stores in matrix z if int(((j -(start_sample -1))/compress_factor)) == ((j-(start_sample -1))/compress_factor) z(1:num_of_data_slots,((j-(start_sample -1))/compress_factor)) = E; // sets e back 1000 dbm to ensure the new max hold for the next section // of waterfall plot is not effected by the last E = E -1000; end end end printf('\n Data compressed.\n') // Instead of B holding the amount of times each frequency exceeded the threshold // it gives it as a fraction of 1 by dividing by the number of samples L = string(B/(end_sample - (start_sample-1))) //end // Creates and saves files used for getting duty cycle plots if (Analysis_Period == "Week") write_csv(L,'C:\Documents and Settings\pflynn\Desktop\Duty cycle plot data'+ '/dc '+ band_name +'.csv'); printf('\n Duty cycle data saved\n') else write_csv(L,'C:\Documents and Settings\pflynn\Desktop\Spectrum Days\Duty Cycle Data'+ '/dc '+ band_name + Analysis_Period + '.csv'); printf('\n Duty cycle data saved\n') end // A file is created for each band of spectrum, this is the max hold data if(Analysis_Period == "Week") write_csv(string(A),'C:\Documents and Settings\pflynn\Desktop\Max hold plot data'+ '/mh '+ band_name + '.csv'); printf('\n Max hold data saved.\n') else write_csv(string(A),'C:\Documents and Settings\pflynn\Desktop\Spectrum Days\Max Hold Data'+ '/mh '+ band_name + Analysis_Period +'.csv'); end
60963a9d708c1d82c5bda9f2bce81713291d1563
b29e9715ab76b6f89609c32edd36f81a0dcf6a39
/ketpic2escifiles6/Ptse.sci
fe5e52b981ed72b14dd2cced95c894686e603eb9
[]
no_license
ketpic/ketcindy-scilab-support
e1646488aa840f86c198818ea518c24a66b71f81
3df21192d25809ce980cd036a5ef9f97b53aa918
refs/heads/master
2021-05-11T11:40:49.725978
2018-01-16T14:02:21
2018-01-16T14:02:21
117,643,554
1
0
null
null
null
null
UTF-8
Scilab
false
false
222
sci
Ptse.sci
// // 10.01.13 function Out=Ptse(varargin) global XMIN XMAX YMIN YMAX if length(varargin)==0 Out=[XMAX,YMIN]; else G=varargin(1); XM=max(G(:,1)); Ym=min(G(:,2)); Out=[XM,Ym]; end; endfunction
87162d034b5c4ae258d322d4641eb4b91167f5fa
b23687e2eb02bcb6d0f581b7975f42c496faeda1
/ContinuousConvolution.sce
d6de1dd9e749afa29e7b4a3ffbfcce881f5045b0
[ "MIT" ]
permissive
harvishj/Scilab
bd3fbd3e679eb07aa088ff2bab40d491c6499770
9daada512f42ea6f52199a34d6b18e64b107af94
refs/heads/master
2021-07-14T15:06:03.621923
2020-10-05T06:35:43
2020-10-05T06:35:43
213,328,984
1
3
MIT
2020-10-05T06:35:44
2019-10-07T08:16:52
Scilab
UTF-8
Scilab
false
false
210
sce
ContinuousConvolution.sce
clear; clf; clc; st = -%pi en = %pi dt = 1/100; t = st:dt:en; x = sin(2 * %pi * t); y = cos(2 * %pi * t); z = dt.*conv(x,y); disp(z); plot2d3(z) title("Convoluting sine and cosine wave", "fontsize", 3);
735134a6de6c97323a25b85ee25af89b1706b412
a006a53d954de031fd82f26f4fc82c8fb610293c
/macros/sdpasparse.sci
707d48e9746469c4d884019986ba5e82f6188bf7
[]
no_license
Siddharth11235/CSDP-basic
cba775450ad5f7271ecc00ada0831c3ed1518958
97c441b8a6eea4c6b4466c03828f048e2c0fc37a
refs/heads/master
2021-06-20T23:43:51.881537
2017-07-17T12:30:00
2017-07-17T12:30:00
96,966,653
0
1
null
null
null
null
UTF-8
Scilab
false
false
1,066
sci
sdpasparse.sci
function A = sdpasparse(A1,K) funcprot(0); quot = size(A1,1)/size(A1,2); [ij,v,mn]=spget(A1); for i = 1:size(ij,1) Elements(i) = full(A1(ij(i,1),ij(i,2))); end j = 0; for i = 1:size(ij,1) j = floor(ij(i,1)/mn(2)); iindices(i) = ij(i,1) -j*mn(2); if iindices(i) == 0 iindices(i) = mn(2); end if modulo(ij(i,1),mn(2)) == 0 constr(i) = j; else constr(i) = j+1; end jindices(i) = ij(i,2); end k = 0; for i = 1:length(K) ksum(i) = k+K(i); k = k+K(i); end for i = 1:length(iindices) for j = 1:length(K) if jindices(i) <=ksum(j) blockno(i) = j; break; end end end ksum = [0 ;ksum]; for i = 1:length(iindices) jindices(i) = jindices(i) - ksum(blockno(i)); iindices(i) = iindices(i) - ksum(blockno(i)); end A = [constr blockno iindices jindices Elements]; endfunction
e01e924bbaa0ced87eb305f31e30dd2ca5d5069f
449d555969bfd7befe906877abab098c6e63a0e8
/3843/CH11/EX11.10/Ex11_10.sce
0179672ee0a24d0e1f9bc2cd4de44192e767e2c5
[]
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,019
sce
Ex11_10.sce
// Example 11_10 clc;funcprot(0); // Given data T_1=5;// °C T_2=25;// °C phi_1=40/100;// The relative humidity at state 1 phi_2=40/100;// The relative humidity at state 2 V=60;// m^3/min P=100;// kPa P_g1=0.872;// kPa R_a=0.287;// kJ/kg.K // Calculation // (a) P_a1=P-(phi_1*P_g1);// kPa rho_a1=P_a1/(R_a*(T_1+273));// kg/m^3 mdot_a=(V/60)*rho_a1;// The mass flux of dry air in kg/s // Using psychrometric chart h_1=10;// kJ/kg air h_2=31;// kJ/kg air Q=mdot_a*(h_2-h_1);// The rate of heat transfer in kJ/s // (b) w_2=0.0021;// kgH2O/kg dry air w_3=0.008;// kgH2O/kg dry air mdot_s=(w_3-w_2)*mdot_a;// The rate of steam supplied in kg/s // (c) h_2=31;// kJ/kg h_3=45;// kJ/kg h_s=(mdot_a/mdot_s)*(h_3-h_2);// kJ/kg h_fs=604.7;// kJ/kg h_fgs=2133.8;// kJ/kg x_s=(h_s-h_fs)/h_fgs;// The state of the steam introduced printf("\n(a)The rate of heat transfer,Q=%2.1f kJ/s \n(b)The rate of steam supplied,mdot_s=%0.4f kg/s \n(c)The state of the steam introduced,x_s=%0.2f",Q,mdot_s,x_s);
1c633bebc6d69d857488bf10048ac102350c42bf
449d555969bfd7befe906877abab098c6e63a0e8
/167/CH16/EX16.11/ex11.sce
44f6d1cb9db677b364fd700dd28e432e3b0368a3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
514
sce
ex11.sce
//example 11 //Composition of Different Phases of a Mixture clear clc yH2Ol=0.3 yNH3l=0.7 PH2Osat=7.3851 //kPa PNH3sat=1554.33 //kPa PH2Og=yH2Ol*PH2Osat //vapour pressure of h2o PNH3g=yNH3l*PNH3sat // vapour pressure of nh3 Ptotal=PH2Og+PNH3g yH2Og=PH2Og/Ptotal //mole fraction of h2o in gas phase yNH3=PNH3g/Ptotal //mole fraction of nh3 in gas phase printf("\n The mole fraction of H2O in the mixture is = %.4f . \n",yH2Og); printf("\n The mole fraction of NH3 in the mixture is = %.4f . \n",yNH3);
2d62cada36d1b472d3cf7a324aa0eaf43f4734ae
47adabef6eb8924aff50314b05cfd89f90e19aec
/tests/unit_tests/fortran_sum.tst
0205da8cdb44e726c7c7c4f4843f9a9f613dff5a
[ "BSD-3-Clause" ]
permissive
sengupta/scilab-http
acf41286543dfadb62bfbf1fc74d19cd6ec65815
114ac7ab3a55e08399a82e8a1c084bc23cace3a3
refs/heads/master
2021-03-12T20:38:08.900774
2012-04-03T13:14:33
2012-04-03T13:14:33
3,886,870
1
0
null
null
null
null
UTF-8
Scilab
false
false
392
tst
fortran_sum.tst
// This file is released under the 3-clause BSD license. See COPYING-BSD. //================================= // load toolbox_skeleton if funptr('fortran_sum') == 0 then root_tlbx_path = SCI+'\contrib\toolbox_skeleton\'; exec(root_tlbx_path + 'loader.sce',-1); end //================================= if fortran_sum(3,5) <> 8 then pause,end //=================================
90f120d4576a8501267c17551b5e761a090dc850
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set6/s_Electrical_Measurements_Measuring_Instruments_K._Shinghal_2318.zip/Electrical_Measurements_Measuring_Instruments_K._Shinghal_2318/CH3/EX3.15/ex_3_15.sce
e7f3b82af85623339c5dfcfdf02c2b027a9d56f9
[]
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
ex_3_15.sce
errcatch(-1,"stop");mode(2);//Example 3.15:High resistance ; ; //given data : V1=500;// in V V2=300;// in V t=60;// in sec C=2.5*10^-6;// in F R=t*10^-6/(C*log(V1/V2)); disp(R,"Unknown resistance,R(M-ohm) = ") exit();
a3053c793f08e5d5c792b847dba8f833a1597a29
449d555969bfd7befe906877abab098c6e63a0e8
/62/CH7/EX7.35/ex_7_35.sce
b2362769d4e2d0aef14cdf40eb61dc2c630d94e4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
446
sce
ex_7_35.sce
clc; A=[0 1 ;-1/8 3/4]; B=[0;1]; C=[-1/8 3/4]; D=[1]; Mc=[B A*B]; if (det(Mc)<>0) then disp("and is controllable",rank(Mc),"Mc has a rank of") else disp("and is uncontrollable",rank(Mc),"Mc has a rank of"); end Mo=[C;C*A]; if (det(Mo)<>0) then disp("and is observable",rank(Mo),"Mo has a rank of") else disp("and is unobservable",rank(Mo),"Mo has a rank of"); end Hz=ss2tf(syslin('d',A,B,C,D)); disp(Hz,"H(z)=");
ad204fe6489c1fe9e3ff77d2988229bb07f66d51
449d555969bfd7befe906877abab098c6e63a0e8
/34/CH1/EX1.11/Ch1Exa11.sci
44fa6816b26e26b64ba6499b7c97ac1fb1aaaf44
[]
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
527
sci
Ch1Exa11.sci
c=3*(10^8); //velocity of light, m/s VaE= 0.90*c; //velocity of spacecraft alpha w.r.t Earth, m/s VbA= 0.50*c; //velocity of spacecraft beta w.r.t. Alpha, m/s VbE= (VaE+VbA)/(1+((VaE*VbA)/(c^2))); //velocity of beta w.r.t Earth, m/s VbE=VbE/c; //Converting to percent of c disp(VbE,"The required velocity of spacecraft Beta w.r.t. Earth, in m/s, in terms of percent of c, is: ") //Result // The required velocity of spacecraft Beta w.r.t. Earth, in m/s, in terms of percent of c, is: // 0.9655172
5d8ee45cfdcc2b568672a2b6a34f6a0a379ba53d
449d555969bfd7befe906877abab098c6e63a0e8
/249/CH22/EX22.2/22_02.sce
418e519ae5629443a1fad7e5e7708f9361df24d7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
810
sce
22_02.sce
clear clc PA=14.6*101325;//Pa HA=148000; Vr=2; Vl=Vr; b=1; fs=0.0055; k=5*10^-5;//m6l/kg.molcat.s dp=5*10^-5;//mcat kac=4.4*10^-4;kai=0.277;//m3l/m3.r.s density=1450;//kg/m3 De=5*10^-10;//m3l/mcat.s L=dp/6;//for spherical particle CA=PA/HA; X=0.9; CBo=2500;//mol/m3.l CB=CBo*(1-X); ac=6*fs/dp;; K=kac*ac; //Guessing different values of CB CB=[2500;1000;250]; e=[0.19;0.29;0.5]; for i=1:3 Mt(i)=L*sqrt(k*CB(i)*density/De); rA(i)=CA/((1/kai)+(1/K)+(1/(k*density*e(i)*fs*CB(i)))) inv_rA(i)=1/rA(i); end plot(CB,inv_rA) xlabel('CB');ylabel('-1/rA') //Reaction time is given by (Vl/b*Vr)*integral(dCB/-rA) //Graphically integrating Area=3460; t=Vl*Area/(b*Vr); t=t/60;//min printf("\n The time required for 90 percentage conversion of reactant is %f",t) printf("min")
0b2afcc2c8350bf41bbeac9b5eed79d7a5921235
449d555969bfd7befe906877abab098c6e63a0e8
/53/CH7/EX7.4/example_4.sce
f3768ddd7728607419f607aeb02309a8fadc75aa
[]
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
919
sce
example_4.sce
Av=-10; disp('Av=-(R2/R1)*(A*B/1+A*B), where A-differential gain and B=R1/R1+R2'); disp('When A*B&gt;&gt;1,Av=-(R2/R1)=Av1'); Av1=Av; disp('abs(A)&gt;&gt;1+(R2/R1)=1+abs(Av1)'); A=1+abs(Av1); disp('Because the cross over point occurs at a significantly higher frequency than the dominant frequency at 10Hz '); disp('The phase angle of A is very close to -90degrees=%pi/2 radians'); disp('Using the j-notation the gain A at the crossover point is equal to %i*11'); A=%i*11; disp('1+abs(Av1)=(R1+R2)/R1'); Av=(-10)*(A/(1+abs(Av1)))/(1+(A/(1+abs(Av1)))); Av2=abs(Av); M=Av/Av2; printf(" The closed-loop gain at the cross over point is thus reduced by a factor %f and therefore point corresponds to upper half-power frequency which is 90KHz",M) disp('Therefore fh=90KHz, fl=0KHz'); fh=90;//in KHz fl=0;//in KHz disp('Bandwidth BW=fh-fl'); BW=fh-fl; printf(" RESULTS:\n"); printf(" The closed-loop bandwidth is %d KHz",BW);
09052354d33b7de258e116f5fc4204a78ccee885
449d555969bfd7befe906877abab098c6e63a0e8
/3768/CH6/EX6.1/Ex6_1.sce
9ac51f358958326ce7ac1465221c9b1622d93ea2
[]
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
352
sce
Ex6_1.sce
//Example number 6.1, Page number 116 clc;clear; close; //Variable declaration rho=1.54*10**-8; //resistivity(ohm m) n=5.8*10**28; //conduction electrons(per m**3) e=1.6*10**-19; //charge(c) m=9.1*10**-31; //mass(kg) //Calculation towr=m/(n*e**2*rho); //relaxation time(sec) //Result printf("relaxation time is %.4e sec",towr)
fdf0b00ba756eacdf8ff95b697a70c9ff095efbe
449d555969bfd7befe906877abab098c6e63a0e8
/1484/CH2/EX2.4/2_4.sce
61e0a3553ec18136a3ddf71138f26a0508b45eeb
[]
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
189
sce
2_4.sce
clc //initialisation of variables sg= 7 sg1= 5 d= 8 //in t= 1 //in //CALCULATIONS x= (sg+sg1)+sqrt(d*(sg*(sg1+t)+1)) //RESULTS printf ('maximum length of cylinder= %.2f in ',x)
16c96803a02c09e4ab015db1ed9f72f44b392b97
a159f59d19e2b03b234e9c2977ba4a932180e648
/Software/GreenScilabV0.9/macros/sim_fit_Hidden.sci
16d003a62454fc4fe8a75412c0c4bc8810500c3d
[]
no_license
OpenAgricultureFoundation/openag_sim
e052bbcc31b1d7f9b84add066327b479785f8723
425e678b55e24b5848d17181d25770175b8c2c3f
refs/heads/master
2021-07-01T06:25:08.753260
2017-09-20T21:44:18
2017-09-20T21:44:18
80,540,145
0
1
null
null
null
null
UTF-8
Scilab
false
false
6,059
sci
sim_fit_Hidden.sci
function [Y] = sim_fit_Hidden(x) // // greenlab simulator for parameter estimization // // Y - Target data // x - Hidden parameters // KANG MengZhen, 2006.11 exec('bin/glob_declare.sci'); sump=0;//current parameter x_t_exp=t_exp; for a=1:length(t_exp_i) sump=sump+1; x_t_exp(t_exp_i(a))=x(sump); end x_Bt_N=Bt_N; for a=1:length(Bt_N_i) sump=sump+1; x_Bt_N(Bt_N_i(a))=x(sump); end x_Bt_p=Bt_p; for a=1:length(Bt_p_i) sump=sump+1; x_Bt_p(Bt_p_i(a))=x(sump); end x_S_O=S_O; for a=1:length(S_O_i) sump=sump+1; x_S_O(S_O_i(a),S_O_j(a))=x(sump); end for p=2:maxp x_S_O(1:OrganType,p)= x_S_O(1:OrganType,1).*x_S_O(1:OrganType,p); end x_r_B=r_B; if C_r_B==1 then sump=sump+1; x_r_B=x(sump); end x_r_P=r_P; if C_r_P==1 then sump=sump+1; x_r_P=x(sump); end x_Sp=Sp; if C_Sp==1 then sump=sump+1; x_Sp=x(sump); end x_rp=rp; if C_rp==1 then sump=sump+1; x_rp=x(sump); end x_kp=kp; if C_kp==1 then sump=sump+1; x_kp=x(sump); end x_Q0=Q0; if C_Q0==1 then sump=sump+1; x_Q0=x(sump); end Y=[]; //target computed in each reiteration for h=1:NumPlt //for each plant Q=zeros(N0(h)+1,1); // first allocation of biomass from the seed Q(1,1) = x_Q0 * (1 - dQ0); //for i=1:Tr(h) //for each stage//since for now all measurements are destructive, there is no multi-stage age=CASample(h);//age of the sample plant // compute share of biomass and demand [MAT_EX,Demand,q_O,q_L,QO,B_S,B_ST,P_H,P_S,I_H,I_S,L_S,Fm_V,Ff_V,R_Struct,Q,QSW,QTW,E] =gl_main(Flag_C_code,Flag_Sci_code,age,maxp,x_t_exp,x_Bt_N, x_Bt_p,x_S_O,N_SI,kp_SI,Nb_O,Tu_O,... Nb_BI,x_Q0,dQ0,DL,coff_L,RingOption,a_aI,a_aP,Th_B,Den_Ff,Den_Fm,Den_I,a_bI,a_bP,x_r_B,x_r_P,r_R,x_Sp,x_rp,x_kp,... QSW,QTW,water_sequence,theta_sequence, light_sequence,Omega, aux_paras, Flag_environment,QSWMAX,QSWMIN,C1,C2,E,Nu_Ma,u,E0,Flag_field); // organ ID: 1 blade, 2 petiel, 3 internode, 4 female flower, 5 male flower, 6 blade area, 7 internode area, 8 internode length TargetType=8; for typ=1:TargetType for p=1:maxp //GUend=min(age,Nu_Ma(p)); //len=min(age,Nu_Ma(p)); len=min(age,Nu_Ma(p))-PosLowestGU(1,p)+1;//number of GU in the axis of PA p Pos=PosLowestGU(1,p):min(age,Nu_Ma(p)); CA_O=age-PosLowestGU(1,p)+1:-1:age-min(age,Nu_Ma(p))+1;//the CA of the organs from bottom to up select LoDSample(h,p) case 0 //detailed data if C_Tar(typ,p)==1 then //if this type of organ is to be fit select typ case 1 then //blade data=matrix(q_O(1, p,CA_O, age),1,len); case 2 then //petiole data=matrix(q_O(2, p,CA_O, age),1,len); case 3 then //internode weight, to be improved data=[]; for CA_0=age-PosLowestGU(1,p)+1:-1:age-min(age,Nu_Ma(p))+1 //for CA_0=age:-1:age-len+1 QL=0;//weight of layer in this GU for k=0:CA_0-1 QL=QL+q_L(1,CA_0-k,age-k,age-k); end tmp=q_O(3, p,CA_0,age)+QL; data=[data tmp]; end case 4 then //female data=matrix(q_O(4, p,CA_O, age),1,len); case 5 then //male data=matrix(q_O(5, p,CA_O, age),1,len); case 6 then //blade area data=matrix(B_S( p,CA_O, age),1,len); case 7 then //internode area data=matrix(I_H(p,CA_O, age),1,len); case 8 then //Internode length data=matrix(I_S(p,CA_O, age, age),1,len); end//select typ Y=[Y data]; end case 1 //compartment data if C_Tar(typ,p)==1 then //if this type of organ is to be fit select typ case 1 then //blade no=matrix(Nb_O(1,1,CA_O,age,age,p),1,length(Pos)); qo=matrix( q_O(1,1,CA_O,age),1,length(Pos)); data=sum(no.*qo); case 2 then //petiole no=matrix(Nb_O(2,1,CA_O,age,age,p),1,length(Pos)); qo=matrix( q_O(2,1,CA_O,age),1,length(Pos)); data=sum(no.*qo); case 3 then //internode weight, to be improved no=matrix(Nb_O(3,1,CA_O,age,age,p),1,length(Pos)); qo=[]; for CA_I=age:-1:age-min(Nu_Ma(p),age)+1 QL=0; for k=0:CA_I-1 QL=QL+q_L(1,CA_I-k,age-k,age-k); end qo=[qo q_O(3, 1,CA_I, age)+QL]; end data=sum(no.*qo); case 4 then //female no=matrix(Nb_O(4,1,CA_O,age,age,p),1,length(Pos)); qo=matrix( q_O(4,1,CA_O,age),1,length(Pos)); data=sum(no.*qo); case 5 then //male no=matrix(Nb_O(5,1,CA_O,age,age,p),1,length(Pos)); qo=matrix( q_O(5,1,CA_O,age),1,length(Pos)); data=sum(no.*qo); case 6 then //blade area //data=matrix(B_S( p,CA_O, age),1,len); case 7 then //internode area //data=matrix(I_H(p,CA_O, age),1,len); case 8 then //Internode length //data=matrix(I_S(p,CA_O, age, age),1,len); end//select typ Y=[Y data]; end end end //end end end endfunction
d3662981fc6510414dd290447da8c76d73cab39d
717ddeb7e700373742c617a95e25a2376565112c
/275/CH2/EX2.2.55/Ch2_2_55.sce
7016f9cddaa299675c27ef50d166efc79da65ef8
[]
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
850
sce
Ch2_2_55.sce
clc disp("Example 2.55") printf("\n") disp("Design a zener diode voltage regulator to meet following specification") printf("Given\n") printf("1 Resistance are in ohms \n 2 Current are in ampere \n 3 voltage sources are in volt\n") //unregulated dc input voltage Vimin=13 Vimax=17 //Load current ILmin-0 ILmax=10*10^-3 //regulated output voltage Vo=10 //minimum zener current Izmin=5*10^-3 //Maximum power dissipation Pzmax=500*10^-3 //maximum zener current Izmax=Pzmax/Vo //maximum Resistance Rmax=(Vimin-Vo)/(Izmin+ILmax) //minimum resistance Rmin=(Vimax-Vo)/(Izmax+ILmin) //Required resistance R=(Rmax+Rmin)/2 //load resistance RLmin=Vo/ILmax printf("minimum resistance %d ohm \n",Rmin) printf("maximum resistance %d ohm \n",Rmax) printf("required resistance %d ohm \n",R) printf("load resistance %d ohm \n",RLmin)
4e5e3236b095bc09fa64545330e1c57ceb66ddeb
449d555969bfd7befe906877abab098c6e63a0e8
/2066/CH7/EX7.1.b/7_1b.sce
23e75ddf6109f2c8461e7dd3ce3462c231873cc1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
288
sce
7_1b.sce
clc clear //Initialization of variables z1=2 //ft Q=0.1 //gal/min alpha=2 g=32.2 //ft/s^2 L=4 //ft D=1/96 //ft //calculations v2=Q/(7.48*60* %pi/4 *D^2) hl=z1-alpha*v2^2 /(2*g) Nr=64/hl *L/D *v2^2 /(2*g) mu=v2*D/Nr //results printf("Kinematic viscosity = %.2e ft^2/s",mu)
db91ca596eb8db24ccdf5bec73e82ad07b431e6b
449d555969bfd7befe906877abab098c6e63a0e8
/1373/CH3/EX3.15/Chapter3_Example15.sce
8d1bd9da3a9719addf4d217fa64c3bedc3d59604
[]
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,356
sce
Chapter3_Example15.sce
//Chapter-3, Example 3.15, Page 72 //============================================================================= clc clear //INPUT DATA Di=0.1;//I.D of the pipe in m Do=0.11;//O.D of the pipe in m L=0.005;//Thickness of the wall in m k1=50;//Thermal conductivity of steel pipe line in W/m.K k3=0.06;//Thermal conductivity of first insulating material in W/m.K k2=0.12;//Thermal conductivity of second insulating material in W/m.K T=[250,50];//Temperature at inside tube surface and outside surface of insulation in degree C r3=0.105;//Radius of r3 in m as shown in fig.3.14 on page no.71 r4=0.155;//Radius of r4 in m as shown in fig.3.14 on page no.71 //CALCULATIONS r1=(Di/2);//Radius of the pipe in m r2=(Do/2);//Radius of the pipe in m q=((2*3.14*(T(1)-T(2)))/(((log(r2/r1))/k1)+((log(r3/r2))/k2)+((log(r4/r3))/k3)));//Loss of heat per metre length of pipe in W/m //OUTPUT mprintf('Loss of heat per metre length of pipe is %3.2f W/m',q) //Comparing the result with the previous example Ex.3.14, it is seen that the loss of heat is increased by about 18.11%. Since the purpose of insulation is to reduce the loss of heat, it is always better to provide the insulating material with low thermal conductivity on the surface of the tube first //=================================END OF PROGRAM==============================
05e8a8796d2f86568af4b8315ee5803ba728c462
449d555969bfd7befe906877abab098c6e63a0e8
/1373/CH3/EX3.12/Chapter3_Example12.sce
45af2d1101b213e5eed322c9b368afa3a1a0cb15
[]
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,058
sce
Chapter3_Example12.sce
//Chapter-3, Example 3.12, Page 67 //============================================================================= clc clear //INPUT DATA L1=0.125;//Thickness of fireclay layer in m L2=0.5;//Thickness of red brick layer in m T=[1100,50];//Temperatures at inside and outside the furnaces in degree C k1=0.533;//Thermal conductivity of fireclay in W/m.K k2=0.7;//Thermal conductivity of red brick in W/m.K //CALCULATIONS R1=(L1/k1);//Resistance of fireclay per unit area in K/W R2=(L2/k2);//Resistance of red brick per unit area in K/W R=R1+R2;//Total resistance in K/W q=(T(1)-T(2))/R;//Heat transfer in W/m^2 T2= T(1)-(q*R1);//Temperature in degree C T3=T(2)+(q*R2*0.5);//Temperature at the interface between the two layers in degree C km=0.113+(0.00023*((T2+T3)/2));//Mean thermal conductivity in W/m.K x=((T2-T3)/q)*km;//Thickness of diatomite in m //OUTPUT mprintf('Amount of heat loss is %3.1f W/m^2 \n Thickness of diatomite is %3.4f m',q,x ) //=================================END OF PROGRAM==============================
9f632422ac533445c3b05e38dd3eda974bf86a4c
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.3.1/Unix-Windows/scilab-2.3/macros/scicos_blocks/GAINBLK_f.sci
23b61f9d631edaa900984f79da149a582e696b91
[ "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
1,508
sci
GAINBLK_f.sci
function [x,y,typ]=GAINBLK_f(job,arg1,arg2) x=[];y=[];typ=[]; select job case 'plot' then standard_draw(arg1,%f) case 'getinputs' then [x,y,typ]=standard_inputs(arg1) case 'getoutputs' then [x,y,typ]=standard_outputs(arg1) case 'getorigin' then [x,y]=standard_origin(arg1) case 'set' then x=arg1; graphics=arg1(2);label=graphics(4) model=arg1(3); while %t do [ok,gain,label]=getvalue('Set gain block parameters',.. ['Gain'],list('mat',[-1,-1]),label(1)) if ~ok then break,end if gain==[] then message('Gain must have at least one element') else [out,in]=size(gain) [model,graphics,ok]=check_io(model,graphics,in,out,[],[]) if ok then graphics(4)=label model(8)=gain(:); x(2)=graphics;x(3)=model break end end end x(3)(11)=[] //compatibility case 'define' then in=1;out=1;gain=1 model=list('gain',in,out,[],[],[],[],gain,[],'c',[],[%t %f],' ',list()) label=[strcat(sci2exp(gain));strcat(sci2exp(in));strcat(sci2exp(out))] gr_i=['[nin,nout]=model(2:3);'; 'if nin*nout==1 then gain=string(model(8)),else gain=''Gain'',end'; 'if orient then' ' xx=orig(1)+[0 1 0 0]*sz(1);'; ' yy=orig(2)+[0 1/2 1 0]*sz(2);'; ' x1=0' 'else' ' xx=orig(1)+[0 1 1 0]*sz(1);'; ' yy=orig(2)+[1/2 0 1 1/2]*sz(2);'; ' x1=1/4' 'end' 'xpoly(xx,yy,''lines'');'; 'xstringb(orig(1)+x1*sz(1),orig(2),gain,(1-x1)*sz(1),sz(2));'] x=standard_define([2 2],model,label,gr_i) end
633b83e70063bd7a35a32a9928582c88e3bb3cdf
7e147da98cfbca04072f9e02934170836ab04c97
/SCILAB_ASSIGNMENT/UNIT_2/Q2_ffsp.sce
8cd2f921c72f357ef889be1e2b6c0f8af691ca7f
[]
no_license
Srujan-KN/LINEAR-ALGEBRA
4256a8216edb3d7c6804a2c25fd73bfc0ed31a15
a0975ae0884bd21f0694310c1fd0d018d3dda7dd
refs/heads/master
2021-01-01T03:04:46.947038
2020-04-08T19:11:12
2020-04-08T19:11:12
239,154,101
0
1
null
null
null
null
UTF-8
Scilab
false
false
642
sce
Q2_ffsp.sce
//Write a Sci-lab Program to find Four Fundamental Subspaces for any 3*3 matrix given as user input using input() function. clear;close; clc; n=3 disp("Enter elements for matrix A") for i=1:n for j=1:n A(i,j)=input("Enter element ") end end disp('The given matrix is ') //A=[0 1 0;0 0 1;0 0 0]; disp(A,'A='); [m,n]=size(A); disp(m,'m='); disp(n,'n='); [v,pivot]=rref(A); disp(rref(A)); disp(v); r=length(pivot); disp(r,'rank=') cs=A(:,pivot); disp(cs,'Column Space = '); ns=kernel(A); disp(ns,'Null Space = '); rs=v(1:r,:)'; disp(rs,'Row Space = ') lns=kernel(A'); disp(lns,'Left Null Space = ');
0d9ae00b119b2a89773386d374a189f672f46d2e
449d555969bfd7befe906877abab098c6e63a0e8
/1514/CH9/EX9.2/9_2.sce
f7ef831827066bc4cd7d1c29d3d660d1d9f6c46f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
479
sce
9_2.sce
//chapter 9 //example 9.2 //page 255 clear all; clc ; //given Vg=-1; Vgs=Vg;//gate to source voltage in volts Idmin=1.75; Idmax=5.5;//drain current in mA from transfer chracteristics Rd=2;//drain resistance in kohm Vdd=22; // supply voltage in volts //for Idmin Vds1=Vdd-(Idmin*Rd); //for Idmax Vds2=Vdd-(Idmax*Rd);//drain to source voltage in volts printf('\nIdmin=%.2f mA\nIdmax=%.1f mA\nFor Idmin,Vds=%.1f V\nFor Idmax,Vds=%d V',Idmin,Idmax,Vds1,Vds2)
2771f77fc77c1e9ae5e5535735c58f79fb9f09c0
449d555969bfd7befe906877abab098c6e63a0e8
/1301/CH17/EX17.11/ex17_11.sce
30e7844316f76ce68bafef706859cf7c142bd7aa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
169
sce
ex17_11.sce
clc; f1=10; //in cm f2=-20; //in cm f=(f1*f2)/(f1+f2); //calculating focal length disp(f,"Focal length of the combination in cm = "); //displaying result
93d3e3f4a710efaf7d16cbd91d14190652c2e988
449d555969bfd7befe906877abab098c6e63a0e8
/1332/CH6/EX6.9/6_9.sce
30679323f33c4358d29db79e40f50a16eaf9a52a
[]
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
243
sce
6_9.sce
//Example 6.9 //Complex System of Linear Equation //Page no. 244 clc;clear;close; for i=1:7 s=0; for j=1:7 A(i,j)=j^i s=s+(-1)^(j+1)*A(i,j) end B(i,1)=s; end X=inv(A)*B disp(X,'The Solution = ')
ac9ab229a982d4c79a49e21ebfbab01da87be299
449d555969bfd7befe906877abab098c6e63a0e8
/692/CH5/EX5.12/P5_12.sce
641647c9eec7c0454cc07b97961d3a6133c6432b
[]
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
644
sce
P5_12.sce
//EXAMPLE 5.12 //Linear convolution using Circular convolution clc; clear; g = [1 2 0 1]; disp(g,'g[n] = '); h = [2 2 1 1]; disp(h,'h[n] = '); //linea convolution length = 4+4-1 = 7 //appending the two signals with zeros g = [g,zeros(1,3)] h = [h,zeros(1,3)] G = fft(g,-1); H = fft(h,-1); Y = G.*H; //element wise multiplication y = fft(Y,1);//IDFT //Plotting linear convolution n=0:6; figure(0); clf(); a = gca(); a.x_location = 'origin'; a.y_location = 'origin'; plot2d3(n,y,2); plot(n,y,'r.'); poly1 = a . children (1) . children (1) ; poly1.thickness = 2; xtitle('Linear convolution','n','y'); disp(y," linear convolution ,y = ");
a3bb43a0b2289084e27e4246bc19f90e9966103c
449d555969bfd7befe906877abab098c6e63a0e8
/788/CH2/EX2.13.a/2_13_data.sci
79848b2a8317572d32faed549a13da96442ae61f
[]
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
188
sci
2_13_data.sci
// Aim:To find kinematic and absolute viscosity of oil in cS and cP respectively // Given: // Density of oil: Den=0.89; //g/cm^3 // Time flow: t=250; //s // Calibration constant: cc=0.100;
a1123edd698d1ff0355810d643e439cf60f2c196
449d555969bfd7befe906877abab098c6e63a0e8
/2175/CH4/EX4.5/4_5.sce
003b6738c771ed6717a656514189cbd6c26e8fe0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
329
sce
4_5.sce
clc; R_=8314.5; m_=28; R=R_/m_ p1=1.05;//bar p2=4.2;//bar s2=R*log(p1)/1000; s1=R*log(p2)/1000; disp("change of entropy is:"); disp("kJ/kg K",s2-s1); T=15+273; V=0.03; m=p1*V*10^5/(R*T); S1=m*s1; S2=m*s2; Q=T*(S1-S2); disp("heat rejected is:"); disp("kJ/kg",Q); W=-Q; disp("work done is:"); disp("kJ",W)
3d114b137bdf672858270a58f59152e60dda2b1c
2c78de0b151238b1c0c26e6a4d1a36c7fa09268c
/quality/test/garant6x/change_password.TST
c29a2e456300a9b166314fac07780c4e37246e95
[]
no_license
bravesoftdz/realwork
05a3b308cef59bed8a9efda4212849c391b4b267
19b446ce8ad2adf82ab8ce7988bc003221accad2
refs/heads/master
2021-06-07T23:57:22.429896
2016-11-01T18:30:21
2016-11-01T18:30:21
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
57,406
tst
change_password.TST
{\rtf1\ansi\ansicpg1251\uc1\deff0\stshfdbch0\stshfloch0\stshfhich0\stshfbi0\deflang1049\deflangfe1049{\fonttbl{\f0\froman\fcharset204\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times New Roman};} {\f1\fswiss\fcharset204\fprq2{\*\panose 020b0604020202020204}Arial{\*\falt Times New Roman};}{\f2\fmodern\fcharset204\fprq1{\*\panose 02070309020205020404}Courier New;}{\f3\froman\fcharset2\fprq2{\*\panose 05050102010706020507}Symbol;} {\f38\froman\fcharset0\fprq2 Times New Roman{\*\falt Times New Roman};}{\f36\froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times New Roman};}{\f39\froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times New Roman};} {\f40\froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times New Roman};}{\f41\froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times New Roman};}{\f42\froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times New Roman};} {\f43\froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times New Roman};}{\f44\froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times New Roman};}{\f48\fswiss\fcharset0\fprq2 Arial{\*\falt Times New Roman};} {\f46\fswiss\fcharset238\fprq2 Arial CE{\*\falt Times New Roman};}{\f49\fswiss\fcharset161\fprq2 Arial Greek{\*\falt Times New Roman};}{\f50\fswiss\fcharset162\fprq2 Arial Tur{\*\falt Times New Roman};} {\f51\fswiss\fcharset177\fprq2 Arial (Hebrew){\*\falt Times New Roman};}{\f52\fswiss\fcharset178\fprq2 Arial (Arabic){\*\falt Times New Roman};}{\f53\fswiss\fcharset186\fprq2 Arial Baltic{\*\falt Times New Roman};} {\f54\fswiss\fcharset163\fprq2 Arial (Vietnamese){\*\falt Times New Roman};}{\f58\fmodern\fcharset0\fprq1 Courier New;}{\f56\fmodern\fcharset238\fprq1 Courier New CE;}{\f59\fmodern\fcharset161\fprq1 Courier New Greek;} {\f60\fmodern\fcharset162\fprq1 Courier New Tur;}{\f61\fmodern\fcharset177\fprq1 Courier New (Hebrew);}{\f62\fmodern\fcharset178\fprq1 Courier New (Arabic);}{\f63\fmodern\fcharset186\fprq1 Courier New Baltic;} {\f64\fmodern\fcharset163\fprq1 Courier New (Vietnamese);}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255; \red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}{\stylesheet{ \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext0 Normal;}{\s1\ql \li0\ri0\sa220\sl220\slmult0 \keep\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0 \b\f1\fs28\expnd-2\expndtw-10\lang1033\langfe1033\kerning20\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 heading 1;}{\*\cs10 \additive \ssemihidden Default Paragraph Font;}{\*\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\cgrid\langnp1024\langfenp1024 \snext11 \ssemihidden Normal Table;}{\s15\ql \fi-720\li720\ri0\sb360\keepn\nowidctlpar \jclisttab\tx720\faauto\ls1\outlinelevel0\adjustright\rin0\lin720\itap0 \b\f1\fs28\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 1;}{\s16\ql \fi-720\li720\ri0\sb240\keepn\nowidctlpar \jclisttab\tx720\faauto\ls1\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0 \b\f1\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon15 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 2;}{\s17\ql \fi-720\li720\ri0\sb120\keepn\nowidctlpar \jclisttab\tx720\faauto\ls1\ilvl2\outlinelevel2\adjustright\rin0\lin720\itap0 \b\i\f1\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon15 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 3;}{\s18\ql \fi-720\li720\ri0\sb120\keepn\nowidctlpar \jclisttab\tx1080\faauto\ls1\ilvl3\outlinelevel3\adjustright\rin0\lin720\itap0 \f1\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon15 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 4;}{ \s19\ql \fi720\li0\ri0\sb240\sa60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 5;}{ \s20\ql \fi720\li0\ri0\sb240\sa60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \i\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 6;}{ \s21\ql \fi720\li0\ri0\sb240\sa60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 7;}{ \s22\ql \fi720\li0\ri0\sb240\sa60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \i\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 8;}{ \s23\ql \fi720\li0\ri0\sb240\sa60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \b\i\fs18\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \'e7\'e0\'e3\'ee\'eb\'ee\'e2\'ee\'ea 9;}{\*\cs24 \additive \'ce\'f1\'ed\'ee\'e2\'ed\'ee\'e9 \'f8\'f0\'e8\'f4\'f2;}{\s25\qc \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \b\f1\fs32\lang1049\langfe1033\cgrid\langnp1049\langfenp1033 \sbasedon0 \snext25 \'cd\'e0\'e7\'e2\'e0\'ed\'e8\'e5 \'e1\'ee\'eb\'fc\'f8\'ee\'e5;}{\s26\ql \fi720\li425\ri0\sb60\keep\keepn\widctlpar \tx851\tx1276\tx1701\tx2127\tx2552\tx2977\tx3402\tx3828\tx4253\tx4678\tx5103\tx5529\tx5954\tx6379\tx6804\tx7230\tx7655\tx8080\tx8505\hyphpar0\faauto\adjustright\rin0\lin425\itap0 \f2\fs16\lang1049\langfe1033\cgrid\langnp1049\langfenp1033 \sbasedon0 \snext26 SourceCode;}{\s27\ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \sautoupd \'ee\'e3\'eb\'e0\'e2\'eb\'e5\'ed\'e8\'e5 1;}{ \s28\ql \fi720\li200\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin200\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \sautoupd \'ee\'e3\'eb\'e0\'e2\'eb\'e5\'ed\'e8\'e5 2;}{\s29\ql \li0\ri0\widctlpar \tqc\tx4844\tqr\tx9689\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext29 header;}{\s30\ql \li0\ri0\widctlpar \tqc\tx4844\tqr\tx9689\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext30 footer;}{\s31\ql \li283\ri0\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin283\itap0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext31 Body Text 2;}{\s32\ql \li0\ri0\sb60\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\cgrid\noproof\langnp1049\langfenp1033 \sbasedon0 \snext0 \sautoupd \ssemihidden toc 1;}{\s33\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\cgrid\noproof\langnp1049\langfenp1033 \sbasedon0 \snext0 \sautoupd \ssemihidden toc 2;}{ \s34\qc \li0\ri0\sa120\widctlpar\noline\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \b\f1\fs28\lang1049\langfe1033\cgrid\langnp1049\langfenp1033 \sbasedon0 \snext0 \'cd\'e0\'e7\'e2\'e0\'ed\'e8\'e5 \'e4\'ee\'ea\'f3\'ec\'e5\'ed\'f2\'e0;}{ \s35\qj \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs22\lang1049\langfe1033\cgrid\langnp1049\langfenp1033 \sbasedon0 \snext35 \ssemihidden annotation text;}}{\*\latentstyles\lsdstimax156\lsdlockeddef0}{\*\listtable {\list\listtemplateid-1247003914{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\fbias0 \s15\fi-720\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc0 \levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levellegal\levelspace0\levelindent0{\leveltext\'03\'00.\'01;}{\levelnumbers\'01\'03;}\fbias0 \s16\fi-720\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0 \levelfollow0\levelstartat1\levellegal\levelspace0\levelindent0{\leveltext\'05\'00.\'01.\'02;}{\levelnumbers\'01\'03\'05;}\fbias0 \s17\fi-720\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1 \levellegal\levelspace0\levelindent0{\leveltext\'07\'00.\'01.\'02.\'03;}{\levelnumbers\'01\'03\'05\'07;}\fbias0 \s18\fi-720\li720\jclisttab\tx1080\lin720 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levellegal \levelspace0\levelindent0{\leveltext\'09\'00.\'01.\'02.\'03.\'04;}{\levelnumbers\'01\'03\'05\'07\'09;}\fbias0 \fi-720\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levellegal\levelspace0 \levelindent0{\leveltext\'0b\'00.\'01.\'02.\'03.\'04.\'05;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fbias0 \fi-1080\li1080\jclisttab\tx1080\lin1080 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levellegal\levelspace0 \levelindent0{\leveltext\'0d\'00.\'01.\'02.\'03.\'04.\'05.\'06;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fbias0 \fi-1080\li1080\jclisttab\tx1080\lin1080 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levellegal \levelspace0\levelindent0{\leveltext\'0f\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fbias0 \fi-1440\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0 \levelstartat1\levellegal\levelspace0\levelindent0{\leveltext\'11\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\fbias0 \fi-1440\li1440\jclisttab\tx1440\lin1440 }{\listname ;}\listid452941481}} {\*\listoverridetable{\listoverride\listid452941481\listoverridecount0\ls1}}{\*\rsidtbl \rsid17783\rsid1200823\rsid2375656\rsid2556587\rsid3100418\rsid4936431\rsid5709342\rsid5982558\rsid6508010\rsid6556107\rsid6575770\rsid6775199\rsid7037553\rsid7629995 \rsid7889768\rsid8928953\rsid9249174\rsid9772041\rsid10098965\rsid10370690\rsid10377651\rsid10427912\rsid10512779\rsid11478095\rsid11665899\rsid11758497\rsid11931006\rsid12207260\rsid12417535\rsid12541049\rsid13257560\rsid13307472\rsid14289154 \rsid14773114\rsid14813886\rsid14821353\rsid15538126\rsid16736644}{\*\generator Microsoft Word 11.0.5604;}{\info{\title \'d3\'f2\'e8\'eb\'e8\'f2\'e0 \'e8\'e7\'ec\'e5\'ed\'e5\'ed\'e8\'ff \'ef\'e0\'f0\'ee\'eb\'e5\'e9}{\subject \'c3\'ca \'ce\'c8\'d2} {\author \'ca\'ee\'e7\'eb\'ee\'e2}{\operator Santer}{\creatim\yr2005\mo2\dy28\hr15\min29}{\revtim\yr2007\mo4\dy19\hr16\min1}{\printim\yr2001\mo8\dy2\hr19\min20}{\version23}{\edmins66}{\nofpages3}{\nofwords493}{\nofchars2812} {\*\company \'c3\'e0\'f0\'e0\'ed\'f2}{\nofcharsws3299}{\vern24689}}{\*\userprops {\propname Version}\proptype3{\staticval 1}{\propname ReqProMenus}\proptype11{\staticval 0}}\paperw11907\paperh16840\margl1440\margr1440\margt1134\margb1134 \widowctrl\ftnbj\aenddoc\noxlattoyen\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\hyphcaps0\formshade\horzdoc\dghspace120\dgvspace120\dghorigin1701\dgvorigin1984\dghshow0\dgvshow3 \jcompress\viewkind1\viewscale100\pgbrdrhead\pgbrdrfoot\nolnhtadjtbl\rsidroot12541049 \fet0{\*\ftnsep \pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { \insrsid2556587 \chftnsep \par }}{\*\ftnsepc \pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\insrsid2556587 \chftnsepc \par }}{\*\aftnsep \pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\insrsid2556587 \chftnsep \par }}{\*\aftnsepc \pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\insrsid2556587 \chftnsepc \par }}\sectd \psz9\linex0\headery709\footery709\colsx709\vertalc\endnhere\sectdefaultcl\sftnbj {\header \pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { \fs24\insrsid2556587 \par }\pard \ql \fi720\li0\ri0\sb60\nowidctlpar\brdrt\brdrs\brdrw15\brsp20 \faauto\adjustright\rin0\lin0\rtlgutter\itap0 {\fs24\insrsid2556587 \par }\pard \qr \fi720\li0\ri0\sb60\nowidctlpar\brdrb\brdrs\brdrw15\brsp20 \faauto\adjustright\rin0\lin0\itap0 {\b\f1\fs36\lang1049\langfe1033\langnp1049\insrsid2556587 \'cd\'cf\'cf \'c3\'e0\'f0\'e0\'ed\'f2-\'d1\'e5\'f0\'e2\'e8\'f1 \par \par }}{\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta ?}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta ?}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta ?}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta ?}} {\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb ?}{\pntxta ?}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb ?}{\pntxta ?}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb ?}{\pntxta ?}}{\*\pnseclvl8 \pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb ?}{\pntxta ?}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb ?}{\pntxta ?}}\pard\plain \s25\qr \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \b\f1\fs32\lang1049\langfe1033\cgrid\langnp1049\langfenp1033 {\field{\*\fldinst {\insrsid2556587 SUBJECT \\* MERGEFORMAT }}{\fldrslt {\insrsid2556587 \'c3\'ca \'ce\'c8\'d2}}}{\insrsid2556587 \par }{\field{\*\fldinst {\insrsid2556587 TITLE \\* MERGEFORMAT }}{\fldrslt {\insrsid2556587 \'c8\'ed\'f1\'f2\'e0\'eb\'eb\'ff\'f6\'e8\'ff \'c3\'c0\'d0\'c0\'cd\'d2. \'cf\'eb\'e0\'f2\'f4\'ee\'f0\'ec\'e0 F1}}}{\insrsid2556587 \par \par \'c2\'e5\'f0\'f1\'e8\'ff{\*\bkmkstart OLE_LINK10} {\*\bkmkend OLE_LINK10}}{\field{\*\fldinst {\insrsid2556587 DOCPROPERTY "Version" \\* MERGEFORMAT }}{\fldrslt {\insrsid2556587 1}}}{\fs28\insrsid2556587 \par }\pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\fs28\lang1049\langfe1033\langnp1049\insrsid2556587 \par }{\lang1049\langfe1033\langnp1049\insrsid2556587 \par \par \sect }\sectd \pgwsxn12240\pghsxn15840\psz1\linex0\headery709\footery709\colsx709\endnhere\sectdefaultcl\sftnbj {\header \trowd \irow0\irowband0\ts11\trgaph108\trleft-108\trbrdrt\brdrs\brdrw15 \trbrdrl\brdrs\brdrw15 \trbrdrb\brdrs\brdrw15 \trbrdrr \brdrs\brdrw15 \trbrdrh\brdrs\brdrw15 \trbrdrv\brdrs\brdrw15 \trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth6379\clshdrawnil \cellx6271\clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth3179\clshdrawnil \cellx9450\pard\plain \s29\ql \li0\ri0\nowidctlpar\intbl\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\field{\*\fldinst {\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 }{\fs20\insrsid2556587 SUBJECT}{ \fs20\lang1049\langfe1033\langnp1049\insrsid2556587 \\* }{\fs20\insrsid2556587 MERGEFORMAT}{\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 }}{\fldrslt {\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 \'c3\'ca}{\fs20\insrsid2556587 \'ce\'c8 \'d2}}}{\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 \cell }\pard \s29\ql \fi720\li0\ri0\nowidctlpar\intbl\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0 {\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 \'c2\'e5\'f0\'f1\'e8\'ff: } {\field{\*\fldinst {\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 }{\fs20\insrsid2556587 DOCPROPERTY}{\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 "}{\fs20\insrsid2556587 Version}{\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 " \\* }{ \fs20\insrsid2556587 MERGEFORMAT}{\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 }}{\fldrslt {\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 1}}}{\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 \cell }\pard\plain \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\fs24\lang1049\langfe1033\langnp1049\insrsid2556587 \trowd \irow0\irowband0\ts11\trgaph108\trleft-108\trbrdrt\brdrs\brdrw15 \trbrdrl\brdrs\brdrw15 \trbrdrb\brdrs\brdrw15 \trbrdrr\brdrs\brdrw15 \trbrdrh\brdrs\brdrw15 \trbrdrv\brdrs\brdrw15 \trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth6379\clshdrawnil \cellx6271\clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth3179\clshdrawnil \cellx9450\row }\pard\plain \s29\ql \li0\ri0\nowidctlpar\intbl\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\field{\*\fldinst {\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 }{\fs20\insrsid2556587 TITLE}{\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 \\* }{\fs20\insrsid2556587 MERGEFORMAT}{\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 }}{\fldrslt {\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 \'c8\'ed\'f1\'f2\'e0\'eb\'eb\'ff\'f6 \'e8\'ff}{\fs20\insrsid2556587 \'c3\'c0\'d0\'c0\'cd\'d2. \'cf\'eb\'e0\'f2\'f4\'ee\'f0\'ec\'e0 F1}}}{\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 \cell }\pard \s29\ql \fi720\li0\ri0\nowidctlpar\intbl \tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0 {\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 \'c4\'e0\'f2\'e0: }{\field{\*\fldinst {\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 SAVEDATE \\* MERGEFORMAT }}{\fldrslt { \fs20\lang1024\langfe1024\noproof\insrsid6556107\charrsid6556107 02.11.2006 14:21:00}}}{\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 \cell }\pard\plain \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\fs24\lang1049\langfe1033\langnp1049\insrsid2556587 \trowd \irow1\irowband1\ts11\trgaph108\trleft-108\trbrdrt\brdrs\brdrw15 \trbrdrl\brdrs\brdrw15 \trbrdrb\brdrs\brdrw15 \trbrdrr\brdrs\brdrw15 \trbrdrh\brdrs\brdrw15 \trbrdrv\brdrs\brdrw15 \trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth6379\clshdrawnil \cellx6271\clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth3179\clshdrawnil \cellx9450\row }\trowd \irow2\irowband2\lastrow \ts11\trgaph108\trleft-108\trbrdrt \brdrs\brdrw15 \trbrdrl\brdrs\brdrw15 \trbrdrb\brdrs\brdrw15 \trbrdrr\brdrs\brdrw15 \trbrdrh\brdrs\brdrw15 \trbrdrv\brdrs\brdrw15 \trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb \brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth9558\clshdrawnil \cellx9450\pard\plain \s29\ql \li0\ri0\nowidctlpar\intbl\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { \fs20\lang1049\langfe1033\langnp1049\insrsid2556587 \'c8\'ec\'ff \'f4\'e0\'e9\'eb\'e0: }{\field{\*\fldinst {\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 }{\fs20\insrsid2556587 FILENAME}{\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 \\* }{ \fs20\insrsid2556587 MERGEFORMAT}{\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 }}{\fldrslt {\fs20\lang1024\langfe1024\noproof\insrsid2556587 installation.TST}}}{\fs20\lang1049\langfe1033\langnp1049\insrsid2556587 \cell }\pard\plain \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\fs24\lang1049\langfe1033\langnp1049\insrsid2556587 \trowd \irow2\irowband2\lastrow \ts11\trgaph108\trleft-108\trbrdrt \brdrs\brdrw15 \trbrdrl\brdrs\brdrw15 \trbrdrb\brdrs\brdrw15 \trbrdrr\brdrs\brdrw15 \trbrdrh\brdrs\brdrw15 \trbrdrv\brdrs\brdrw15 \trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb \brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth9558\clshdrawnil \cellx9450\row }\pard\plain \s29\ql \fi720\li0\ri0\nowidctlpar\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0\itap0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\fs4\lang1049\langfe1033\langnp1049\insrsid2556587 \par }}{\footer \trowd \irow0\irowband0\lastrow \ts11\trgaph108\trleft-108\trbrdrt\brdrs\brdrw15 \trbrdrl\brdrs\brdrw15 \trbrdrb\brdrs\brdrw15 \trbrdrr\brdrs\brdrw15 \trbrdrh\brdrs\brdrw15 \trbrdrv\brdrs\brdrw15 \trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth3162\clshdrawnil \cellx3054\clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl \brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth3162\clshdrawnil \cellx6216\clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth3162\clshdrawnil \cellx9378\pard\plain \ql \li0\ri360\nowidctlpar\intbl\faauto\adjustright\rin360\lin0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\lang1049\langfe1033\langnp1049\insrsid2556587 \'ca\'ee\'ed\'f4 \'e8\'e4\'e5\'ed\'f6\'e8\'e0\'eb\'fc\'ed\'ee\cell }\pard \qc \li0\ri0\nowidctlpar\intbl\faauto\adjustright\rin0\lin0 {\insrsid2556587 {\field{\*\fldinst SYMBOL 211 \\f "Symbol" \\s 10}{\fldrslt\f3\fs20}}}{\lang1049\langfe1033\langnp1049\insrsid2556587 \'cd\'cf\'cf \'c3\'e0\'f0\'e0\'ed\'f2-\'d1\'e5\'f0\'e2\'e8\'f1, 2001\cell }\pard \qr \li0\ri0\nowidctlpar\intbl\faauto\adjustright\rin0\lin0 {\lang1049\langfe1033\langnp1049\insrsid2556587 \'d1\'f2\'f0\'e0\'ed\'e8\'f6\'e0}{\insrsid2556587 } {\field{\*\fldinst {\insrsid2556587 PAGE }}{\fldrslt {\lang1024\langfe1024\noproof\insrsid6556107 3}}}{\insrsid2556587 of }{\field{\*\fldinst {\insrsid2556587 NUMPAGES \\* MERGEFORMAT }}{\fldrslt {\lang1024\langfe1024\noproof\insrsid6556107 3}}}{ \insrsid2556587 \cell }\pard \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\fs24\insrsid2556587 \trowd \irow0\irowband0\lastrow \ts11\trgaph108\trleft-108\trbrdrt\brdrs\brdrw15 \trbrdrl\brdrs\brdrw15 \trbrdrb\brdrs\brdrw15 \trbrdrr\brdrs\brdrw15 \trbrdrh\brdrs\brdrw15 \trbrdrv\brdrs\brdrw15 \trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth3162\clshdrawnil \cellx3054\clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth3162\clshdrawnil \cellx6216\clvertalt\clbrdrt\brdrs\brdrw15 \clbrdrl\brdrs\brdrw15 \clbrdrb\brdrs\brdrw15 \clbrdrr\brdrs\brdrw15 \cltxlrtb\clftsWidth3\clwWidth3162\clshdrawnil \cellx9378\row }\pard \ql \fi720\li0\ri0\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 {\fs4\insrsid2556587 \par }}{\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}} {\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8 \pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \s25\qc \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \b\f1\fs32\lang1049\langfe1033\cgrid\langnp1049\langfenp1033 {\insrsid2556587 \'ce\'e3\'eb\'e0\'e2\'eb\'e5\'ed\'e8\'e5 \par }\pard\plain \s32\ql \li0\ri0\sb60\widctlpar\tx480\tqr\tldot\tx9350\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\cgrid\noproof\langnp1049\langfenp1033 {\field\fldedit{\*\fldinst {\insrsid2556587 TOC \\o "1-3" }}{\fldrslt { \insrsid2556587 1.}{\fs24\insrsid2556587\charrsid2556587 \tab }{\insrsid2556587 \'c2\'e2\'e5\'e4\'e5\'ed\'e8\'e5\tab }{\field{\*\fldinst {\insrsid2556587 PAGEREF _Toc86485238 \\h }{\insrsid10377651 {\*\datafield 08d0c9ea79f9bace118c8200aa004ba90b02000000080000000d0000005f0054006f00630038003600340038003500320033003800000000000000000000000000000000}}}{\fldrslt {\insrsid2556587 3}}}{\fs24\insrsid2556587\charrsid2556587 \par }\pard\plain \s33\ql \li0\ri0\widctlpar\tx720\tqr\tldot\tx9350\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\cgrid\noproof\langnp1049\langfenp1033 {\insrsid2556587 1.1}{\fs24\insrsid2556587\charrsid2556587 \tab }{ \insrsid2556587 \'d6\'e5\'eb\'fc\tab }{\field{\*\fldinst {\insrsid2556587 PAGEREF _Toc86485239 \\h }{\insrsid10377651 {\*\datafield 08d0c9ea79f9bace118c8200aa004ba90b02000000080000000d0000005f0054006f00630038003600340038003500320033003900000000000000000000000000000000}}}{\fldrslt {\insrsid2556587 3}}}{\fs24\insrsid2556587\charrsid2556587 \par }{\insrsid2556587 1.2}{\fs24\insrsid2556587\charrsid2556587 \tab }{\insrsid2556587 \'d0\'e0\'ec\'ea\'e8 \'e4\'ee\'ea\'f3\'ec\'e5\'ed\'f2\'e0\tab }{\field{\*\fldinst {\insrsid2556587 PAGEREF _Toc86485240 \\h }{\insrsid10377651 {\*\datafield 08d0c9ea79f9bace118c8200aa004ba90b02000000080000000d0000005f0054006f00630038003600340038003500320034003000000000000000000000000000000000}}}{\fldrslt {\insrsid2556587 3}}}{\fs24\insrsid2556587\charrsid2556587 \par }{\insrsid2556587 1.3}{\fs24\insrsid2556587\charrsid2556587 \tab }{\insrsid2556587 \'ce\'f2\'e2\'e5\'f2\'f1\'f2\'e2\'e5\'ed\'ed\'ee\'f1\'f2\'fc\tab }{\field{\*\fldinst {\insrsid2556587 PAGEREF _Toc86485241 \\h }{\insrsid10377651 {\*\datafield 08d0c9ea79f9bace118c8200aa004ba90b02000000080000000d0000005f0054006f006300380036003400380035003200340031000000000000000000b4000000000000}}}{\fldrslt {\insrsid2556587 3}}}{\fs24\insrsid2556587\charrsid2556587 \par }{\insrsid2556587 1.4}{\fs24\insrsid2556587\charrsid2556587 \tab }{\insrsid2556587 \'ce\'ef\'f0\'e5\'e4\'e5\'eb\'e5\'ed\'e8\'ff, \'f1\'ee\'ea\'f0\'e0\'f9\'e5\'ed\'e8\'ff \'e8 \'e0\'e1\'e1\'f0\'e5\'e2\'e8\'e0\'f2\'f3\'f0\'fb\tab }{\field{\*\fldinst { \insrsid2556587 PAGEREF _Toc86485242 \\h }{\insrsid10377651 {\*\datafield 08d0c9ea79f9bace118c8200aa004ba90b02000000080000000d0000005f0054006f006300380036003400380035003200340032000000000000000000b4000000000000}}}{\fldrslt {\insrsid2556587 3}}}{ \fs24\insrsid2556587\charrsid2556587 \par }{\insrsid2556587 1.5}{\fs24\insrsid2556587\charrsid2556587 \tab }{\insrsid2556587 \'d1\'f1\'fb\'eb\'ea\'e8\tab }{\field{\*\fldinst {\insrsid2556587 PAGEREF _Toc86485243 \\h }{\insrsid10377651 {\*\datafield 08d0c9ea79f9bace118c8200aa004ba90b02000000080000000d0000005f0054006f006300380036003400380035003200340033000000000000000000b4000000000000}}}{\fldrslt {\insrsid2556587 3}}}{\fs24\insrsid2556587\charrsid2556587 \par }\pard\plain \s32\ql \li0\ri0\sb60\widctlpar\tx480\tqr\tldot\tx9350\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\cgrid\noproof\langnp1049\langfenp1033 {\insrsid2556587 2.}{\fs24\insrsid2556587\charrsid2556587 \tab }{ \insrsid2556587 \'d1\'ee\'e4\'e5\'f0\'e6\'e0\'f2\'e5\'eb\'fc\'ed\'e0\'ff \'f7\'e0\'f1\'f2\'fc\tab }{\field{\*\fldinst {\insrsid2556587 PAGEREF _Toc86485244 \\h }{\insrsid10377651 {\*\datafield 08d0c9ea79f9bace118c8200aa004ba90b02000000080000000d0000005f0054006f00630038003600340038003500320034003400000000000000000000000000000000}}}{\fldrslt {\insrsid2556587 3}}}{\fs24\insrsid2556587\charrsid2556587 \par }\pard\plain \s25\qc \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \b\f1\fs32\lang1049\langfe1033\cgrid\langnp1049\langfenp1033 }}\pard\plain \s25\qc \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \b\f1\fs32\lang1049\langfe1033\cgrid\langnp1049\langfenp1033 {\insrsid2556587 \page }{\field{\*\fldinst {\insrsid2556587 TITLE \\* MERGEFORMAT }}{\fldrslt {\insrsid2556587 \'d3\'f2\'e8\'eb\'e8\'f2\'e0 \'e8\'e7\'ec\'e5\'ed\'e5\'ed\'e8\'ff \'ef\'e0\'f0 \'ee\'eb\'e5\'e9}}}{\insrsid2556587 \par {\*\bkmkstart _Toc502639461}{\*\bkmkstart _Toc86485238}{\listtext\pard\plain\s15 \b\f1\fs28\lang1049\langfe1033\langfenp1033\insrsid2556587 \hich\af1\dbch\af0\loch\f1 1.\tab}}\pard\plain \s15\ql \fi-720\li720\ri0\sb360\keepn\nowidctlpar \jclisttab\tx720\faauto\ls1\outlinelevel0\adjustright\rin0\lin720\itap0 \b\f1\fs28\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\lang1049\langfe1033\langnp1049\insrsid2556587 \'c2\'e2\'e5\'e4\'e5\'ed\'e8\'e5{\*\bkmkstart _Toc502639462} {\*\bkmkend _Toc502639461}{\*\bkmkend _Toc86485238} \par {\*\bkmkstart _Toc86485239}{\listtext\pard\plain\s16 \b\f1\lang1049\langfe1033\langfenp1033\insrsid2556587 \hich\af1\dbch\af0\loch\f1 1.1\tab}}\pard\plain \s16\ql \fi-720\li720\ri0\sb240\keepn\nowidctlpar \jclisttab\tx720\faauto\ls1\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0 \b\f1\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\lang1049\langfe1033\langnp1049\insrsid2556587 \'d6\'e5\'eb\'fc}{\insrsid2556587 {\*\bkmkend _Toc502639462} {\*\bkmkend _Toc86485239} \par }\pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\lang1049\langfe1033\langnp1049\insrsid2556587 \'ce\'ef\'e8\'f1\'e0\'ed\'e8\'e5 \'f2\'e5\'f1\'f2\'ee\'e2 \'e4\'eb \'ff \'e8\'ed\'f1\'f2\'e0\'eb\'eb\'ff\'f2\'ee\'f0\'ee\'e2 \par {\*\bkmkstart _Toc86485241}{\listtext\pard\plain\s16 \b\f1\lang1049\langfe1033\langfenp1033\insrsid2556587 \hich\af1\dbch\af0\loch\f1 1.2\tab}}\pard\plain \s16\ql \fi-720\li720\ri0\sb240\keepn\nowidctlpar \jclisttab\tx720\faauto\ls1\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0 \b\f1\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\lang1049\langfe1033\langnp1049\insrsid2556587 \'ce\'f2\'e2\'e5\'f2\'f1\'f2\'e2\'e5\'ed\'ed\'ee\'f1\'f2\'fc {\*\bkmkend _Toc86485241} \par }\pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\lang1049\langfe1033\langnp1049\insrsid2556587 \'c4\'ee\'ea\'f3\'ec\'e5\'ed\'f2 \'ee\'e1\'ff\'e7\'e0\'f2\'e5\'eb \'e5\'ed \'ea \'ef\'f0\'e8\'ec\'e5\'ed\'e5\'ed\'e8\'fe \'f1\'ee\'f2\'f0\'f3\'e4\'ed\'e8\'ea\'e0\'ec\'e8 \'c3\'ca \'ce\'c8\'d2 \'e2 \'ef\'f0\'ee\'e5\'ea\'f2\'e5 \'c3\'e0\'f0\'e0\'ed\'f2 6. \par {\*\bkmkstart REQD11SCO}{\listtext\pard\plain\s15 \b\v\f1\fs28\cf11\lang1033\langfe1033\langnp1033\langfenp1033\insrsid10370690\charrsid10370690 \hich\af1\dbch\af0\loch\f1 2.\tab}}\pard\plain \s15\ql \fi-720\li720\ri0\sb360\keepn\nowidctlpar \jclisttab\tx720\faauto\ls1\outlinelevel0\adjustright\rin0\lin720\itap0\pararsid2556587 \b\f1\fs28\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\v\uldb\cf11\insrsid10370690\charrsid10370690 HLTC212 }{\uldb\cf11\insrsid2556587\charrsid10370690 \'d3 \'f2\'e8\'eb\'e8\'f2\'e0 \'e8\'e7\'ec\'e5\'ed\'e5\'ed\'e8\'ff \'ef\'e0\'f0\'ee\'eb\'e5\'e9}{\insrsid10370690\charrsid10370690 \~}{\insrsid2556587 {\*\bkmkend REQD11SCO}.}{\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid2556587 }{ \lang1049\langfe1033\langnp1049\insrsid2556587 \par }\pard\plain \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0\pararsid2556587 \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid11478095\charrsid11478095 {\*\bkmkstart REQD14TVE}HLTC212.1 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid11478095\charrsid11478095 \'c7\'e0\'f0\'e5\'e3\'e8\'f1\'f2\'f0\'e8\'f0\'ee\'e2\'e0\'f2\'fc\'f1\'ff \'e2 \'f1\'e8\'f1\'f2\'e5\'ec\'e5 \'ef\'ee\'e4 \'ef\'ee\'eb\'fc\'e7\'ee \'e2\'e0\'f2\'e5\'eb\'e5\'ec}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid11478095 }{\uldb\cf11\insrsid2556587\charrsid11478095 test}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid11478095 1 \'e8 \'ef\'e0\'f0\'ee \'eb\'e5\'ec }{\uldb\cf11\insrsid2556587\charrsid11478095 test}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid11478095\charrsid11478095 1.}{\lang1049\langfe1033\langnp1049\insrsid11478095\charrsid11478095 \~}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid11478095\charrsid11478095 {\*\bkmkend REQD14TVE} \par }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid11478095\charrsid11478095 {\*\bkmkstart REQD14U7E}HLTC212.2 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid11478095 \'cd\'e5 \'e2\'fb\'f5\'ee\'e4\'ff \'e8\'e7 \'ee\'e1\'ee\'eb\'ee \'f7\'ea\'e8, \'e7\'e0\'ef\'f3\'f1\'f2\'e8\'f2\'fc \'f3\'f2\'e8\'eb\'e8\'f2\'f3 }{\uldb\cf11\insrsid2556587\charrsid11478095 passwd}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid11478095 .}{\uldb\cf11\insrsid2556587\charrsid11478095 bat}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid11478095 \'e8\'e7 \'ef\'e0\'ef\'ea\'e8 }{\uldb\cf11\insrsid2556587\charrsid11478095 tools}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid11478095 .}{ \uldb\lang1049\langfe1033\langnp1049\insrsid11478095\charrsid11478095 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid11478095 {\*\bkmkend REQD14U7E} \par }\pard \ql \fi720\li708\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin708\itap0\pararsid4936431 {\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14813886\charrsid14813886 {\*\bkmkstart REQD15N6E}HLTC212.2.1 }{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 \'cf\'f0\'ee\'e2\'e5\'f0\'e8\'f2\'fc, \'f7\'f2\'ee \'ef\'f0\'e8 \'e7\'e0\'ef\'f3\'f1\'ea\'e5 \'f3\'f2\'e8\'eb\'e8\'f2\'fb \'ef\'ee\'ff\'e2\'eb\'ff\'e5\'f2\'f1\'ff \'f1\'f2\'f0\'ee \'f7\'ea\'e0 \'ab}{\uldb\cf11\insrsid2556587\charrsid14813886 Enter}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 }{\uldb\cf11\insrsid2556587\charrsid14813886 user}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 }{\uldb\cf11\insrsid2556587\charrsid14813886 login}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 \'bb \'e8 \'ed\'e5\'f2 \'e4\'f0\'f3\'e3\'e8\'f5 \'f1 \'f2\'f0\'ee\'ea \'f2\'e8\'ef\'e0 \'ab-}{\uldb\cf11\insrsid2556587\charrsid14813886 LM}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 _}{\uldb\cf11\insrsid2556587\charrsid14813886 DEBUG}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 \'bb.}{\lang1049\langfe1033\langnp1049\insrsid14813886\charrsid14813886 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 {\*\bkmkend REQD15N6E} \par }\pard \ql \fi720\li708\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin708\itap0\pararsid14813886 {\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14813886\charrsid14813886 {\*\bkmkstart REQD15NNE}HLTC212.2.2 }{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 \'c2\'e2\'e5\'f1\'f2\'e8 \'eb\'ee\'e3\'e8\'ed }{\uldb\cf11\insrsid2556587\charrsid14813886 test}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 1 \'e8 \'ed\'e0\'e6\'e0\'f2\'fc }{\uldb\cf11\insrsid2556587\charrsid14813886 Enter}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 .}{\lang1049\langfe1033\langnp1049\insrsid14813886\charrsid14813886 \~}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 {\*\bkmkend REQD15NNE} \par }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14813886\charrsid14813886 {\*\bkmkstart REQD15WCE}HLTC212.2.3 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 \'c2\'e2\'e5\'f1\'f2\'e8 \'ed\'ee\'e2\'fb\'e9 \'ef\'e0\'f0\'ee \'eb\'fc }{\uldb\cf11\insrsid2556587\charrsid14813886 test}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 \'e8 \'ed\'e0\'e6\'e0\'f2\'fc }{\uldb\cf11\insrsid2556587\charrsid14813886 Enter}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 .}{\lang1049\langfe1033\langnp1049\insrsid14813886\charrsid14813886 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 {\*\bkmkend REQD15WCE} \par }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14813886\charrsid14813886 {\*\bkmkstart REQD15WME}HLTC212.2.4 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 \'cf\'f0\'ee\'e2\'e5\'f0\'e8\'f2\'fc, \'f7\'f2\'ee \'ef\'ee\'f1 \'eb\'e5 \'e2\'e2\'ee\'e4\'e0 \'ed\'ee\'e2\'ee\'e3\'ee \'ef\'e0\'f0\'ee\'eb\'ff \'ef\'ee\'ff\'e2\'eb\'ff\'e5\'f2\'f1\'ff \'f1\'f2\'f0\'ee\'f7\'ea\'e0 \'ab}{\uldb\cf11\insrsid2556587\charrsid14813886 press}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 }{\uldb\cf11\insrsid2556587\charrsid14813886 Enter}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 }{\uldb\cf11\insrsid2556587\charrsid14813886 to}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 }{\uldb\cf11\insrsid2556587\charrsid14813886 exit}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 \'bb \'e8 \'ed\'e5\'f2 \'e4\'f0\'f3\'e3\'e8\'f5 \'f1 \'f2\'f0\'ee\'ea \'f2\'e8\'ef\'e0 \'ab-}{\uldb\cf11\insrsid2556587\charrsid14813886 LM}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 _}{\uldb\cf11\insrsid2556587\charrsid14813886 DEBUG}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 \'bb.}{\lang1049\langfe1033\langnp1049\insrsid14813886\charrsid14813886 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 {\*\bkmkend REQD15WME} \par }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14813886\charrsid14813886 {\*\bkmkstart REQD15XJE}HLTC212.2.5 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 \'cd\'e0\'e6\'e0\'f2\'fc }{ \uldb\cf11\insrsid2556587\charrsid14813886 Enter}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 \'e8 \'f3\'e1\'e5\'e4\'e8\'f2\'fc\'f1\'ff \'e2 \'ea\'ee\'f0\'f0\'e5\'ea\'f2\'ed\'ee\'ec \'e7\'e0\'e2\'e5\'f0\'f8\'e5\'ed\'e8\'e8 \'ef\'f0\'ee\'e3\'e0\'ec\'ec\'fb.}{\lang1049\langfe1033\langnp1049\insrsid14813886\charrsid14813886 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 {\*\bkmkend REQD15XJE} \par }\pard \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0\pararsid2556587 {\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14813886\charrsid14813886 {\*\bkmkstart REQD15XTE}HLTC212.3 }{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 \'c7\'e0\'ea\'f0\'fb\'f2\'fc \'ee\'e1\'ee\'eb\'ee\'f7\'ea\'f3, \'e7\'e0\'ef\'f3\'f1\'f2\'e8\'f2\'fc \'e5\'e5 \'e5\'f9\'e5 \'f0\'e0\'e7 \'e8 \'ef\'f0\'ee\'e2\'e5\'f0\'e8\'f2\'fc \'ef \'f0\'e0\'e2\'e8\'eb\'fc\'ed\'ee\'f1\'f2\'fc \'f1\'ec\'e5\'ed\'fb \'ef\'e0\'f0\'ee\'eb\'ff}{\lang1049\langfe1033\langnp1049\insrsid14813886\charrsid14813886 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14813886 {\*\bkmkend REQD15XTE} \par }{\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid2556587 \tab }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid7037553\charrsid7037553 {\*\bkmkstart REQD15Z8E}HLTC212.3.1 }{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid7037553 \'c2\'e2\'e5\'f1\'f2\'e8 \'eb\'ee\'e3\'e8\'ed }{\uldb\cf11\insrsid2556587\charrsid7037553 test}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid7037553 1 \'e8 \'f1 \'f2\'e0\'f0\'fb\'e9 \'ef\'e0\'f0\'ee\'eb\'fc }{\uldb\cf11\insrsid2556587\charrsid7037553 test}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid7037553 1 (\'e4\'ee\'eb\'e6\'ed\'ee \'ed\'e5 \'ef\'f3\'f1\'f2\'e8\'f2\'fc \'e2 \'f1\'e8\'f1 \'f2\'e5\'ec\'f3)}{\uldb\lang1049\langfe1033\langnp1049\insrsid7037553\charrsid7037553 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid7037553 {\*\bkmkend REQD15Z8E} \par }{\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid2556587 \tab }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid7037553\charrsid7037553 {\*\bkmkstart REQD160XE}HLTC212.3.2 }{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid7037553 \'c2\'e2\'e5\'f1\'f2\'e8 \'eb\'ee\'e3\'e8\'ed }{\uldb\cf11\insrsid2556587\charrsid7037553 test}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid7037553 1 \'e8 \'ed \'ee\'e2\'fb\'e9 \'ef\'e0\'f0\'ee\'eb\'fc }{\uldb\cf11\insrsid2556587\charrsid7037553 test}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid7037553 (\'e4\'ee\'eb\'e6\'ed\'ee \'e7\'e0\'e9\'f2\'e8).}{ \uldb\lang1049\langfe1033\langnp1049\insrsid7037553\charrsid7037553 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid7037553 {\*\bkmkend REQD160XE} \par }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid7037553\charrsid7037553 {\*\bkmkstart REQD161FE}HLTC212.4 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid7037553 \'cf\'f0\'ee\'e2\'e5\'f0\'e8\'f2\'fc \'e2\'e2\'ee\'e4 \'ed\'e5\'e4 \'ee\'ef\'f3\'f1\'f2\'e8\'ec\'fb\'f5 \'f1\'e8\'ec\'e2\'ee\'eb\'ee\'e2 \'e2 \'eb\'ee\'e3\'e8\'ed\'e5:}{\lang1049\langfe1033\langnp1049\insrsid7037553\charrsid7037553 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid7037553 {\*\bkmkend REQD161FE} \par }\pard \ql \fi720\li708\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin708\itap0\pararsid2556587 {\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid11758497\charrsid11758497 {\*\bkmkstart REQD1626E}HLTC212.4.1}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid10427912\charrsid10427912 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid10427912\charrsid12417535 \'c2 \'f1\'f2\'f0\'ee\'ea\'e5 \'ab}{\uldb\cf11\insrsid10427912\charrsid12417535 Enter}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid10427912\charrsid12417535 }{\uldb\cf11\insrsid10427912\charrsid12417535 user}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid10427912\charrsid12417535 }{\uldb\cf11\insrsid10427912\charrsid12417535 login }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid10427912\charrsid12417535 \'bb \'ed\'e0\'e1\'f0\'e0\'f2\'fc \'ee\'e4\'e8\'ed \'e8\'eb\'e8 \'ed\'e5\'f1\'ea\'ee\'eb\'fc\'ea\'ee \'f1\'e8\'ec\'e2\'ee\'eb\'ee\'e2 (\'bb\'b9;%:?*()-=+\\) \'e8 \'ed\'e0\'e6\'e0 \'f2\'fc }{\uldb\cf11\insrsid10427912\charrsid12417535 Enter}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid10427912\charrsid12417535 (\'e4\'ee\'eb\'e6\'ed\'ee \'e2\'fb\'e2\'e5\'f1\'f2\'e8 \'f1\'ee\'ee\'e1\'f9\'e5\'ed\'e8\'e5 \'ab}{ \uldb\cf11\insrsid10427912\charrsid12417535 User}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid10427912\charrsid12417535 }{\uldb\cf11\insrsid10427912\charrsid12417535 not}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid10427912\charrsid12417535 }{ \uldb\cf11\insrsid10427912\charrsid12417535 found}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid10427912\charrsid12417535 \'bb).}{\lang1049\langfe1033\langnp1049\insrsid12417535\charrsid12417535 \~}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid12417535 {\*\bkmkend REQD1626E} \par }\pard \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0\pararsid2556587 {\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid11758497\charrsid11758497 {\*\bkmkstart REQD163CE}HLTC212.5 }{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid12417535 \'cf\'f0\'ee\'e2\'e5\'f0\'e8\'f2\'fc \'e2\'e2\'ee\'e4 \'ed\'e5\'e4\'ee\'ef\'f3\'f1\'f2\'e8\'ec\'fb\'f5 \'f1\'e8\'ec\'e2\'ee\'eb\'ee\'e2 \'e2 \'ef\'e0\'f0\'ee\'eb\'e5:}{ \lang1049\langfe1033\langnp1049\insrsid12417535\charrsid12417535 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid12417535 {\*\bkmkend REQD163CE} \par }{\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid2556587 \tab }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid6575770\charrsid6575770 {\*\bkmkstart REQD1647E}HLTC212.5.1 }{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6575770 \'c2\'e2\'e5\'f1\'f2\'e8 \'eb\'ee\'e3\'e8\'ed }{\uldb\cf11\insrsid2556587\charrsid6575770 test}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6575770 1 \'e8 \'ed \'ee\'e2\'fb\'e9 \'ef\'e0\'f0\'ee\'eb\'fc, \'f1\'ee\'e4\'e5\'f0\'e6\'e0\'f9\'e8\'e9 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2375656 \'ef\'f0\'ee\'e1\'e5\'eb\'fb,}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6575770 \'e8 \'ed\'e0\'e6\'e0\'f2\'fc }{\uldb\cf11\insrsid2556587\charrsid6575770 Enter}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6575770 (\'e4\'ee\'eb\'e6\'ed\'ee \'e2\'fb\'e2\'e5\'f1\'f2\'e8 \'f1\'ee\'ee\'e1\'f9\'e5\'ed\'e8\'e5 \'ab}{ \uldb\cf11\insrsid2556587\charrsid6575770 Duplicate}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6575770 }{\uldb\cf11\insrsid2556587\charrsid6575770 pair}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6575770 }{ \uldb\cf11\insrsid2556587\charrsid6575770 login}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6575770 +}{\uldb\cf11\insrsid2556587\charrsid6575770 pass}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6575770 }{ \uldb\cf11\insrsid2556587\charrsid6575770 or}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6575770 }{\uldb\cf11\insrsid2556587\charrsid6575770 pass}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6575770 }{ \uldb\cf11\insrsid2556587\charrsid6575770 not}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6575770 }{\uldb\cf11\insrsid2556587\charrsid6575770 changed}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6575770 \'ab}{ \uldb\cf11\insrsid2556587\charrsid6575770 test}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6575770 1\'bb)}{\uldb\lang1049\langfe1033\langnp1049\insrsid6575770\charrsid6575770 \~}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6575770 {\*\bkmkend REQD1647E} \par }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid6575770\charrsid6575770 {\*\bkmkstart REQD165OE}HLTC212.6 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6575770 \'cf\'f0\'ee\'e2\'e5\'f0\'e8\'f2\'fc \'e2\'e2\'ee\'e4 \'ef\'f3\'f1 \'f2\'ee\'e3\'ee \'ef\'e0\'f0\'ee\'eb\'ff:}{\lang1049\langfe1033\langnp1049\insrsid6575770\charrsid6575770 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6575770 {\*\bkmkend REQD165OE} \par }\pard \ql \fi720\li720\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin720\itap0\pararsid12207260 {\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid12207260\charrsid12207260 {\*\bkmkstart REQD166SE}HLTC212.6.1 }{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid12207260 \'c2\'e2\'e5\'f1\'f2\'e8 \'eb\'ee\'e3\'e8\'ed }{\uldb\cf11\insrsid2556587\charrsid12207260 test}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid12207260 1 \'e8 \'ed\'e0\'e6\'e0\'f2\'fc }{\uldb\cf11\insrsid2556587\charrsid12207260 Enter}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid12207260 .}{\insrsid12207260\charrsid12207260 \~}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid12207260 {\*\bkmkend REQD166SE} \par }{\v\uldb\cf11\insrsid12207260\charrsid12207260 {\*\bkmkstart REQD1675E}HLTC212.6.2 }{\uldb\cf11\insrsid2556587\charrsid12207260 \'c2 \'f1\'f2\'f0\'ee\'ea\'e5 \'abEnter new pass for \'abtest1\'bb \'ed\'e0\'e6\'e0\'f2\'fc Enter.}{ \insrsid12207260\charrsid12207260 \~}{\uldb\cf11\insrsid2556587\charrsid12207260 {\*\bkmkend REQD1675E} \par }\pard \ql \li720\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin720\itap0\pararsid12207260 {\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid12207260\charrsid12207260 {\*\bkmkstart REQD167ME}HLTC212.7 }{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid12207260 \'c7\'e0\'ea\'f0\'fb\'f2\'fc \'ee\'e1\'ee\'eb\'ee\'f7\'ea\'f3, \'e7\'e0\'ef\'f3\'f1\'f2\'e8\'f2\'fc \'e5\'e5 \'e5\'f9\'e5 \'f0\'e0\'e7 \'e8 \'ef\'f0\'ee\'e2\'e5\'f0\'e8\'f2\'fc \'ef \'f0\'e0\'e2\'e8\'eb\'fc\'ed\'ee\'f1\'f2\'fc \'f1\'ec\'e5\'ed\'fb \'ef\'e0\'f0\'ee\'eb\'ff}{\lang1049\langfe1033\langnp1049\insrsid12207260\charrsid12207260 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid12207260 {\*\bkmkend REQD167ME} \par }\pard \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0\pararsid2556587 {\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid2556587 \tab }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid10512779\charrsid10512779 {\*\bkmkstart REQD168HE}HLTC212.7.1 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid10512779 \'c2\'e2\'e5\'f1\'f2\'e8 \'eb\'ee\'e3\'e8\'ed }{\uldb\cf11\insrsid2556587\charrsid10512779 test}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid10512779 1 \'e8 \'ed\'e0\'e6\'e0\'f2\'fc }{\uldb\cf11\insrsid2556587\charrsid10512779 Enter}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid10512779 (\'e4\'ee\'eb\'e6\'ed \'ee \'e7\'e0\'e9\'f2\'e8).}{\uldb\lang1049\langfe1033\langnp1049\insrsid10512779\charrsid10512779 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid10512779 {\*\bkmkend REQD168HE} \par }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid10512779\charrsid10512779 {\*\bkmkstart REQD168TE}HLTC212.8 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid10512779 \'cf\'f0\'ee\'e2\'e5\'f0\'e8\'f2\'fc \'ef\'f0\'e8\'ed\'f3\'e4\'e8 \'f2\'e5\'eb\'fc\'ed\'ee\'e5 \'e7\'e0\'e2\'e5\'f0\'f8\'e5\'ed\'e8\'e5 \'f0\'e0\'e1\'ee\'f2\'fb \'f3\'f2\'e8\'eb\'e8\'f2\'fb}{\lang1049\langfe1033\langnp1049\insrsid10512779\charrsid10512779 \~}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid10512779 {\*\bkmkend REQD168TE} \par }{\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid2556587 \tab }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid15538126\charrsid15538126 {\*\bkmkstart REQD16AJE}HLTC212.8.1 }{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid15538126 \'c2 \'f1\'f2\'f0\'ee\'ea\'e5 \'ab}{\uldb\cf11\insrsid2556587\charrsid15538126 Enter}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid15538126 }{ \uldb\cf11\insrsid2556587\charrsid15538126 user}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid15538126 }{\uldb\cf11\insrsid2556587\charrsid15538126 login}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid15538126 \'bb \'ed\'e0\'e6\'e0\'f2\'fc }{\uldb\cf11\insrsid2556587\charrsid15538126 Ctrl}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid15538126 +}{\uldb\cf11\insrsid2556587\charrsid15538126 C}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid15538126 . \'cf\'f0\'ee\'e2\'e5\'f0\'e8\'f2\'fc \'ea\'ee\'f0\'f0\'e5\'ea\'f2\'ed\'ee\'e5 \'e7\'e0\'e2\'e5\'f0\'f8\'e5\'ed\'e8\'e5 \'f0\'e0\'e1\'ee\'f2\'fb \'e8 \'e2\'fb\'f5\'ee\'e4.}{ \uldb\lang1049\langfe1033\langnp1049\insrsid15538126\charrsid15538126 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid15538126 {\*\bkmkend REQD16AJE} \par }\pard \ql \fi720\li720\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin720\itap0\pararsid15538126 {\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid15538126\charrsid15538126 {\*\bkmkstart REQD16AVE}HLTC212.8.2 }{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid15538126 \'c2\'e2\'e5\'f1\'f2\'e8 \'eb\'ee\'e3\'e8\'ed }{\uldb\cf11\insrsid2556587\charrsid15538126 test}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid15538126 1 \'e8 \'ed\'e0\'e6\'e0\'f2\'fc }{\uldb\cf11\insrsid2556587\charrsid15538126 Enter}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid15538126 . \'c2 \'ee\'ea\'ed\'e5 \'ef\'e0\'f0\'ee\'eb\'ff \'ed\'e0\'e1\'f0\'e0\'f2\'fc }{ \uldb\cf11\insrsid2556587\charrsid15538126 test}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid15538126 \'e8 \'ed\'e0\'e6\'e0\'f2\'fc }{\uldb\cf11\insrsid2556587\charrsid15538126 Ctrl}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid15538126 +}{\uldb\cf11\insrsid2556587\charrsid15538126 C}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid15538126 . \'cf\'f0\'ee\'e2\'e5\'f0\'e8\'f2\'fc \'ea\'ee\'f0\'f0 \'e5\'ea\'f2\'ed\'ee\'e5 \'e7\'e0\'e2\'e5\'f0\'f8\'e5\'ed\'e8\'e5 \'f0\'e0\'e1\'ee\'f2\'fb \'e8 \'e2\'fb\'f5\'ee\'e4.}{\lang1049\langfe1033\langnp1049\insrsid15538126\charrsid15538126 \~}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid15538126 {\*\bkmkend REQD16AVE} \par }\pard \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0\pararsid2556587 {\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid15538126\charrsid15538126 {\*\bkmkstart REQD16B8E}HLTC212.9 }{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid15538126 \'c7\'e0\'ea\'f0\'fb\'f2\'fc \'ee\'e1\'ee\'eb\'ee\'f7\'ea\'f3, \'e7\'e0\'ef\'f3\'f1\'f2\'e8\'f2\'fc \'e5\'e5 \'e5\'f9\'e5 \'f0\'e0\'e7 \'e8 \'ef\'f0\'ee\'e2\'e5\'f0\'e8\'f2\'fc, \'f7\'f2\'ee \'e8\'e7\'ec\'e5\'ed\'e5\'ed\'e8\'e9 \'ed\'e5 \'ef\'f0\'ee\'e8\'e7\'ee\'f8\'eb\'ee \'e8 \'e2\'f5\'ee\'e4 \'e2 \'f1\'e8\'f1\'f2\'e5\'ec\'f3 \'ee\'f1\'f3\'f9\'e5\'f1\'f2\'e2\'eb\'ff\'e5\'f2\'f1\'ff \'ef\'ee\'e4 \'ef\'f0\'e5\'e6\'ed\'e8\'ec \'eb \'ee\'e3\'e8\'ed\'ee\'ec \'e8 \'ef\'e0\'f0\'ee\'eb\'e5\'ec.}{\lang1049\langfe1033\langnp1049\insrsid15538126\charrsid15538126 \~}{\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid14821353 {\*\bkmkend REQD16B8E} \par }\pard \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0\pararsid14821353 {\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14821353\charrsid14821353 {\*\bkmkstart REQEX7800}HLTC212.10 }{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14821353\charrsid14821353 \'c7\'e0\'f0\'e5\'e3\'e8\'f1\'f2\'f0\'e8\'f0\'ee\'e2\'e0\'f2\'fc\'f1\'ff \'e2 \'f1\'e8\'f1\'f2\'e5\'ec\'e5 \'ef\'ee\'e4 \'ef\'ee\'eb\'fc\'e7\'ee\'e2\'e0\'f2\'e5\'eb\'e5\'ec }{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid6775199\charrsid6775199 1!>\'b9;%:?*()_-+=/\\.,}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14821353\charrsid14821353 \'e8 \'ef\'e0\'f0\'ee\'eb\'e5\'ec }{\uldb\cf11\insrsid14821353\charrsid14821353 test}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14821353\charrsid14821353 1.}{\lang1049\langfe1033\langnp1049\insrsid14821353\charrsid14821353 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14821353\charrsid14821353 {\*\bkmkend REQEX7800} \par }\pard \ql \fi720\li0\ri0\sb60\nowidctlpar\faauto\adjustright\rin0\lin0\itap0\pararsid3100418 {\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14821353\charrsid14821353 {\*\bkmkstart REQEX7870}HLTC212.10.1 }{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14821353\charrsid14821353 \tab \'c7\'e0\'ef\'f3\'f1\'f2\'e8\'f2\'fc \'f3\'f2\'eb\'e8\'f2\'f3 \'f1\'ec\'e5\'ed\'fb \'ef\'e0\'f0\'ee\'eb\'ff, \'e2\'e2\'e5\'f1\'f2\'e8 \'eb\'ee\'e3\'e8\'ed \'e7\'e0\'f0\'e5\'e3 \'e8\'f1\'f2\'f0\'e8\'f0\'ee\'e2\'e0\'ed\'ed\'ee\'e3\'ee \'ef\'ee\'eb\'fc\'e7\'ee\'e2\'e0\'f2\'e5\'eb\'ff (}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid6775199\charrsid6775199 1!>\'b9;%:?*()_-+=/\\.,}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14821353\charrsid14821353 ) \'e8 \'e2\'e2\'e5\'f1\'f2\'e8 \'ed\'ee\'e2\'fb\'e9 \'ef\'e0\'f0\'ee\'eb\'fc <\'ef\'e0\'f0\'ee\'eb\'fc>. \'d3\'e1\'e5\'e4\'e8\'f2\'fc\'f1\'ff, \'f7\'f2\'ee \'ec\'ee\'e6\'ed\'ee \'e2\'ee\'e9\'f2\'e8 \'e2 \'ee\'e1\'ee\'eb\'ee\'f7\'ea\'f3 \'ef\'ee\'e4 \'ef\'ee\'eb\'fc\'e7\'ee\'e2\'e0\'f2\'e5\'eb\'e5\'ec }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid6775199\charrsid6775199 1!>\'b9;%:?*()_-+=/\\.,}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid14821353\charrsid14821353 \'f1 \'ef\'e0\'f0\'ee\'eb\'e5\'ec <\'ef\'e0\'f0\'ee\'eb\'fc>}{\lang1049\langfe1033\langnp1049\insrsid14821353\charrsid14821353 \~}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid2556587\charrsid6775199 {\*\bkmkend REQEX7870} \par }{\v\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid3100418\charrsid3100418 {\*\bkmkstart REQ74BKDG}HLTC212.11 }{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid3100418\charrsid3100418 \'cf\'f0\'ee\'e2\'e5\'f0\'e8\'f2\'fc, \'f7\'f2\'ee \'ef\'e0\'f0\'ee \'eb\'fc \'e0\'e4\'ec\'e8\'ed\'e8\'f1\'f2\'f0\'e0\'f2\'ee\'f0\'e0 \'ec\'ee\'e6\'ed\'ee \'f1\'e1\'f0\'ee\'f1\'e8\'f2\'fc \'e2 \'f1\'f2\'e0\'ed\'e4\'e0\'f0\'f2\'ed\'fb\'e9 \'f3\'ea\'e0\'e7\'e0\'e2 \'e2 \'e8\'ed\'e8\'f8\'ed\'e8\'ea\'e5 \'e2 \'f1\'e5\'ea\'f6 \'e8\'e8 [}{\uldb\cf11\insrsid3100418\charrsid3100418 F}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid3100418\charrsid3100418 1}{\uldb\cf11\insrsid3100418\charrsid3100418 ServerParams}{ \uldb\cf11\lang1049\langfe1033\langnp1049\insrsid3100418\charrsid3100418 ] \'ee\'ef\'f6\'e8\'fe \endash GCMResetAdminPassword }{\uldb\cf11\insrsid3100418\charrsid3100418 c}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid3100418\charrsid3100418 \'ef\'f0 \'ee\'e8\'e7\'e2\'ee\'eb\'fc\'ed\'fb\'ec \'e7\'ed\'e0\'f7\'e5\'ed\'e8\'e5\'ec.}{\lang1049\langfe1033\langnp1049\insrsid3100418\charrsid3100418 \~}{\uldb\cf11\lang1049\langfe1033\langnp1049\insrsid3100418\charrsid3100418 {\*\bkmkend REQ74BKDG} \par }}
66c5e3d0f68843d5bc251e17b0f326b9fef65fd1
449d555969bfd7befe906877abab098c6e63a0e8
/3871/CH16/EX16.2/Ex16_2.sce
0bedf57016b085ff73888758764d36b580467395
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
718
sce
Ex16_2.sce
//===================================================================================== //Chapter 16 example 2 clc;clear all; //variable declaration l = 0.02; //length of plates in m d = 0.005; //distance between plates in m S = 0.3; //the distance between the screen and centre of plates in m Va =2000; //accelerating voltage in V Y =0.03; //trace length in m //cacualtions //y = lSVd/(2*d*Va) Vd = (d*Va*x)/(l*S); //deflection voltgae in V Vrms = Vd/(sqrt(2)); //rms value of sinusoidal voltage applied to the X-deflecting plates in V Vin = Vrms/(Vd); //input voltage required in V //result mprintf(" nput voltage required = %3.3f V",Vin);
ef471c318838a81ac9cd722470a0ae3620432352
449d555969bfd7befe906877abab098c6e63a0e8
/3792/CH2/EX2.7/Ex2_7.sce
d54a73078043d752ea3e9a68d6c8057f17acc297
[]
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
892
sce
Ex2_7.sce
// Example 2_7 clc;funcprot(0); // Given data a=3;// m/s^2 v_A=100;// km/h v_C=50;// km/h s=120;// m // Calculation v_A=v_A*(1000/3600);// The velocity in m/s v_C=v_C*(1000/3600);// The velocity in m/s a_t=(1/(2*s))*(v_C.^2-v_A.^2);// The acceleration in m/s^2 // (a) Condition at A. a_n=sqrt(a.^2-(a_t).^2);// The acceleration in m/s^2 rho_A=v_A.^2/a_n;// The radius of curvature at A in m // (b) Condition at B. a_n=0;// m/s^2 a_b=a_n+a_t;// The acceleration at the inflection point B in m/s^2 // (c) Condition at C. rho=150;// The radius of curvature of the hump at C in m a_n=v_C.^2/rho;// The normal acceleration in m/s^2 a=sqrt(a_n.^2+a_t.^2);// The total acceleration at C in m/s^2 printf("\n(a)The radius of curvature at A,rho=%3.0f m \n(b)The acceleration at the inflection point B,a=%1.2f m/s^2 \n(c)The total acceleration at C,a=%1.2f m/s^2",rho_A,a_b,a)
cab5d038f60fd0040ad594a3f7857e5ee1861b5e
b26cbe6bc3e201f030705aaf9eb82da94def231f
/tests/Morisita_RP-009.tst
381d512655e93ce0e60d1d7956a809209faec8c2
[]
no_license
RP-pbm/Recurrence-plot
f86c5cd85460661b01a609f8f4281d2cda6b4e07
b5da95f9b30c1a924a002102219bf0a2ad47df2c
refs/heads/master
2022-07-24T12:11:34.163543
2022-07-09T19:32:43
2022-07-09T19:32:43
92,934,698
0
0
null
null
null
null
UTF-8
Scilab
false
false
32
tst
Morisita_RP-009.tst
../inputs/pops-4x2-5555-1234.ssv
081b2dfbe041d8b2f826be03ac6d7c885a8c2691
449d555969bfd7befe906877abab098c6e63a0e8
/3733/CH32/EX32.15/Ex32_15.sce
77985de5960e51af6f30b82acbc03d44f737c823
[]
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,081
sce
Ex32_15.sce
// Example 32_15 clc;funcprot(0); //Given data MD_1=15;// Maximum demand in MW MD_2=25;// Maximum demand in MW MD_3=50;// Maximum demand in MW F_di1=1.25;// Diversity factor F_di2=1.20;// Diversity factor F_di3=1.30;// Diversity factor F_d1=0.70;// Demand factor F_d2=0.90;// Demand factor F_d3=0.98;// Demand factor F_dio=1.5;// Diversity factor // Calculation //(a) MD_s=MD_1+MD_2+MD_3;// The sum of maximum demands from all customers in MW MD=MD_s/F_dio;// Maximum demand of the plant in MW //(b) Mdl=MD_1*F_di1;// Maximum domestic load demand in MW Cdl=Mdl/F_d1;// Connected domestic load in MW Ccl=(MD_2*F_di2)/F_d2;// Connected commercial load in MW Cil=(MD_3*F_di3)/F_d3;// Connected industrial load in MW Tcl=Cdl+Ccl+Cil;// Total connected load to the plant in MW printf('\n(a)Maximum demand of the plant=%0.0f MW \n(b)Connected commercial load=%0.2f MW \n Connected industrial load=%0.2f MW \n Connected industrial load=%0.2f MW \n Total connected load to the plant=%0.2f MW',MD,Cdl,Ccl,Cil,Tcl); // The answer vary due to round off error
fabf5ada9769bcb62bc2da3b506cfc8b2acd1bbf
449d555969bfd7befe906877abab098c6e63a0e8
/3784/CH8/EX8.2/Ex8_2.sce
075e874670985e31ce9f6d5a3d5f1b5d3fd8c86c
[]
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
725
sce
Ex8_2.sce
clc P=500e+3//power of motor in Watts V=6.6e+3//rated voltage in Volts f=60//frequency in Hz n=6//no. of poles Rs=0//resistnce of motor in ohm Xm=78//reactance in ohm Xsr=3//reactance in ohm p=0//pf=1 k=5 //solution Xsr1=3*%i Vph=V/sqrt(3) Is=P/(3*Vph*cosd(p)) E=Vph-(Is*%i*Xsr) E1=abs(E) d=asind((Is*1*Xsr/E1)) Pm=3*Vph*E*sind(d)/Xsr Pm1=abs(Pm)//Power in watt Pm2=Pm1*10^(-3)//Power in Kw Ns=120*f/n N=Ns/k wm=N*2*%pi/60 T=Pm1/wm If1=E/(%i*Xsr) Im=Is+abs(If1) printf('\n\n Power Pm=%0.1f Kw\n\n',Pm2) printf('\n\n Torque T=%0.1f N-m\n\n',T) printf('\n\n The Field Current=%0.1f Amp\n\n',abs(If1)) printf('\n\n The motor Current=%0.1f Amp\n\n',Im) //The answers vary due to round off error
be3ffe1c2960cd3b2a7df1cae8c5e307b0a58ac3
449d555969bfd7befe906877abab098c6e63a0e8
/1949/CH1/EX1.26/1_26.sce
fd819fab34ca840f388f118600550e2da53c27d7
[]
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
1_26.sce
//Chapter-1,Example 1_26,Page 1-48 clc() //Given Data: i=45*%pi/180 //angle of incidence u=4/3 //Refractive index of soap film lam=5*10^-7 //wavelength of light t=1.5*10^-6 //thickness of film //Calculations: //u=sin i/sin r //Snell's law .So, r=asin(sin(i)/u) //angle of reflection //Now, condition for dark band is //2ut*cos r=n*lam n=2*u*t*cos(r)/lam //order of band printf('order of dark band is =%.1f \n',n)
aa6bcf5ce4bbe2ff7521b522720656b4dcf74a31
1ab973f3a885af24e0fa9d101c023dd2eff5b07b
/ini/src_area.tst
9981d8f548ee43c2f7d693d492e74fc765a5492c
[]
no_license
fmidev/silam-model
41d93c428ab719e418446f8519a46906a1f4d666
0e20e10f407ba6c01a4d3f45dd5a0fc4e2310676
refs/heads/silam_v5_8pub
2023-08-18T19:45:37.577826
2023-08-04T08:59:09
2023-08-04T09:03:20
221,942,589
14
4
null
2023-07-20T11:27:06
2019-11-15T14:41:24
Fortran
UTF-8
Scilab
false
false
3,996
tst
src_area.tst
AREA_SOURCE_3 source_name = area2 source_sector_name = grid_title = grid_type = LON_LAT lon_s_pole = 0.0000000E+00 lat_s_pole = -90.00000 lon_start = 0.0000000 lat_start = 30.0000000 nx = 20 ny = 35 dx = 1.0000000 dy = 1.0000000 resol_flag = 128 ifReduced = 0 earth_flag = 0 wind_component = 0 reduced_nbr_str = 0 lat_pole_stretch = 0. lon_pole_stretch = 0. release_rate_unit = DESCRIPTOR_DEFAULT par_str_area = 1000 1 1 6 0 0.0000000 925.0000000 900.0000000 AEROSOL_5_MODES_COCKTAIL 0.0001268 #PASSIVE_COCKTAIL 0.0000006 par_str_area = 3000 1 2 6 0 0.0000000 925.0000000 900.0000000 AEROSOL_5_MODES_COCKTAIL 0.0001268 #PASSIVE_COCKTAIL 0.0000006 hour_in_day_index = 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 day_in_week_index = 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 month_in_year_index = 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 vertical_distribution = MULTI_LEVEL_FIXED vertical_unit = m vert_level = HEIGHT_FROM_SURF 1.0000000 90.0000000 0.8000000 vert_level = HEIGHT_FROM_SURF 90.0000000 180.0000000 0.1000000 vert_level = HEIGHT_FROM_SURF 180.0000000 320.0000000 0.1000000 coordinate_of_values = GRID_INDICES val = 11.0000000 11.0000000 100.0000000 50.0000000 val = 13.0000000 11.0000000 10.0000000 10.0000000 END_AREA_SOURCE_3 AREA_SOURCE_3 source_name = area2 source_sector_name = grid_title = grid_type = LON_LAT lon_s_pole = 0.0000000E+00 lat_s_pole = -90.00000 lon_start = 0.0000000 lat_start = 30.0000000 nx = 20 ny = 35 dx = 1.0000000 dy = 1.0000000 resol_flag = 128 ifReduced = 0 earth_flag = 0 wind_component = 0 reduced_nbr_str = 0 lat_pole_stretch = 0. lon_pole_stretch = 0. release_rate_unit = DESCRIPTOR_DEFAULT par_str_area = 1000 1 1 6 0 0.0000000 925.0000000 900.0000000 PASSIVE_COCKTAIL 0.0000006 par_str_area = 3000 1 2 6 0 0.0000000 925.0000000 900.0000000 PASSIVE_COCKTAIL 0.0000006 hour_in_day_index = 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 day_in_week_index = 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 month_in_year_index = 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 vertical_distribution = MULTI_LEVEL_FIXED vertical_unit = m vert_level = HEIGHT_FROM_SURF 1.0000000 90.0000000 0.8000000 vert_level = HEIGHT_FROM_SURF 90.0000000 180.0000000 0.1000000 vert_level = HEIGHT_FROM_SURF 180.0000000 320.0000000 0.1000000 coordinate_of_values = GRID_INDICES val = 11.0000000 11.0000000 100.0000000 50.0000000 val = 13.0000000 15.0000000 10.0000000 10.0000000 END_AREA_SOURCE_3
7fd28d940760951e256813a8da83ce5b3abd7ae5
3c0d3d9a240ceb5e67edd17799acbb47a7c9c313
/TestHashTable.tst
d827fbc0dfbd45ae3d63f4a4a61dc2f6ab0afac5
[]
no_license
MohammedKhan199/VehicleIdentification-system
9e1b913619db65aed2a357bbcc9e1b4aa32c5db0
331be017b02fa0aa1afcd511bbdc61492a030702
refs/heads/master
2023-04-27T23:45:50.668352
2021-05-07T02:15:56
2021-05-07T02:15:56
319,757,875
0
0
null
null
null
null
UTF-8
Scilab
false
false
223
tst
TestHashTable.tst
1255898203=4 463111035=4 112629943=1 2142387030=3 297009907=true 1994506124="e5" 763111404=true 26295200="e3" 164216955=9 1482018022="e1" 659096442=2 787946402=2 1707638717="f0" 1522885692=false 436276989=3 538873027=false
9ac64da88c115faf6111f2c4454940f032557bfc
449d555969bfd7befe906877abab098c6e63a0e8
/1748/CH1/EX1.10/Exa1_10.sce
1a3243b5607e0f1ff2633557debba80a7b4d2232
[]
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
644
sce
Exa1_10.sce
//Exa 1.10 clc; clear; close; //given data format('v',6); RatedPower=50;//in KVA RatedPower=50*1000;//in VA VL=173;//in Volts Ra=0.1;//in Ohm VP=VL/sqrt(3);//in Volts disp("Some exciting curent on short circuit produces a current of 100 A."); OC_PhaseVoltage=100;//in Volt SC_Current=100;//in Ampere Zs=OC_PhaseVoltage/SC_Current;//n ohm Xs=sqrt(Zs^2-Ra^2);//in Ohm disp(Xs,"Impedence of the alternator in Ohm : "); V=400;//in Volts I_FL=RatedPower/(sqrt(3)*V);//in Ampere V=400/sqrt(3);//in Volts Eo=sqrt((V+I_FL*Ra)^2+(I_FL*Xs)^2);//in Volts Regulation=(Eo-V)*100/V;//in % disp(Regulation,"Regulation at U.P.F. in % :");
cc1f5470654358e1a85bacd3519c6b994842a0f1
0e52518c6fe37e683dc04d785f174ce30408f8e7
/otimizacao/SimulatedAnnealing.sce
3c51f1cecdf681f139687935d5333dc46e152fbb
[]
no_license
thiago-franco/metodos-numericos
c3a7a10d00376c9b238825e9ff049635cc153a92
95ed4e0b1e05b10c7d0ef9cbc23f9c98d2cf8a65
refs/heads/master
2021-07-06T00:19:31.512668
2017-09-30T01:25:29
2017-09-30T01:25:29
104,950,926
0
0
null
null
null
null
UTF-8
Scilab
false
false
639
sce
SimulatedAnnealing.sce
close clear clc function g=f(x) g=(x(1)-2)^4 + (x(1)-(2*x(2)))^2 endfunction function U=matriz(y) r=0 for i=1:n r=r+y(i)^2 end r=sqrt(r) U=eye(n,n) for i=1:n U(i,i)=y(i)/r end endfunction function X=Simulated(x,tsa) deltar=[.1;.1] X(:,$)=x n=length(x) true=0 while(true==0) true=1 cont=1000 t=1 while(cont>t) y=rand(n,1,"normal") U=matriz(y) xnovo= x + U*deltar deltac=f(xnovo)-f(x) if(deltac<0) x=xnovo true=0 else z=exp(-deltac/tsa) p=rand(1,1,"uniform") if(z>p) x=xnovo true=0 end end t=t+1 end tsa=tsa*0.90 X(:,$+1)=x X=x end endfunction
4c5bd096578a6ee6ee710eef5e78db3a7b90b2df
449d555969bfd7befe906877abab098c6e63a0e8
/26/CH5/EX5.3.7/5_3_7.sce
234d38b9e1b62e5e69059285502158692bc44427
[]
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
614
sce
5_3_7.sce
disp('the given matrix is:') a=[1 0;6 -1] disp(a,'A=') disp('Since A is triangular, eigenvalues are the diagonal entries.') disp(a(2,2),a(1,1),'Eigenvalues are:') disp('for lambda=1') disp('A-1I=') b=a-eye(2,2) disp(b) disp('Hence, x1=(1/3)x2 with x2 as free variable.') disp('Eigenvector corresponding to lambda=1 is:') u1=[1;3] disp(u1) disp('for lambda=-1') disp('A-(-1)I=') b=a+eye(2,2) disp(b) disp('Hence, x1=0 with x2 as free variable.') disp('Eigenvector corresponding to lambda=-1 is:') u2=[0;1] disp(u2) disp('Thus, matrix P=') disp([u1 u2]) disp('and matrix D=') disp([1 0;0 -1])
81f5993b096548312c9ecf02c9836b307bf01de7
449d555969bfd7befe906877abab098c6e63a0e8
/1067/CH19/EX19.5/19_5.sce
bce2643924771ac401dcb21b19990471c79672d6
[]
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
157
sce
19_5.sce
clc; clear; z=0.2*%i*0.155/(0.2+0.155); v=1; i=v/z; ir=real(i); im=imag(i); im=round(im*100)/100; mprintf("the fault current is =%d+(%fj)A",ir,im);
daecb0babb8603de5a40ef24ae2500e320fcfcdb
127061b879bebda7ce03f6910c80d0702ad1a713
/bin/PIL_mat_rev.sci
aceb1435a79fa48f17ba46f76c92d32b8b9cffdb
[]
no_license
pipidog/PiLib-Scilab
961df791bb59b9a16b3a32288f54316c6954f128
125ffa71b0752bfdcef922a0b898263e726db533
refs/heads/master
2021-01-18T20:30:43.364412
2017-08-17T00:58:50
2017-08-17T00:58:50
100,546,695
0
1
null
null
null
null
UTF-8
Scilab
false
false
337
sci
PIL_mat_rev.sci
// **** Purpose **** // reverse the order of states that expand a square matrix // **** Variables **** // [M]: n x n, complex // <= the input matrix // [M_rev]: n x x, complex // => the reversed matrix // **** Version **** // 05/01/2014 // **** Comment **** function M_rev=PIL_mat_rev(M) M_rev=flipdim(flipdim(M,1),2); endfunction
4b02de6cbdfa851de69deec4f66ea308e41c99a0
449d555969bfd7befe906877abab098c6e63a0e8
/896/CH5/EX5.2/2.sce
69044f78e353ef8aa62818622c38ec8182c85254
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
385
sce
2.sce
clc //Example 5.2 //calculate velocity of air coming out from the nozzle T=528;//R Rankine scale R=10.73;//psi.ft^3/R/lbmol universal gas constant p=14.71;//psi p_atm=14.7;//psi M=29;//lbm/lbmol //considering the velocity at the start of the nozzle is negligible v=((2*R*T/p/M)*(p-p_atm)*(144*32.2))^0.5;//ft/s printf("Velocity of the air flowing out of the pipe %f ft/s",v);
fd77d12964afefc58ea8ec91619349a4ee17f8eb
449d555969bfd7befe906877abab098c6e63a0e8
/914/CH2/EX2.5/ex2_5.sce
dce551456a84982152aed0bf07e5ca3b29ca7404
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
696
sce
ex2_5.sce
clc; warning('off'); printf("\n\n example2.5 - pg31"); // given d=0.0013; //[m] - diameter of the tube delx=1; //[m] - length of the glass tube T2=110.6; //[degC] - temperature on one end of the rod T1=0; //[degC] - temperature on other side of the rod k=0.86; //[W/m*K] - thermal conductivity Hf=333.5; //[J/g] - heat of fusion of ice // (a)using the equation (q/A)=-k*(delt/delx) A=(%pi*d^2)/4; q=A*(-k*(T2-T1)/delx); printf("\n\n (a) the heat flow is \n q=%fJ/sec",q); // (b) dividing the total heat transfer in 30minutes by the amount of heat required to melt 1g of ice a=abs((q*30*60)/333.5); printf("\n\n (b)the amount or grams of ice melted in 30minutes is %fg",a);
e09e6fd34db00f4f29f553c475b44160e387c4d0
5c808b0f55fefd29b91c7cb73f2f3a08093c5033
/Code/Scilab Code/RunningAvg.sci
b05012c46f84fb3d40debae0a1065a5e6186f115
[]
no_license
JOfTheAncientGermanSpear/Filter-Bank-Guitar-Note-Chord-Detection
a01e2ce521561dfea555a588d6bb1e0f1deca18e
cb0d54c74275a990dcb984c4ec349e6ca4e72a1a
refs/heads/master
2021-01-20T12:00:42.472605
2013-06-14T03:04:33
2013-06-14T03:04:33
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
156
sci
RunningAvg.sci
function runningAvg = RunningAvg(prevAvg, currValue, currValue1BasedIndx) runningAvg = prevAvg + (currValue-prevAvg)./currValue1BasedIndx; endfunction