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
3d6ae77ce96b08b3338acbacc4eab4497f87972b
449d555969bfd7befe906877abab098c6e63a0e8
/2144/CH8/EX8.18/ex8_18.sce
2c4363f3489cd5d1f2c4a76f89c07ddde199b2c3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,105
sce
ex8_18.sce
// Exa 8.18 clc; clear; close; // Given data V_CH4= 0.14;// in m^3 V_CO= 0.35;// in m^3 V_CO2= 0.06;// in m^3 V_N2= 0.03;// in m^3 V_H2= 0.42;// in m^3 a= V_CH4+V_CO2+V_CO; b= 2*V_CH4+V_H2; // a+0.5*b+c= V_CO2+V_CO/2+0.21*5 c= V_CO2+V_CO/2+0.21*5-a-0.5*b; d=V_N2+5*0.79; total= a+c+d; Vol_per_CO2= a/total*100;// in % Vol_per_O2= c/total*100;// in % Vol_per_N2= d/total*100;// in % disp(Vol_per_CO2,"Volume percentage of CO2 is : ") disp(Vol_per_O2,"Volume percentage of O2 is : ") disp(Vol_per_N2,"Volume percentage of N2 is : ") m_CO2= 44;// molecular mass m_O2= 32;// molecular mass m_N2=28;// molecular mass mass_ratio_CO2= Vol_per_CO2/m_CO2; mass_ratio_O2= Vol_per_O2/m_O2; mass_ratio_N2= Vol_per_N2/m_N2; total_mass_ratio= mass_ratio_CO2+mass_ratio_O2+mass_ratio_N2; mass_per_CO2= mass_ratio_CO2/total_mass_ratio*100; mass_per_O2= mass_ratio_O2/total_mass_ratio*100; mass_per_N2= mass_ratio_N2/total_mass_ratio*100; disp(mass_per_CO2,"Mass percentage of CO2 is : ") disp(mass_per_O2,"Mass percentage of O2 is : ") disp(mass_per_N2,"Mass percentage of N2 is : ")
b5a698792ef8b3b9b37e1005a91fa1b46cf24aec
449d555969bfd7befe906877abab098c6e63a0e8
/2297/CH2/EX2.14/Ex2_14.sce
4d9ae88e94b22798fb1ea31b5e12e73941034caa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
592
sce
Ex2_14.sce
// Example 2.14 :circuit elements clc; close; format('v',6) // given : //v=311*sin(2500*t+170) V voltage equation //I=15.5*sin(2500*t-145)A current equation vm=311/sqrt(2);//voltage in volts va=170;//angle in degree im=15.5/sqrt(2);//current in amperes ia=-145;//angle in degree zm=vm/im;//resistance in ohms za=(va-ia)-360;//resistance ohms z1=zm*cosd(za);//resistance in ohms z2=zm*sind(za);//resistance in ohms z=z1+%i*z2;//resistance in ohms t=2500;//time in seconds c=(1/(real(z)*t));//capacitance in farads disp(z,"Impedance is ,(Ohm)=") disp(c*10^6,"capacitance is ,(micro-farads)=")
6c5a909333e0b55ff98da96e63092fc729c35185
3b9a879e67cbab4a5a4a5081e2e9c38b3e27a8cc
/Área 2/Aula 8 - Minimos quadráticos/Teste/EstimarUmaFuncaoGrau2.sce
7db2e41f62b0f7399176c32c8974f1f27a7ed791
[ "MIT" ]
permissive
JPedroSilveira/numerical-calculus-with-scilab
32e04e9b1234a0a82275f86aa2d6416198fa6c81
190bc816dfaa73ec2efe289c34baf21191944a53
refs/heads/master
2023-05-10T22:39:02.550321
2021-05-11T17:17:09
2021-05-11T17:17:09
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
289
sce
EstimarUmaFuncaoGrau2.sce
clear x = (0:0.1:1)'; y = sin(x); n = size(x,1); p = 2; for i=1:p+1 for j=1:p+1 /*Monta a matriz do elemento genérico polinomial*/ M(i,j) = sum(x.^(i+j-2)); end end for i = 1:p+1 /*Monta o vetor b do sistema*/ b(i) = sum(y.*x.^(i-1)); end a = inv(M)*b;
33af992085c6e119f8071605feaa3e57b376c584
389bd4af3bf5a0f54f51e8aafea5035f568ba445
/ilk_program.sci
fe56b2447dfaa133a652ffd0e7d97cc67e68bb1e
[]
no_license
esraatlici/Bilgisayar-Destekli-Matematik
d47f057d9cb7ee987e367c67f8923cfcf02342d8
dae1079f60fc7e0d3b54802b4cbed9182b52fcd7
refs/heads/main
2022-12-25T11:14:25.575530
2020-10-05T15:09:58
2020-10-05T15:09:58
301,447,895
0
0
null
null
null
null
UTF-8
Scilab
false
false
79
sci
ilk_program.sci
disp("Bilgisayar Destekli Matematik Dersi","Necmettin Erbakan Üniversitesi")
d3029f46b4907e17190531f39e475f85d3a786c2
449d555969bfd7befe906877abab098c6e63a0e8
/2006/CH3/EX3.7/ex3_7.sce
e385cc9f83dae76480f028b7fc66def239933ea2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,703
sce
ex3_7.sce
clc; p=6000; // Pressure of nitrogen gas in kPa T=150; // Temperature of nitrogen gas in kelvin V=250; // Volume of tank in litres R_1=8.3143; // Universal gas constant in kJ/kmol K M=28.1013; // Molecular mass // (a).Beattie - Bridgeman equation of state // Constants for nitrogen gas c=4.2*10^4; Ao=136.2315; a=0.02617; Bo=0.05046; b=-0.00691; // By substituting these values in the following equation // p=(R_1*T/v^2)*(1-(c/(vT^3)))*(v+Bo*(1-(b/v)))-(Ao/v^2*(1-(a/v))) // By trial and error we get v=0.1222; // specific volume in m^3/kmol m=(M*V/1000)/v; // Mass of nitrogen gas disp ("m^3/kmol",v,"specific volume of nitrogen gas = ","kg",m,"Mass of nitrogen gas = ","(a).Beattie - Bridgeman equation of state"); // (b).Nitrogen tables // From property table of nitrogen fas v=0.004413; // specific volume in m^3/kg m=(V/1000)/v; // Mass of nitrogen gas disp ("m^3/kg",v,"specific volume of nitrogen gas = ","kg",m,"Mass of nitrogen gas = ","(b).Nitrogen tables"); // (c).Ideal gas equation of state m=(p*V/1000)/(R_1*T/M); //Mass of nitrogen gas disp ("kg",m,"Mass of nitrogen gas = ","(c).Ideal gas equation of state"); // (d).Generalized compressibility chart // The crictical properties for nitrogen gas Tc=126.2; // Temperature in kelvin Pc=3.349; // Pressure in MPa // Reduced properties are Pr=p/Pc; Tr=T/Tc; z=0.6; // From chart m=(p*V/1000)/(z*R_1*T/M); //Mass of nitrogen gas disp ("kg",m,"Mass of nitrogen gas = ","(d).Generalized compressibility chart"); disp ("Ideal gas equation of state","Generalized compressibility chart","Beattie - Bridgeman equation of state","Nitrogen tables"," (e).Arrangement the methods in order of percentage error : ");
c6f0b2f0b397896782f25841c7a15a4cc9d45b90
449d555969bfd7befe906877abab098c6e63a0e8
/278/CH24/EX24.1/ex_24_1.sce
a00d11097e0673e480fd54c3d3c7dfd8696721fe
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
ex_24_1.sce
//find.. clc //solution //given W=4000//N r2=50//mm r1=100//mm //let pmax be max pressure //C2=pmax*r2=50pmax //W=2*%pi*C(r1-r2)=16710*pmax pmax=W/15170//N/mm^2 printf("max pressure is,%f N/mm^2\n",pmax) //let pmin be min pressure //C1=r1*pmin=100*pmin //W=2*%pi*C(r1-r2)=31420*pmin pmin=W/31420//N/mm^2 printf("min pressure is,%f N/mm^2\n",pmin) pav=W/(%pi*(r1^2-r2^2))//N/mm^2) printf("avrage pressure is,%f N/mm^2\n",pav)
b63ac59294d2d7c35d1527f9ba830ff8f64106e7
6813325b126713766d9778d7665c10b5ba67227b
/Chapter5/Ch_5_Eg_5.15.sce
d458a838f1006de32dbeaa1e24e5b5932e98f98e
[]
no_license
arvindrachna/Introduction_to_Scilab
955b2063b3faa33a855d18ac41ed7e0e3ab6bd1f
9ca5d6be99e0536ba1c08a7a1bf4ba64620ec140
refs/heads/master
2020-03-15T19:26:52.964755
2018-05-31T04:49:57
2018-05-31T04:49:57
132,308,878
1
0
null
null
null
null
UTF-8
Scilab
false
false
425
sce
Ch_5_Eg_5.15.sce
// To plot different types of pie charts in a graphics window x= [10,20,15,25]; subplot (2,2,1), pie(x); xtitle ("Simple Pie Chart"); sp= [1,1,1,1]; subplot (2,2,2), pie (x, sp); xtitle ("Separated Pie Chart"); txt= ["Red", "Green", "Blue", "Yellow"]; subplot (2,2,3), pie (x, txt); xtitle ("Labelled Pie Chart"); sp= [0,1,0,0]; subplot (2,2,4), pie (x, sp, txt); xtitle ("Separated (Individual pieces) Pie Chart");
8038894c10c6b3aaba734743fe110f500a20eece
449d555969bfd7befe906877abab098c6e63a0e8
/1382/CH2/EX2.47/EX_2_47.SCE
0584275b8bea19196ec30da9c6df92a07f5c605c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
454
sce
EX_2_47.SCE
// Example 2.47:Ai,Ri,Av clc; clear; close; Rs=800;//Internal resistance in ohms Rl=1000;//Load resistance in ohms //H Paramters are Hie=1;//in killo ohms Hre=2*10^-4; Hfe=50; Hoe=25*10^-6;// in ampere per volt Ai= -Hfe/(1+Hoe*Rl);// Current gain Ri= Hie*10^3-((Hfe*Hre)/(Hoe+(1/Rl)));// Input resistance in ohms Av= Ai*(Rl/Ri);// Voltage Gain disp(Ai,"Current gain is") disp(Ri,"Input resistance in ohms is") disp(Av,"Voltage gain is")
30353665a4d0e891ebc87d19a9990a49b5b6872c
10b625bb4f968cf83298dd40b285b6f15ab4354f
/Valaquio_Lab1a.sce
35b26722971588de698cef722ca313f6f090f467
[]
no_license
edvalaquio/SciLabProjects
885b1493b1368bbdccd671a58fba6ead6da9bca1
aa8efd42ca65d4779376e2ccaf132fd75713fe7f
refs/heads/master
2021-09-14T20:03:14.736024
2018-05-18T10:42:59
2018-05-18T10:42:59
131,813,353
1
0
null
null
null
null
UTF-8
Scilab
false
false
2,210
sce
Valaquio_Lab1a.sce
pA = [0.2 0.8] pL = [0.8 0.1 0.2 0.9] pQ = [0.85 0.05 0.15 0.95] pE = [0.9 0.55 0.4 0.05 0.1 0.45 0.6 0.95] while %T printf("Enter whether A is pass (1) or fail (0): ") probA = scanf("%d") printf("Enter whether L is pass (1) or fail (0): ") probL = scanf("%d") printf("Enter whether Q is pass (1) or fail (0): ") probQ = scanf("%d") printf("Enter whether E is pass (1) or fail (0): ") probE = scanf("%d") if (probA <> 0 & probA <> 1) then probA = [0 1] else probA = [probA] end if (probL <> 0 & probL <> 1) then probL = [0 1] else probL = [probL] end if (probQ <> 0 & probQ <> 1) then probQ = [0 1] else probQ = [probQ] end if (probE <> 0 & probE <> 1) then probE = [0 1] else probE = [probE] end probability = 0 for i = 1:1:2 numA = (probA(i) * 2^0) + 1 for j = 1:1:2 numL = (probL(j) * 2^1) + (probA(i) * 2^0) + 1 for k = 1:1:2 numQ = (probL(k) * 2^1) + (probA(i) * 2^0) + 1 for l = 1:1:2 numE = (probE(l) * 2^2) + (probL(j) * 2^1) + (probQ(k) * 2^0) + 1 probability = probability + pA(numA)*pL(numL)*pQ(numQ)*pE(numE) if (size(probE) == 1) then break end end if (size(probQ) == 1) then break end end if (size(probL) == 1) then break end end if (size(probA) == 1) then break end end // probability = 0 // for i = 1:1:2 // numA = (probA(i) * 2^0) + 1 // numL = (probL * 2^1) + (probA(i) * 2^0) + 1 // numQ = (probL * 2^1) + (probA(i) * 2^0) + 1 // numE = (probE * 2^2) + (probL * 2^1) + (probQ * 2^0) + 1 // probability = probability + pA(numA)*pL(numL)*pQ(numQ)*pE(numE) // end printf("The probability is\n") disp(probability) printf("Do you want to continue?") ans = scanf("%d") if(ans == 0) break end end
d327d5bbb0c76ff2b6c36560e6225eb9f501e3e9
26e0446118d01de6f6a471afb39d81406908c736
/valsP.sci
0b3864e2a4249e78ebae1c760b36eddf7a024fec
[]
no_license
Eruliuce/Projet_Modelisation_ACP
79d1b84aa9d742e552e6c6d8b9acba979631dbaf
5a6b330f0fe0dd89b1efb56638a253f26d194f6e
refs/heads/master
2021-01-18T18:32:09.133376
2015-02-28T10:28:32
2015-02-28T10:28:32
31,441,932
0
0
null
null
null
null
UTF-8
Scilab
false
false
94
sci
valsP.sci
function [vap, vep]=valsP(A) [vep, diagevals]=spec(A) vap=diag(diagevals) endfunction
7513e9a0345a327d972eb7810c36e278a2f48b80
449d555969bfd7befe906877abab098c6e63a0e8
/1943/CH2/EX2.6/Ex2_6.sce
150d63c6d38e9b1707600b2c747dd10a9926c968
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,797
sce
Ex2_6.sce
clc clear //Input data p1=150//Pressure of inlet steam in bar T1=550//Temperature of steam in degree C p2=20//Pressure after expansion in bar T2=500//Reheat temperature in degree C pc=0.075//Condenser pressure in bar php=50//Pressure of steam in h.p turbine in bar pip=[10,5,3]//Pressure of steam in i.p turbines in bar plp=1.5//Pressure of steam in l.p turbine in bar m=300*1000//Steam flow rate in kg/h //Calculations h1=3448.6//Enthalpy in kJ/kg h4=3467.6//Enthalpy in kJ/kg s1=6.5119//Entropy in kJ/kg.K s2=s1//Entropy in kJ/kg.K s3=s1//Entropy in kJ/kg.K s4=7.4317//Entropy in kJ/kg.K s5=s4//Entropy in kJ/kg.K s6=s5//Entropy in kJ/kg.K s7=s6//Entropy in kJ/kg.K s8=s7//Entropy in kJ/kg.K s9=s8//Entropy in kJ/kg.K t2=370//Temperature in degree C t3=245//Temperature in degree C t5=400//Temperature in degree C t6=300//Temperature in degree C t7=225//Temperature in degree C t8=160//Temperature in degree C h2=3112//Enthalpy in kJ/kg h3=2890//Enthalpy in kJ/kg h5=3250//Enthalpy in kJ/kg h6=3050//Enthalpy in kJ/kg h7=2930//Enthalpy in kJ/kg h8=2790//Enthalpy in kJ/kg x9=(s9-0.5764)/7.6751//Dryness fraction h9=168.79+x9*2406////Enthalpy in kJ/kg h10=168.79//Enthalpy in kJ/kg h11=h10+0.001*pip(2)*100//Enthalpy in kJ/kg h12=467.11//Enthalpy in kJ/kg t14=111.37//Temperature in degree C h14=467//Enthalpy in kJ/kg h13=h12//Enthalpy in kJ/kg h14=h13//Enthalpy in kJ/kg h15=h14//Enthalpy in kJ/kg h16=561.47//Enthalpy in kJ/kg h17=h16//Enthalpy in kJ/kg h18=640.23//Enthalpy in kJ/kg h19=h18+0.001*(p1-pip(2))*100//Enthalpy in kJ/kg h20=762.8//Enthalpy in kJ/kg h21=h20//Enthalpy in kJ/kg h22=1154.23//Enthalpy in kJ/kg h23=h22//Enthalpy in kJ/kg m1=((h23-h21)/(h2-h22))//Mass in kg m2=((h21-h19)-(m1*(h22-h20)))/(h5-h20)//Mass in kg m3=(((1-m1-m2)*(h18-h17))-((m1+m2)*(h20-h18)))/(h6-h18+h18-h17)//Mass in kg m4=((1-m1-m2-m3)*(h17-h15))/(h7-h16)//Mass in kg m5=(((1-m1-m2-m3-m4)*(h14-h11))-(m4*(h16-h12)))/(h8-h12+h14-h11)//Mass in kg WT=(h1-h2)+(1-m1)*(h2-h3)+(1-m1)*(h4-h5)+(1-m1-m2)*(h5-h6)+(1-m1-m2-m3)*(h6-h7)+(1-m1-m2-m3-m4)*(h7-h8)+(1-m1-m2-m3-m4-m5)*(h8-h9)//Workdone by turbine in kJ/kg Wp=(0.5+14.5+0.15)//Workdone in kJ/kg Wnet=(WT-Wp)//Net workdone in kJ/kg Q1=(h1-h23)+(1-m1)*(h4-h3)//Heat supplied in kJ/kg ncy=(Wnet/Q1)*100//Cycle efficiency in percent t23=264//Temperature in degree C sr=(3600/Wnet)//Steam rate in kJ/kWh hr=((Q1/Wnet)*3600)//Heat rate in kJ/kWh P=((Wnet*m)/3600)/10^3//Power output in MW //Output printf('(a) The cycle efficiency is %3.2f percent \n (b) The feedwater temperature is %i degree C \n (c) The steam rate is %3.2f kJ/kWh \n (d) The heat rate is %3.0f kJ/kWh \n (e) The quality of steam at turbine exhaust is %3.4f \n (f) The power output is %3.2f MW',ncy,t23,sr,hr,x9,P)
423300ddd3af76c091b8ef75d1ca15ed9b2cf3b4
449d555969bfd7befe906877abab098c6e63a0e8
/2252/CH20/EX20.5/Ex20_5.sce
28dc15940062aa164b6af5409a44305e98df1f00
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,110
sce
Ex20_5.sce
//calculating power required at the driving shaft at full load Po=30D+3 //output power of dc shunt generator Wi=1300 //mechanical and iron losses Rsh=125 //shunt field resistance V=250 //terminal voltage Ra=.13 //armature resistance Ish=V/Rsh Wcu=V*Ish //shunt field copper losses Wc=Wi+Wcu //constant losses of generator Il=Po/V Ia=Il+Ish Wcu=Ia^2*Ra //armature copper loss Wt=Wc+Wcu //total losses Pi=Po+Wt mprintf("Power required at the driving shaft at full load=%f kW\n", Pi/10^3) //calculating efficiency at full load e=Po/Pi*100 mprintf("Efficiency at full load=%f percent\n", e) //calculating efficiency at half load Il=(Po/2)/V Ia=Il+Ish Wcu=Ia^2*Ra //copper losses Wt=Wc+Wcu //total losses e=(Po/2)/(Po/2+Wt)*100 mprintf("Efficiency at half load=%f percent\n", e) //at maximum efficiency Wcu=Wc //copper losses Ia=sqrt(Wcu/Ra) Il=Ia-Ish mprintf("Power output at max efficiency=%f kW\n",Il*V/10^3) //calculating max efficiency e_max=Il*V/(Il*V+2*Wc)*100 mprintf("Max efficiency=%f percent", e_max) //answer vary from the textbook due to round off error
9290a78bb4c4debde4702563d4b93f1173be0531
f23e565144f1b0f63c7b613c0f549944d425a073
/Cours/TP_INFO/TP_noteD3/TD4-picardlametmaëlle..sce
f3706c01326c80b29a13742e722ec65158a722fa
[]
no_license
Antoine-Gerard/Valar-Morghulis
c45766f03898241bd9c424256744b5ffa16dd82c
796363bfbc6f2e3249c90f1762e041ff5a4e705a
refs/heads/master
2021-08-31T06:06:55.296982
2017-12-20T13:54:33
2017-12-20T13:54:33
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,075
sce
TD4-picardlametmaëlle..sce
//Picard Lamet Maëlle //Exercie A vo = zeros(50,1) v1 = 10*ones(50,1) z=0:0.3:10 v2 = z v5 = linspace(-3, 7, 50) v6=(2).^(1:25) //Exercice B clear() function s=f(x) s=(1+x).*sin(%pi *x); endfunction x=linspace(-2, 2, 100); plot2d(x, f(x), style=[color("purple")]) function r=P1(x) r=%pi.*x endfunction plot2d(x,P1(x), style=[color("blue")]) function t=P2(x) t=%pi.*x+%pi.*x.^2 endfunction plot2d(x, P2(x), style=[color("pink")]) //Exercice C clear() function r= G(t,y) r=(y./t)+t.*log(t) endfunction u = 1 a= 1 t = linspace(1, 4, 100) y = ode("rk", u, a, t, G) subplot(2,2,1); plot2d(t, y, style=[color("green")]) function r= G(t,y) r=(y./t)+t.*log(t) endfunction u = -2 a= 1 t = linspace(1, 4, 100) y = ode("rk", u, a, t, G) subplot(2,2,1); plot2d(t, y, style=[color("red")]) function r= G(t,y) r=(y./t)+t.*log(t) endfunction u = 2 a= 1 t = linspace(1, 4, 100) y = ode("rk", u, a, t, G) subplot(2,2,1); plot2d(t, y, style=[color("grey")]) //je c'est qu'il n'est pas nécessaire de tout réecrir à chaque fois et qu'on peut juste changer le u
78bebede167193a823edf358e084de080a9c074e
449d555969bfd7befe906877abab098c6e63a0e8
/812/CH6/EX6.01/6_01.sce
d0d412fd510aca417ed424603e6027db11d7da18
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
321
sce
6_01.sce
//Volume flow rate// pathname=get_absolute_file_path('06.01.sce') filename=pathname+filesep()+'06.01-data.sci' exec(filename) //Velocity of flow(in m/sec): V=sqrt(dw/log((r+w)/r)*g/da*p/1000) //Volume flow rate(in m^3/sec): Q=V*(d*w) printf("\n\nRESULTS\n\n") printf("\n\nVolume flow rate: %.3f m^3/sec\n\n",Q)
f7cb2597ab440a9a6bc8296e0b83dae0dacd5329
3c47dba28e5d43bda9b77dca3b741855c25d4802
/microdaq/macros/microdaq_blocks/mdaq_dio_set.sci
c437eb69f3481b37801223de77de675e6291fa47
[ "BSD-3-Clause" ]
permissive
microdaq/Scilab
78dd3b4a891e39ec20ebc4e9b77572fd12c90947
ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf
refs/heads/master
2021-09-29T11:55:21.963637
2019-10-18T09:47:29
2019-10-18T09:47:29
35,049,912
6
3
BSD-3-Clause
2019-10-18T09:47:30
2015-05-04T17:48:48
Scilab
UTF-8
Scilab
false
false
2,830
sci
mdaq_dio_set.sci
function [x,y,typ] = mdaq_dio_set(job,arg1,arg2) dio_set_desc = ["This block sets MicroDAQ DIO output state."; ""; "DIO pin: 1...32"; ""; "Set block parameters:"]; x=[];y=[];typ=[]; select job case 'set' then x=arg1 model=arg1.model; graphics=arg1.graphics; exprs=graphics.exprs; while %t do try [ok,dio_pin,dio_init,dio_term,exprs]=.. scicos_getvalue(dio_set_desc,.. ['DIO pin:'; 'DIO init state:'; 'DIO end state:'],.. list('vec',1,'vec',1,'vec',1),exprs) catch [ok,dio_pin,dio_init,dio_term,exprs]=.. scicos_getvalue(dio_set_desc,.. ['DIO pin number:'; 'DIO init state:'; 'DIO end state:'],.. list('vec',1,'vec',1,'vec',1),exprs) end; if ~ok then break end if dio_pin > 32 | dio_pin < 1 then ok = %f; message("Wrong DIO pin selected - use value from 1 to 32!"); end if dio_init > 1 | dio_init < 0 then ok = %f; message("Wrong DIO init value, use 0 or 1!"); end if dio_term > 1 | dio_term < 0 then ok = %f; message("Wrong DIO end value - use 0 or 1!"); end if ok then [model,graphics,ok] = check_io(model,graphics, 1, [], 1, []); graphics.exprs = exprs; model.rpar = []; model.ipar = [dio_pin;dio_init;dio_term]; model.dstate = []; x.graphics = graphics; x.model = model; x.graphics.style=["mdaq_dio_set;blockWithLabel;verticalLabelPosition=center;displayedLabel=DIO%1$s;fontColor=#5f5f5f"] break end end case 'define' then dio_pin = 1; dio_init = 0; dio_term = 0; model=scicos_model() model.sim=list('mdaq_dio_set_sim',5) model.in =1 model.in2=1 model.intyp=1 model.out=[] model.evtin=1 model.rpar=[]; model.ipar=[dio_pin;dio_init;dio_term] model.dstate=[]; model.blocktype='d' model.dep_ut=[%t %f] exprs=[sci2exp(dio_pin);sci2exp(dio_init);sci2exp(dio_term)] gr_i=['xstringb(orig(1),orig(2),[''DIO'' ; string(dio_pin)],sz(1),sz(2),''fill'');'] x=standard_define([4 3],model,exprs,gr_i) x.graphics.in_implicit=[]; x.graphics.exprs=exprs; x.graphics.style=["blockWithLabel;verticalLabelPosition=center;displayedLabel=DIO%1$s;fontColor=#5f5f5f"] end endfunction
e9f80a46730f3a0f92327e3968df21cd9abb8885
b7339a0cd7d82e85754b81dc8ba7659c293a76e6
/TP0/test2.sce
db1dae52f61c4b33acde507962ca510a6d569db8
[]
no_license
EzequielPostan/Machine-Learning
f9a7079b93229579fcd1064acace846cf55bd064
a43c0d982a17df5ff9460585318d9fcdc686bd9d
refs/heads/master
2020-06-04T22:48:01.153166
2015-04-06T15:32:19
2015-04-06T15:32:19
33,487,121
0
0
null
null
null
null
UTF-8
Scilab
false
false
648
sce
test2.sce
// test2.sce // Código Scilab para corrobarar los resultados de los ejercicios a) y b) // con un test de dimensión 4 y 2000 casos de prueba (n=2000 d=4) // // Si se desea tenes más casos de prueba, modificar el valor de n_div_2 // (el mismo debe ser igual a la cantidad de datos de cada clase, n/2) // clear() n_div_2 = 1000 [fd,err] = mopen("ejercicioB.data",'r') for i=1:n_div_2 [n,A(i,1),A(i,2),A(i,3),A(i,4),A(i,5)] = mfscanf(fd,"%f,%f,%f,%f,%d"); end for i=1:n_div_2 [n,B(i,1),B(i,2),B(i,3),B(i,4),B(i,5)] = mfscanf(fd,"%f,%f,%f,%f,%d"); end mclose(fd) length(A) length(B) mean(A,'r') stdev(A,'r') mean(B,'r') stdev(B,'r')
3d398c24dab3490d9effed07733d77a851158adc
e806e966b06a53388fb300d89534354b222c2cad
/macros/houghlinesp.sci
81007aa8eac0cc2f04ff7b70fa897dec66e19c07
[]
no_license
gursimarsingh/FOSSEE_Image_Processing_Toolbox
76c9d524193ade302c48efe11936fe640f4de200
a6df67e8bcd5159cde27556f4f6a315f8dc2215f
refs/heads/master
2021-01-22T02:08:45.870957
2017-01-15T21:26:17
2017-01-15T21:26:17
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
227
sci
houghlinesp.sci
function output = houghlinesp(image, rho, theta, threshold, minLineLength, maxLineGap) image_list = mattolist(image) output = opencv_houghlinesp(image_list, rho, theta, threshold, minLineLength, maxLineGap) endfunction
b25f924bf01eeb2f9cf9a39f8de7a3c221d6c174
449d555969bfd7befe906877abab098c6e63a0e8
/2126/CH1/EX1.13/13.sce
171443b0673724947c83cf3245e373a06513a48c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
13.sce
clc clear //Input data P=96 //Pressure in kPa T=27+273 //Temperature in K dP=32 //Difference between pivot and static pressure k=1.4 //Adiabatic Constant R=287 //Specific Gas constant in J/kg-K //Calculation d=(P*10^3)/(R*T) //Density in kg/m^3 Ci=sqrt((2*(dP*10^3))/d) //Velocity of incompressible flow in m/s pr=(dP)/P //Pressure ratio p1=pr+1 //Stagnation to static pressure ratio M=sqrt(((p1^((k-1)/k)-1)*2)/(k-1)) //Mach number Cc=M*sqrt(k*R*T) //Velocity of compressible flow in m/s //Output printf('(A)Air velocity in incompressible flow is %3.1f m/s\n (B)Air velocity if flow is compressible is %3.3f m/s',Ci,Cc)
56876f9ddc779aedcbe2d627a126c2f8e0900af6
3b9a879e67cbab4a5a4a5081e2e9c38b3e27a8cc
/Área 1/Aula 4/Metodo_Newton_questionario_9.sce
c93c5f87171afb7739be9bdb8fa87bbebd4b1abc
[ "MIT" ]
permissive
JPedroSilveira/numerical-calculus-with-scilab
32e04e9b1234a0a82275f86aa2d6416198fa6c81
190bc816dfaa73ec2efe289c34baf21191944a53
refs/heads/master
2023-05-10T22:39:02.550321
2021-05-11T17:17:09
2021-05-11T17:17:09
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
98
sce
Metodo_Newton_questionario_9.sce
x = 4 format(25) for i = 1:10 x = x - ((x^7 - 11*x^4 + 11) / (7*x^6-44*x^3)) disp(x) end
a1ab3f02dc7abc8ad82d53859cf23831df2c3e44
1db0a7f58e484c067efa384b541cecee64d190ab
/macros/stmcb.sci
9cf605789b33e307ac21536f32dcb24791c9ed88
[]
no_license
sonusharma55/Signal-Toolbox
3eff678d177633ee8aadca7fb9782b8bd7c2f1ce
89bfeffefc89137fe3c266d3a3e746a749bbc1e9
refs/heads/master
2020-03-22T21:37:22.593805
2018-07-12T12:35:54
2018-07-12T12:35:54
140,701,211
2
0
null
null
null
null
UTF-8
Scilab
false
false
2,891
sci
stmcb.sci
//Compute linear model using Steiglitz-McBride iteration <<<<<<< HEAD ======= >>>>>>> 6bbb00d0f0128381ee95194cf7d008fb6504de7d //calling syntax //[b,a] = stmcb(h,nb,na) //[b,a] = stmcb(y,x,nb,na) //[b,a] = stmcb(h,nb,na,niter) //[b,a] = stmcb(y,x,nb,na,niter) //[b,a] = stmcb(h,nb,na,niter,ai) //[b,a] = stmcb(y,x,nb,na,niter,ai) <<<<<<< HEAD //Parameters : //b,a : coefficients of the system function,nb is number of zeros and na is number of poles ======= //b,a : coefficients of the system b(z)/a(z) >>>>>>> 6bbb00d0f0128381ee95194cf7d008fb6504de7d //h:impulse response of the system //x,y: input and output of same length given to the system //niter: no of iterations //ai:initial estimate of the denominator coefficients //Accepts only real i/ps , imaginary i/ps are not accepted due to limitations of the 'filter' function in Scilab <<<<<<< HEAD //Example //h = fscanfMat("macros/stmcb_h_data.txt"); //stmcb(h,4,4) //Output : // ans = // // 0.0003 0.0010284 0.0147159 - 0.0077914 0.0316548 ======= >>>>>>> 6bbb00d0f0128381ee95194cf7d008fb6504de7d function [b,a] = stmcb( x, u_in, q, p, niter, a_in ) narginchk(3, 6, argn(2)); //modify stmcb to handle exceptions when i/p is char if(type(x)==10 | type(u_in)==10) then error("Input in stmcb must be double/single, instead it was char"); end if length(u_in) == 1 then if argn(2) == 3 then niter = 5; p = q; q = u_in; a_in = prony(x, 0, p); elseif argn(2) == 4 niter = p; p = q; q = u_in; a_in = prony(x, 0, p); elseif argn(2) == 5 a_in = niter; niter = p; p = q; q = u_in; end [x_row, x_col] = size(x); u_in = zeros(x_row, x_col); u_in(1) = 1; else if length(u_in) ~= length(x) then error('Input Signal x and Output Signal Y must have the same length'); end if argn(2) < 6 then [b, a_in] = prony(x, 0, p); end if argn(2) < 5 then niter = 5; end end a = a_in; N = length(x); for i = 1:niter u = filter(1, a, x); v = filter(1, a, u_in); C1 = convmtx(u(:),p+1); C2 = convmtx(v(:),q+1); T = [ -C1(1:N,:) C2(1:N,:)]; c = T(:,2:p+q+2)\(-T(:,1)); a = [1; c(1:p)]; b = c(p+1:p+q+1); end a = a.'; b = b.'; endfunction function narginchk(min_argin, max_argin, num_of_argin) if num_of_argin < min_argin then error('Not enough input arguments') end if num_of_argin > max_argin then error('Too many input arguments') end endfunction
aa710ba9466bd58a2efcc798f0e59c686bc215e1
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/RP45.prev.tst
a099e258c6b21f1e173efc20803c634697bd9e71
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
4,972
tst
RP45.prev.tst
# y^5 = m^2 + n^2 ? 0 0 1 1 2 2^5 3 3^5 4 2^10 5 5^5 = (2*5)^2 + (5*11)^2 = (5^2)^2 + (2*5^2)^2 = (2*19)^2 + (41)^2 proper representation by 38^2 + 41^2 [3] 6 2^5*3^5 7 7^5 8 2^15 9 3^10 10 2^5*5^5 = (2^2*3)^2 + (2^2*79)^2 = (2^2*5^2)^2 + (2^2*3*5^2)^2 = (2^2*3^2*5)^2 + (2^2*5*13)^2 [3] 11 11^5 12 2^10*3^5 13 13^5 = (3^2*13)^2 + (2*13*23)^2 = (2*61)^2 + (3*199)^2 proper representation by 122^2 + 597^2 = (2*13^2)^2 + (3*13^2)^2 [3] 14 2^5*7^5 15 3^5*5^5 16 2^20 17 17^5 = (17^2)^2 + (2^2*17^2)^2 = (2^2*101)^2 + (19*59)^2 proper representation by 404^2 + 1121^2 = (17*47)^2 + (2^2*13*17)^2 [3] 18 2^5*3^10 19 19^5 20 2^10*5^5 = (2^6*5)^2 + (2^5*5*11)^2 = (2^5*5^2)^2 + (2^6*5^2)^2 = (2^6*19)^2 + (2^5*41)^2 [3] 21 3^5*7^5 22 2^5*11^5 23 23^5 24 2^15*3^5 25 5^10 = (3*79)^2 + (2^2*19*41)^2 proper representation by 237^2 + 3116^2 = (5^3*7)^2 + (2^3*3*5^3)^2 = (2^2*5^2*11)^2 + (3^2*5^2*13)^2 = (2^4*3*5*7)^2 + (5*17*31)^2 = (3*5^4)^2 + (2^2*5^4)^2 [5] 26 2^5*13^5 = (2^2*13^2)^2 + (2^2*5*13^2)^2 = (2^2*5^2*19)^2 + (2^2*719)^2 = (2^2*13*37)^2 + (2^2*5*11*13)^2 [3] 27 3^15 28 2^10*7^5 29 29^5 = (5^2*59)^2 + (2*2141)^2 proper representation by 1475^2 + 4282^2 = (2*29^2)^2 + (5*29^2)^2 = (5*13*29)^2 + (2*29*71)^2 [3] 30 2^5*3^5*5^5 31 31^5 32 2^25 33 3^5*11^5 34 2^5*17^5 = (2^2*5*17)^2 + (2^2*3^2*11*17)^2 = (2^2*3*239)^2 + (2^2*5^2*61)^2 = (2^2*3*17^2)^2 + (2^2*5*17^2)^2 [3] 35 5^5*7^5 36 2^10*3^10 37 37^5 = (37^2)^2 + (2*3*37^2)^2 = (37*107)^2 + (2*3^2*11*37)^2 = (2*3*941)^2 + (6121)^2 proper representation by 5646^2 + 6121^2 [3] 38 2^5*19^5 39 3^5*13^5 40 2^15*5^5 = (2^7*3)^2 + (2^7*79)^2 = (2^7*5^2)^2 + (2^7*3*5^2)^2 = (2^7*3^2*5)^2 + (2^7*5*13)^2 [3] 41 41^5 = (2^2*619)^2 + (5^2*419)^2 proper representation by 2476^2 + 10475^2 = (5*23*41)^2 + (2^2*41*59)^2 = (2^2*41^2)^2 + (5*41^2)^2 [3] 42 2^5*3^5*7^5 43 43^5 44 2^10*11^5 45 3^10*5^5 = (2*3^5*5)^2 + (3^5*5*11)^2 = (3^5*5^2)^2 + (2*3^5*5^2)^2 = (2*3^5*19)^2 + (3^5*41)^2 [3] 46 2^5*23^5 47 47^5 48 2^20*3^5 49 7^10 50 2^5*5^10 = (2^2*5^4)^2 + (2^2*5^4*7)^2 = (2^2*5*191)^2 + (2^2*5*863)^2 = (2^2*5^2*73)^2 + (2^2*5^2*7*23)^2 = (2^2*5^3*17)^2 + (2^2*5^3*31)^2 = (2^2*2879)^2 + (2^2*7*479)^2 [5] 51 3^5*17^5 52 2^10*13^5 = (2^5*3^2*13)^2 + (2^6*13*23)^2 = (2^6*61)^2 + (2^5*3*199)^2 = (2^6*13^2)^2 + (2^5*3*13^2)^2 [3] 53 53^5 = (7*521)^2 + (2*10061)^2 proper representation by 3647^2 + 20122^2 = (2*53^2)^2 + (7*53^2)^2 = (7*37*53)^2 + (2*11*13*53)^2 [3] 54 2^5*3^15 55 5^5*11^5 56 2^15*7^5 57 3^5*19^5 58 2^5*29^5 = (2^2*7*11*29)^2 + (2^2*3^2*23*29)^2 = (2^2*3*29^2)^2 + (2^2*7*29^2)^2 = (2^2*7*401)^2 + (2^2*3*19*101)^2 [3] 59 59^5 60 2^10*3^5*5^5 61 61^5 = (5^2*379)^2 + (2*3*19*241)^2 proper representation by 9475^2 + 27474^2 = (2*3^2*13*61)^2 + (5*61*83)^2 = (5*61^2)^2 + (2*3*61^2)^2 [3] 62 2^5*31^5 63 3^10*7^5
d1c78bc7e454708f6aad67f47379bda585489df3
449d555969bfd7befe906877abab098c6e63a0e8
/1205/CH8/EX8.8/S_8_8.sce
35e10a71cc6a934a8714657752e79c3b6ff8626c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
700
sce
S_8_8.sce
clc; //Given T2=3000;//N, Tension from side 2 us=0.25;// Coeffiecient of static friction between pulley and belt uk=0.20;//Co=efficient of kinetic friction between pulley and belt theta=60;//degree theta=theta*%pi/180;//rad, conversion into radian r=25;//mm, radius of shaft r1=200;//mm, radius of machine tool //Pulley B b=%pi-theta;//rad, angle of contact, //By equation 8.14 T1=T2/(exp(us*b));//N, Tension from side 1 //Pulley A //Aumming moment about A MA=T2*r1-T1*r1;//N.mm, Couple MA applied to pulley which is equal and opposite to torque MA=MA/1000;//N.m , conversion to N.m printf("The largest torque which can be exerted by belt on pulley A is MA= %0.0f N.m\n",MA);
4533c8cb6800860812ecac51cff44ce8c37eaa36
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/High & Low Ground Smoothness.sce
8651369e4740a2d13be6242ef8025006ad98a84a
[]
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
244,834
sce
High & Low Ground Smoothness.sce
Name=High & Low Ground Smoothness PlayerCharacters=HLGS Challenger BotCharacters=HLGS Bot Rotation.rot IsChallenge=true Timelimit=300.0 PlayerProfile=HLGS Challenger AddedBots=HLGS Bot Rotation.rot PlayerMaxLives=0 BotMaxLives=17 PlayerTeam=1 BotTeams=2 MapName=sphere_field_1spawn_offset.map MapScale=1.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=1.0 ScorePerDamage=0.0 ScorePerKill=0.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=10.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=MCA-WIP, Tracking WeaponHeroTag=Fully-auto DifficultyTag=2 AuthorsTag=pleasewait BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=false BlockFCT=true Description=Tracking against high/low ground. GameVersion=1.0.8.0 ScorePerDistance=0.0 MBSEnable=false MBSTime1=0.25 MBSTime2=0.5 MBSTime3=0.75 MBSTime1Mult=1.0 MBSTime2Mult=2.0 MBSTime3Mult=3.0 MBSFBInstead=false MBSRequireEnemyAlive=false [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Bot Profile] Name=HLGS Target + 00 DodgeProfileNames=HLGS Dodging DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=60.0 UseWeapons=false CharacterProfile=HLGS Target + 00 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=HLGS Target - 01 DodgeProfileNames=HLGS Dodging DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=60.0 UseWeapons=false CharacterProfile=HLGS Target - 01 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=HLGS Target - 02 DodgeProfileNames=HLGS Dodging DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=60.0 UseWeapons=false CharacterProfile=HLGS Target - 02 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=HLGS Target - 03 DodgeProfileNames=HLGS Dodging DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=60.0 UseWeapons=false CharacterProfile=HLGS Target - 03 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=HLGS Target - 04 DodgeProfileNames=HLGS Dodging DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=60.0 UseWeapons=false CharacterProfile=HLGS Target - 04 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=HLGS Target + 01 DodgeProfileNames=HLGS Dodging DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=60.0 UseWeapons=false CharacterProfile=HLGS Target + 01 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=HLGS Target + 02 DodgeProfileNames=HLGS Dodging DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=60.0 UseWeapons=false CharacterProfile=HLGS Target + 02 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=HLGS Target + 03 DodgeProfileNames=HLGS High Dodging DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=60.0 UseWeapons=false CharacterProfile=HLGS Target + 03 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=HLGS Target + 04 DodgeProfileNames=HLGS High Dodging DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=60.0 UseWeapons=false CharacterProfile=HLGS Target + 04 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Rotation Profile] Name=HLGS Bot Rotation ProfileNames=HLGS Target + 00;HLGS Target - 01;HLGS Target - 02;HLGS Target - 03;HLGS Target - 04;HLGS Target - 03;HLGS Target - 02;HLGS Target - 01;HLGS Target + 00;HLGS Target + 01;HLGS Target + 02;HLGS Target + 03;HLGS Target + 04;HLGS Target + 03;HLGS Target + 02;HLGS Target + 01 ProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 Randomized=false [Character Profile] Name=HLGS Challenger MaxHealth=100.0 WeaponProfileNames=HLGS Fully-auto;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=0.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=0.0 Gravity=0.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=72.0 MainBBRadius=12.0 MainBBHasHead=false MainBBHeadRadius=10.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=72.0 ProjBBRadius=12.0 ProjBBHasHead=false ProjBBHeadRadius=10.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=40.0 BlockSpawnDistance=4096.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=true [Character Profile] Name=HLGS Target + 00 MaxHealth=600.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.5 MaxRespawnDelay=1.5 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=320.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=1.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=69.0 MainBBRadius=5.0 MainBBHasHead=true MainBBHeadRadius=5.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=69.0 ProjBBRadius=5.0 ProjBBHasHead=true ProjBBHeadRadius=5.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=HLGS Target - 01 MaxHealth=600.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.5 MaxRespawnDelay=1.5 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=302.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=1.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=69.0 MainBBRadius=5.0 MainBBHasHead=true MainBBHeadRadius=5.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=69.0 ProjBBRadius=5.0 ProjBBHasHead=true ProjBBHeadRadius=5.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=-175.0 SpawnXOffset=0.0 SpawnYOffset=31.0 InvertBlockedSpawn=false [Character Profile] Name=HLGS Target - 02 MaxHealth=600.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.5 MaxRespawnDelay=1.5 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=251.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=1.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=69.0 MainBBRadius=5.0 MainBBHasHead=true MainBBHeadRadius=5.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=69.0 ProjBBRadius=5.0 ProjBBHasHead=true ProjBBHeadRadius=5.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=-345.0 SpawnXOffset=0.0 SpawnYOffset=120.0 InvertBlockedSpawn=false [Character Profile] Name=HLGS Target - 03 MaxHealth=600.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.5 MaxRespawnDelay=1.5 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=174.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=1.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=69.0 MainBBRadius=5.0 MainBBHasHead=true MainBBHeadRadius=5.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=69.0 ProjBBRadius=5.0 ProjBBHasHead=true ProjBBHeadRadius=5.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=-459.0 SpawnXOffset=0.0 SpawnYOffset=256.0 InvertBlockedSpawn=false [Character Profile] Name=HLGS Target - 04 MaxHealth=600.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.5 MaxRespawnDelay=1.5 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=78.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=1.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=69.0 MainBBRadius=5.0 MainBBHasHead=true MainBBHeadRadius=5.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=69.0 ProjBBRadius=5.0 ProjBBHasHead=true ProjBBHeadRadius=5.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=-520.0 SpawnXOffset=0.0 SpawnYOffset=423.0 InvertBlockedSpawn=false [Character Profile] Name=HLGS Target + 01 MaxHealth=600.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.5 MaxRespawnDelay=1.5 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=302.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=1.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=69.0 MainBBRadius=5.0 MainBBHasHead=true MainBBHeadRadius=5.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=69.0 ProjBBRadius=5.0 ProjBBHasHead=true ProjBBHeadRadius=5.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=175.0 SpawnXOffset=0.0 SpawnYOffset=31.0 InvertBlockedSpawn=false [Character Profile] Name=HLGS Target + 02 MaxHealth=600.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.5 MaxRespawnDelay=1.5 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=251.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=1.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=69.0 MainBBRadius=5.0 MainBBHasHead=true MainBBHeadRadius=5.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=69.0 ProjBBRadius=5.0 ProjBBHasHead=true ProjBBHeadRadius=5.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=345.0 SpawnXOffset=0.0 SpawnYOffset=120.0 InvertBlockedSpawn=false [Character Profile] Name=HLGS Target + 03 MaxHealth=600.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.5 MaxRespawnDelay=1.5 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=174.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=1.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=69.0 MainBBRadius=5.0 MainBBHasHead=true MainBBHeadRadius=5.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=69.0 ProjBBRadius=5.0 ProjBBHasHead=true ProjBBHeadRadius=5.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=459.0 SpawnXOffset=0.0 SpawnYOffset=256.0 InvertBlockedSpawn=false [Character Profile] Name=HLGS Target + 04 MaxHealth=600.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.5 MaxRespawnDelay=1.5 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=78.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=1.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=69.0 MainBBRadius=5.0 MainBBHasHead=true MainBBHeadRadius=5.0 MainBBHeadOffset=-2.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=69.0 ProjBBRadius=5.0 ProjBBHasHead=true ProjBBHeadRadius=5.0 ProjBBHeadOffset=-2.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=520.0 SpawnXOffset=0.0 SpawnYOffset=423.0 InvertBlockedSpawn=false [Dodge Profile] Name=HLGS Dodging MaxTargetDistance=566.0 MinTargetDistance=556.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=2.25 MaxLRTimeChange=2.25 MinFBTimeChange=1.2 MaxFBTimeChange=1.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=2.0 MaxProfileChangeTime=2.5 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.0 BlockedMovementReactionMin=0.1 BlockedMovementReactionMax=0.1 [Dodge Profile] Name=HLGS High Dodging MaxTargetDistance=526.0 MinTargetDistance=516.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=2.25 MaxLRTimeChange=2.25 MinFBTimeChange=1.2 MaxFBTimeChange=1.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=2.0 MaxProfileChangeTime=2.5 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.0 BlockedMovementReactionMin=0.1 BlockedMovementReactionMax=0.1 [Weapon Profile] Name=HLGS Fully-auto Type=Hitscan ShotsPerClick=1 DamagePerShot=6.0 KnockbackFactor=0.0 TimeBetweenShots=0.05 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=0 AmmoPerShot=1 ReloadTimeFromEmpty=1.0 ReloadTimeFromPartial=1.0 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=1.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=Gunshot HitParticleEffect=Gunshot BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=true ADSZoomDelay=0.0 ADSZoomSensFactor=1.0 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.001 HitSoundCooldown=0.001 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=true AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true 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 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=true FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=50 ADSFOVOverride=30.0 ADSFOVScale=Vertical (1:1) ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end UInt8 playersMin 1 UInt8 playersMax 16 brush vertices 128.000000 256.000000 384.000000 384.000000 256.000000 384.000000 384.000000 256.000000 128.000000 128.000000 256.000000 128.000000 128.000000 240.000000 384.000000 384.000000 240.000000 384.000000 384.000000 240.000000 128.000000 128.000000 240.000000 128.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 128.000000 400.000000 384.000000 384.000000 400.000000 384.000000 384.000000 400.000000 128.000000 128.000000 400.000000 128.000000 128.000000 384.000000 384.000000 384.000000 384.000000 384.000000 384.000000 384.000000 128.000000 128.000000 384.000000 128.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 384.000000 384.000000 384.000000 400.000000 384.000000 384.000000 400.000000 384.000000 128.000000 384.000000 384.000000 128.000000 384.000000 256.000000 384.000000 400.000000 256.000000 384.000000 400.000000 256.000000 128.000000 384.000000 256.000000 128.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 128.000000 384.000000 128.000000 384.000000 384.000000 128.000000 384.000000 384.000000 112.000000 128.000000 384.000000 112.000000 128.000000 256.000000 128.000000 384.000000 256.000000 128.000000 384.000000 256.000000 112.000000 128.000000 256.000000 112.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 128.000000 384.000000 400.000000 384.000000 384.000000 400.000000 384.000000 384.000000 384.000000 128.000000 384.000000 384.000000 128.000000 256.000000 400.000000 384.000000 256.000000 400.000000 384.000000 256.000000 384.000000 128.000000 256.000000 384.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 112.000000 384.000000 384.000000 128.000000 384.000000 384.000000 128.000000 384.000000 128.000000 112.000000 384.000000 128.000000 112.000000 256.000000 384.000000 128.000000 256.000000 384.000000 128.000000 256.000000 128.000000 112.000000 256.000000 128.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 175.249649 760.000000 452.499908 60.499928 760.000000 337.749756 168.764282 760.000000 468.156708 44.843082 920.000000 344.234924 168.764282 920.000000 468.156708 44.843082 760.000000 344.234924 60.499928 920.000000 337.749756 175.249649 920.000000 452.499908 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 60.499928 760.000000 337.749756 60.500122 760.000000 176.249634 44.843082 760.000000 344.234924 44.843262 920.000000 169.764282 44.843082 920.000000 344.234924 44.843262 760.000000 169.764282 60.500122 920.000000 176.249634 60.499928 920.000000 337.749756 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 brush vertices 60.500122 760.000000 176.249634 175.250244 760.000000 61.499878 44.843262 760.000000 169.764282 168.765076 920.000000 45.843018 44.843262 920.000000 169.764282 168.765076 760.000000 45.843018 175.250244 920.000000 61.499878 60.500122 920.000000 176.249634 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 175.250244 760.000000 61.499878 336.750366 760.000000 61.500122 168.765076 760.000000 45.843018 343.235718 920.000000 45.843262 168.765076 920.000000 45.843018 343.235718 760.000000 45.843262 336.750366 920.000000 61.500122 175.250244 920.000000 61.499878 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 336.750366 760.000000 61.500122 451.500061 760.000000 176.250244 343.235718 760.000000 45.843262 467.156921 920.000000 169.765137 343.235718 920.000000 45.843262 467.156921 760.000000 169.765137 451.500061 920.000000 176.250244 336.750366 920.000000 61.500122 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 451.500061 760.000000 176.250244 451.499878 760.000000 337.750366 467.156921 760.000000 169.765137 467.156738 920.000000 344.235718 467.156921 920.000000 169.765137 467.156738 760.000000 344.235718 451.499878 920.000000 337.750366 451.500061 920.000000 176.250244 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 451.499878 760.000000 337.750366 336.749756 760.000000 452.500061 467.156738 760.000000 344.235718 343.234924 920.000000 468.156921 467.156738 920.000000 344.235718 343.234924 760.000000 468.156921 336.749756 920.000000 452.500061 451.499878 920.000000 337.750366 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 201.411682 760.000000 279.382477 201.411682 760.000000 234.617554 185.754807 760.000000 285.867676 185.754822 920.000000 228.132202 185.754807 920.000000 285.867676 185.754822 760.000000 228.132202 201.411682 920.000000 234.617554 201.411682 920.000000 279.382477 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 201.411682 760.000000 234.617554 233.617554 760.000000 202.411621 185.754822 760.000000 228.132202 227.132324 920.000000 186.754761 185.754822 920.000000 228.132202 227.132324 760.000000 186.754761 233.617554 920.000000 202.411621 201.411682 920.000000 234.617554 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip brush vertices 233.617508 760.000000 311.588287 201.411682 760.000000 279.382477 227.132172 760.000000 327.245087 185.754807 920.000000 285.867676 227.132172 920.000000 327.245087 185.754807 760.000000 285.867676 201.411682 920.000000 279.382477 233.617508 920.000000 311.588287 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 227.132172 760.000000 327.245087 284.867676 760.000000 327.245178 233.617508 760.000000 311.588287 278.382446 920.000000 311.588318 233.617508 920.000000 311.588287 278.382446 760.000000 311.588318 284.867676 920.000000 327.245178 227.132172 920.000000 327.245087 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 310.588257 760.000000 279.382446 278.382446 760.000000 311.588318 326.245117 760.000000 285.867798 284.867676 920.000000 327.245178 326.245117 920.000000 285.867798 284.867676 760.000000 327.245178 278.382446 920.000000 311.588318 310.588257 920.000000 279.382446 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 310.588257 760.000000 234.617554 310.588257 760.000000 279.382446 326.245117 760.000000 228.132324 326.245117 920.000000 285.867798 326.245117 920.000000 228.132324 326.245117 760.000000 285.867798 310.588257 920.000000 279.382446 310.588257 920.000000 234.617554 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 278.382446 760.000000 202.411743 310.588257 760.000000 234.617554 284.867798 760.000000 186.754883 326.245117 920.000000 228.132324 284.867798 920.000000 186.754883 326.245117 760.000000 228.132324 310.588257 920.000000 234.617554 278.382446 920.000000 202.411743 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 185.754868 760.000000 285.867828 185.754700 760.000000 228.132324 60.499985 760.000000 337.749969 60.500000 776.000000 176.250000 60.499985 776.000000 337.749969 60.500000 760.000000 176.250000 185.754700 776.000000 228.132324 185.754868 776.000000 285.867828 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 185.754700 760.000000 228.132324 227.132202 760.000000 186.754883 60.500000 760.000000 176.250000 175.250000 776.000000 61.500000 60.500000 776.000000 176.250000 175.250000 760.000000 61.500000 227.132202 776.000000 186.754883 185.754700 776.000000 228.132324 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 227.132339 760.000000 327.245178 185.754868 760.000000 285.867828 175.249969 760.000000 452.499969 60.499985 776.000000 337.749969 175.249969 776.000000 452.499969 60.499985 760.000000 337.749969 185.754868 776.000000 285.867828 227.132339 776.000000 327.245178 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 284.867798 760.000000 327.245117 227.132339 760.000000 327.245178 336.750000 760.000000 452.500000 175.249969 776.000000 452.499969 336.750000 776.000000 452.500000 175.249969 760.000000 452.499969 227.132339 776.000000 327.245178 284.867798 776.000000 327.245117 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 227.132202 760.000000 186.754883 284.867676 760.000000 186.754761 175.250000 760.000000 61.500000 336.750000 776.000000 61.500000 175.250000 776.000000 61.500000 336.750000 760.000000 61.500000 284.867676 776.000000 186.754761 227.132202 776.000000 186.754883 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 284.867676 760.000000 186.754761 326.245056 760.000000 228.132202 336.750000 760.000000 61.500000 451.500000 776.000000 176.250000 336.750000 776.000000 61.500000 451.500000 760.000000 176.250000 326.245056 776.000000 228.132202 284.867676 776.000000 186.754761 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip brush vertices 233.617554 760.000000 202.411621 278.382446 760.000000 202.411743 227.132324 760.000000 186.754761 284.867798 920.000000 186.754883 227.132324 920.000000 186.754761 284.867798 760.000000 186.754883 278.382446 920.000000 202.411743 233.617554 920.000000 202.411621 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 326.245056 760.000000 228.132202 326.245178 760.000000 285.867676 451.500000 760.000000 176.250000 451.500000 776.000000 337.750000 451.500000 776.000000 176.250000 451.500000 760.000000 337.750000 326.245178 776.000000 285.867676 326.245056 776.000000 228.132202 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 326.245178 760.000000 285.867676 284.867798 760.000000 327.245117 451.500000 760.000000 337.750000 336.750000 776.000000 452.500000 451.500000 776.000000 337.750000 336.750000 760.000000 452.500000 284.867798 776.000000 327.245117 326.245178 776.000000 285.867676 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -118.575348 699.000000 411.924988 101.074158 699.000000 631.574829 -102.918465 699.000000 405.439758 107.559525 859.000000 615.918091 -102.918465 859.000000 405.439758 107.559525 699.000000 615.918091 101.074158 859.000000 631.574829 -118.575348 859.000000 411.924988 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices -102.918465 699.000000 405.439758 -102.918091 699.000000 108.559448 -118.575348 699.000000 411.924988 -118.574829 859.000000 102.074097 -118.575348 859.000000 411.924988 -118.574829 699.000000 102.074097 -102.918091 859.000000 108.559448 -102.918465 859.000000 405.439758 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices -102.918091 699.000000 108.559448 107.560181 699.000000 -101.918457 -118.574829 699.000000 102.074097 101.074951 859.000000 -117.575317 -118.574829 859.000000 102.074097 101.074951 699.000000 -117.575317 107.560181 859.000000 -101.918457 -102.918091 859.000000 108.559448 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 107.560181 699.000000 -101.918457 404.440491 699.000000 -101.918091 101.074951 699.000000 -117.575317 410.925842 859.000000 -117.574829 101.074951 859.000000 -117.575317 410.925842 699.000000 -117.574829 404.440491 859.000000 -101.918091 107.560181 859.000000 -101.918457 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 404.440491 699.000000 -101.918091 614.918457 699.000000 108.560303 410.925842 699.000000 -117.574829 630.575317 859.000000 102.075073 410.925842 859.000000 -117.574829 630.575317 699.000000 102.075073 614.918457 859.000000 108.560303 404.440491 859.000000 -101.918091 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 614.918457 699.000000 108.560303 614.918091 699.000000 405.440491 630.575317 699.000000 102.075073 630.574829 859.000000 411.925842 630.575317 859.000000 102.075073 630.574829 699.000000 411.925842 614.918091 859.000000 405.440491 614.918457 859.000000 108.560303 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 brush vertices 614.918091 699.000000 405.440491 404.439850 699.000000 615.918457 630.574829 699.000000 411.925842 410.925049 859.000000 631.575317 630.574829 859.000000 411.925842 410.925049 699.000000 631.575317 404.439850 859.000000 615.918457 614.918091 859.000000 405.440491 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 474.006470 699.000000 347.072632 346.072388 699.000000 475.006653 489.663269 699.000000 353.557983 352.557556 859.000000 490.663513 489.663269 859.000000 353.557983 352.557556 699.000000 490.663513 346.072388 859.000000 475.006653 474.006470 859.000000 347.072632 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 165.927338 699.000000 475.006439 37.993340 699.000000 347.072357 159.442001 699.000000 490.663269 22.336464 859.000000 353.557556 159.442001 859.000000 490.663269 22.336464 699.000000 353.557556 37.993340 859.000000 347.072357 165.927338 859.000000 475.006439 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 37.993340 699.000000 347.072357 37.993530 699.000000 166.927368 22.336464 699.000000 353.557556 22.336670 859.000000 160.442017 22.336464 859.000000 353.557556 22.336670 699.000000 160.442017 37.993530 859.000000 166.927368 37.993340 859.000000 347.072357 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 37.993530 699.000000 166.927368 165.927612 699.000000 38.993286 22.336670 699.000000 160.442017 159.442444 859.000000 23.336426 22.336670 859.000000 160.442017 159.442444 699.000000 23.336426 165.927612 859.000000 38.993286 37.993530 859.000000 166.927368 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 165.927612 699.000000 38.993286 346.072632 699.000000 38.993530 159.442444 699.000000 23.336426 352.557983 859.000000 23.336731 159.442444 859.000000 23.336426 352.557983 699.000000 23.336731 346.072632 859.000000 38.993530 165.927612 859.000000 38.993286 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 474.006653 699.000000 166.927612 474.006470 699.000000 347.072632 489.663483 699.000000 160.442505 489.663269 859.000000 353.557983 489.663483 859.000000 160.442505 489.663269 699.000000 353.557983 474.006470 859.000000 347.072632 474.006653 859.000000 166.927612 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 346.072632 699.000000 38.993530 474.006653 699.000000 166.927612 352.557983 699.000000 23.336731 489.663483 859.000000 160.442505 352.557983 859.000000 23.336731 489.663483 699.000000 160.442505 474.006653 859.000000 166.927612 346.072632 859.000000 38.993530 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 352.557800 699.000000 23.336426 489.663452 699.000000 160.442139 404.440125 699.000000 -101.918335 614.918335 715.000000 108.559937 404.440125 715.000000 -101.918335 614.918335 699.000000 108.559937 489.663452 715.000000 160.442139 352.557800 715.000000 23.336426 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 489.663452 699.000000 160.442139 489.663574 699.000000 353.557800 614.918335 699.000000 108.559937 614.918335 715.000000 405.440125 614.918335 715.000000 108.559937 614.918335 699.000000 405.440125 489.663574 715.000000 353.557800 489.663452 715.000000 160.442139 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 489.663574 699.000000 353.557800 352.557892 699.000000 490.663452 614.918335 699.000000 405.440125 404.440094 715.000000 615.918335 614.918335 715.000000 405.440125 404.440094 699.000000 615.918335 352.557892 715.000000 490.663452 489.663574 715.000000 353.557800 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 352.557892 699.000000 490.663452 159.442200 699.000000 490.663574 404.440094 699.000000 615.918335 107.559883 715.000000 615.918335 404.440094 715.000000 615.918335 107.559883 699.000000 615.918335 159.442200 715.000000 490.663574 352.557892 715.000000 490.663452 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 159.442200 699.000000 490.663574 22.336500 699.000000 353.557922 107.559883 699.000000 615.918335 -102.918335 715.000000 405.440033 107.559883 715.000000 615.918335 -102.918335 699.000000 405.440033 22.336500 715.000000 353.557922 159.442200 715.000000 490.663574 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 22.336500 699.000000 353.557922 22.336426 699.000000 160.442139 -102.918335 699.000000 405.440033 -102.918335 715.000000 108.559814 -102.918335 715.000000 405.440033 -102.918335 699.000000 108.559814 22.336426 715.000000 160.442139 22.336500 715.000000 353.557922 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 22.336426 699.000000 160.442139 159.442078 699.000000 23.336548 -102.918335 699.000000 108.559814 107.559875 715.000000 -101.918335 -102.918335 715.000000 108.559814 107.559875 699.000000 -101.918335 159.442078 715.000000 23.336548 22.336426 715.000000 160.442139 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 159.442078 699.000000 23.336548 352.557800 699.000000 23.336426 107.559875 699.000000 -101.918335 404.440125 715.000000 -101.918335 107.559875 715.000000 -101.918335 404.440125 699.000000 -101.918335 352.557800 715.000000 23.336426 159.442078 715.000000 23.336548 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 52.434471 585.000000 749.001221 -236.001770 585.000000 460.564575 45.949112 585.000000 764.657959 -251.658661 745.000000 467.049805 45.949112 745.000000 764.657959 -251.658661 585.000000 467.049805 -236.001770 745.000000 460.564575 52.434471 745.000000 749.001221 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices -236.001770 585.000000 460.564575 -236.001221 585.000000 53.434448 -251.658661 585.000000 467.049805 -251.657959 745.000000 46.949097 -251.658661 745.000000 467.049805 -251.657959 585.000000 46.949097 -236.001221 745.000000 53.434448 -236.001770 745.000000 460.564575 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices -236.001221 585.000000 53.434448 52.435364 585.000000 -235.001770 -251.657959 585.000000 46.949097 45.950134 745.000000 -250.658630 -251.657959 745.000000 46.949097 45.950134 585.000000 -250.658630 52.435364 745.000000 -235.001770 -236.001221 745.000000 53.434448 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 52.435364 585.000000 -235.001770 459.565552 585.000000 -235.001221 45.950134 585.000000 -250.658630 466.050903 745.000000 -250.657959 45.950134 745.000000 -250.658630 466.050903 585.000000 -250.657959 459.565552 745.000000 -235.001221 52.435364 745.000000 -235.001770 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 brush vertices 459.565552 585.000000 -235.001221 748.001709 585.000000 53.435425 466.050903 585.000000 -250.657959 763.658630 745.000000 46.950195 466.050903 745.000000 -250.657959 763.658630 585.000000 46.950195 748.001709 745.000000 53.435425 459.565552 745.000000 -235.001221 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 748.001709 585.000000 53.435425 748.001221 585.000000 460.565552 763.658630 585.000000 46.950195 763.657959 745.000000 467.050903 763.658630 745.000000 46.950195 763.657959 585.000000 467.050903 748.001221 745.000000 460.565552 748.001709 745.000000 53.435425 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 748.001221 585.000000 460.565552 459.564697 585.000000 749.001770 763.657959 585.000000 467.050903 466.049927 745.000000 764.658630 763.657959 745.000000 467.050903 466.049927 585.000000 764.658630 459.564697 745.000000 749.001770 748.001221 745.000000 460.565552 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 607.089722 585.000000 402.198059 401.196625 585.000000 608.089966 622.746582 585.000000 408.683472 407.681885 697.000000 623.746887 622.746582 697.000000 408.683472 407.681885 585.000000 623.746887 401.196625 697.000000 608.089966 607.089722 697.000000 402.198059 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 622.746826 585.000000 408.682739 407.682861 585.000000 623.746826 748.001587 585.000000 460.565063 459.565063 601.000000 749.001648 748.001587 601.000000 460.565063 459.565063 585.000000 749.001648 407.682861 601.000000 623.746826 622.746826 601.000000 408.682739 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 407.682861 585.000000 623.746826 104.317284 585.000000 623.746826 459.565063 585.000000 749.001648 52.434963 601.000000 749.001587 459.565063 601.000000 749.001648 52.434963 585.000000 749.001587 104.317284 601.000000 623.746826 407.682861 601.000000 623.746826 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 401.196625 585.000000 608.089966 110.801941 585.000000 608.089722 407.681885 585.000000 623.746887 104.316544 697.000000 623.746582 407.681885 697.000000 623.746887 104.316544 585.000000 623.746582 110.801941 697.000000 608.089722 401.196625 697.000000 608.089966 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 104.317284 585.000000 623.746826 -110.746811 585.000000 408.682770 52.434963 585.000000 749.001587 -236.001633 601.000000 460.565002 52.434963 601.000000 749.001587 -236.001633 585.000000 460.565002 -110.746811 601.000000 408.682770 104.317284 601.000000 623.746826 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 110.801941 585.000000 608.089722 -95.089981 585.000000 402.196686 104.316544 585.000000 623.746582 -110.746872 697.000000 408.681824 104.316544 697.000000 623.746582 -110.746872 585.000000 408.681824 -95.089981 697.000000 402.196686 110.801941 697.000000 608.089722 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -110.746811 585.000000 408.682770 -110.746826 585.000000 105.317261 -236.001633 585.000000 460.565002 -236.001587 601.000000 53.434937 -236.001633 601.000000 460.565002 -236.001587 585.000000 53.434937 -110.746826 601.000000 105.317261 -110.746811 601.000000 408.682770 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -95.089981 585.000000 402.196686 -95.089722 585.000000 111.801880 -110.746872 585.000000 408.681824 -110.746582 697.000000 105.316528 -110.746872 697.000000 408.681824 -110.746582 585.000000 105.316528 -95.089722 697.000000 111.801880 -95.089981 697.000000 402.196686 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -110.746826 585.000000 105.317261 104.317200 585.000000 -109.746826 -236.001587 585.000000 53.434937 52.434937 601.000000 -235.001648 -236.001587 601.000000 53.434937 52.434937 585.000000 -235.001648 104.317200 601.000000 -109.746826 -110.746826 601.000000 105.317261 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -95.089722 585.000000 111.801880 110.803345 585.000000 -94.089966 -110.746582 585.000000 105.316528 104.318115 697.000000 -109.746887 -110.746582 697.000000 105.316528 104.318115 585.000000 -109.746887 110.803345 697.000000 -94.089966 -95.089722 697.000000 111.801880 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 110.803345 585.000000 -94.089966 401.198059 585.000000 -94.089722 104.318115 585.000000 -109.746887 407.683472 697.000000 -109.746582 104.318115 697.000000 -109.746887 407.683472 585.000000 -109.746582 401.198059 697.000000 -94.089722 110.803345 697.000000 -94.089966 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 104.317200 585.000000 -109.746826 407.682739 585.000000 -109.746826 52.434937 585.000000 -235.001648 459.565063 601.000000 -235.001587 52.434937 601.000000 -235.001648 459.565063 585.000000 -235.001587 407.682739 601.000000 -109.746826 104.317200 601.000000 -109.746826 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 407.682739 585.000000 -109.746826 622.746765 585.000000 105.317261 459.565063 585.000000 -235.001587 748.001587 601.000000 53.435059 459.565063 601.000000 -235.001587 748.001587 585.000000 53.435059 622.746765 601.000000 105.317261 407.682739 601.000000 -109.746826 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip brush vertices 401.198059 585.000000 -94.089722 607.089966 585.000000 111.803345 407.683472 585.000000 -109.746582 622.746826 697.000000 105.318237 407.683472 697.000000 -109.746582 622.746826 585.000000 105.318237 607.089966 697.000000 111.803345 401.198059 697.000000 -94.089722 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 622.746765 585.000000 105.317261 622.746826 585.000000 408.682739 748.001587 585.000000 53.435059 748.001587 601.000000 460.565063 748.001587 601.000000 53.435059 748.001587 585.000000 460.565063 622.746826 601.000000 408.682739 622.746765 601.000000 105.317261 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 607.089966 585.000000 111.803345 607.089722 585.000000 402.198059 622.746826 585.000000 105.318237 622.746582 697.000000 408.683472 622.746826 697.000000 105.318237 622.746582 585.000000 408.683472 607.089722 697.000000 402.198059 607.089966 697.000000 111.803345 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 16.359726 431.000000 836.092468 -323.092987 431.000000 496.638153 9.874306 431.000000 851.749207 -338.749878 591.000000 503.123291 9.874306 591.000000 851.749207 -338.749878 431.000000 503.123291 -323.092987 591.000000 496.638153 16.359726 591.000000 836.092468 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices -323.092987 431.000000 496.638153 -323.092529 431.000000 17.359680 -338.749878 431.000000 503.123291 -338.749268 591.000000 10.874207 -338.749878 591.000000 503.123291 -338.749268 431.000000 10.874207 -323.092529 591.000000 17.359680 -323.092987 591.000000 496.638153 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 brush vertices -323.092529 431.000000 17.359680 16.361755 431.000000 -322.093018 -338.749268 431.000000 10.874207 9.876648 591.000000 -337.749878 -338.749268 591.000000 10.874207 9.876648 431.000000 -337.749878 16.361755 591.000000 -322.093018 -323.092529 591.000000 17.359680 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 16.361755 431.000000 -322.093018 495.640289 431.000000 -322.092468 9.876648 431.000000 -337.749878 502.125702 591.000000 -337.749207 9.876648 591.000000 -337.749878 502.125702 431.000000 -337.749207 495.640289 591.000000 -322.092468 16.361755 591.000000 -322.093018 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 495.640289 431.000000 -322.092468 835.092957 431.000000 17.361877 502.125702 431.000000 -337.749207 850.749878 591.000000 10.876709 502.125702 591.000000 -337.749207 850.749878 431.000000 10.876709 835.092957 591.000000 17.361877 495.640289 591.000000 -322.092468 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 835.092957 431.000000 17.361877 835.092529 431.000000 496.640320 850.749878 431.000000 10.876709 850.749268 591.000000 503.125732 850.749878 591.000000 10.876709 850.749268 431.000000 503.125732 835.092529 591.000000 496.640320 835.092957 591.000000 17.361877 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 brush vertices 835.092529 431.000000 496.640320 495.638245 431.000000 836.093018 850.749268 431.000000 503.125732 502.123352 591.000000 851.749878 850.749268 591.000000 503.125732 502.123352 431.000000 851.749878 495.638245 591.000000 836.093018 835.092529 591.000000 496.640320 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 437.271484 431.000000 695.181091 74.727997 431.000000 695.180664 443.756714 431.000000 710.837952 68.242653 591.000000 710.837524 443.756714 591.000000 710.837952 68.242653 431.000000 710.837524 74.727997 591.000000 695.180664 437.271484 591.000000 695.181091 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 443.757202 431.000000 710.838013 68.242836 431.000000 710.838074 495.639282 431.000000 836.092773 16.360535 447.000000 836.092834 495.639282 447.000000 836.092773 16.360535 431.000000 836.092834 68.242836 447.000000 710.838074 443.757202 447.000000 710.838013 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 74.727997 431.000000 695.180664 -182.181107 431.000000 438.271362 68.242653 431.000000 710.837524 -197.837936 591.000000 444.756561 68.242653 591.000000 710.837524 -197.837936 431.000000 444.756561 -182.181107 591.000000 438.271362 74.727997 591.000000 695.180664 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 68.242836 431.000000 710.838074 -197.838043 431.000000 444.757080 16.360535 431.000000 836.092834 -323.092804 447.000000 496.639160 16.360535 447.000000 836.092834 -323.092804 431.000000 496.639160 -197.838043 447.000000 444.757080 68.242836 447.000000 710.838074 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -182.181107 431.000000 438.271362 -182.180664 431.000000 75.728027 -197.837936 431.000000 444.756561 -197.837524 591.000000 69.242676 -197.837936 591.000000 444.756561 -197.837524 431.000000 69.242676 -182.180664 591.000000 75.728027 -182.181107 591.000000 438.271362 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -197.838043 431.000000 444.757080 -197.838135 431.000000 69.242798 -323.092804 431.000000 496.639160 -323.092896 447.000000 17.360474 -323.092804 447.000000 496.639160 -323.092896 431.000000 17.360474 -197.838135 447.000000 69.242798 -197.838043 447.000000 444.757080 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -197.838135 431.000000 69.242798 68.242859 431.000000 -196.838013 -323.092896 431.000000 17.360474 16.360779 447.000000 -322.092773 -323.092896 447.000000 17.360474 16.360779 431.000000 -322.092773 68.242859 447.000000 -196.838013 -197.838135 447.000000 69.242798 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -182.180664 431.000000 75.728027 74.728577 431.000000 -181.181091 -197.837524 431.000000 69.242676 68.243347 591.000000 -196.837952 -197.837524 591.000000 69.242676 68.243347 431.000000 -196.837952 74.728577 591.000000 -181.181091 -182.180664 591.000000 75.728027 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 68.242859 431.000000 -196.838013 443.757141 431.000000 -196.838074 16.360779 431.000000 -322.092773 495.639465 447.000000 -322.092834 16.360779 447.000000 -322.092773 495.639465 431.000000 -322.092834 443.757141 447.000000 -196.838074 68.242859 447.000000 -196.838013 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 74.728577 431.000000 -181.181091 437.271973 431.000000 -181.180664 68.243347 431.000000 -196.837952 443.757324 591.000000 -196.837524 68.243347 591.000000 -196.837952 443.757324 431.000000 -196.837524 437.271973 591.000000 -181.180664 74.728577 591.000000 -181.181091 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 437.271973 431.000000 -181.180664 694.181030 431.000000 75.728638 443.757324 431.000000 -196.837524 709.837891 591.000000 69.243408 443.757324 591.000000 -196.837524 709.837891 431.000000 69.243408 694.181030 591.000000 75.728638 437.271973 591.000000 -181.180664 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 443.757141 431.000000 -196.838074 709.838013 431.000000 69.242920 495.639465 431.000000 -322.092834 835.092773 447.000000 17.360840 495.639465 447.000000 -322.092834 835.092773 431.000000 17.360840 709.838013 447.000000 69.242920 443.757141 447.000000 -196.838074 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 694.181030 431.000000 75.728638 694.180664 431.000000 438.271973 709.837891 431.000000 69.243408 709.837524 591.000000 444.757324 709.837891 591.000000 69.243408 709.837524 431.000000 444.757324 694.180664 591.000000 438.271973 694.181030 591.000000 75.728638 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip brush vertices 709.838013 431.000000 69.242920 709.838135 431.000000 444.757141 835.092773 431.000000 17.360840 835.092896 447.000000 496.639465 835.092773 447.000000 17.360840 835.092896 431.000000 496.639465 709.838135 447.000000 444.757141 709.838013 447.000000 69.242920 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 709.838135 431.000000 444.757141 443.757202 431.000000 710.838013 835.092896 431.000000 496.639465 495.639282 447.000000 836.092773 835.092896 447.000000 496.639465 495.639282 431.000000 836.092773 443.757202 447.000000 710.838013 709.838135 447.000000 444.757141 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 694.180664 431.000000 438.271973 437.271484 431.000000 695.181091 709.837524 431.000000 444.757324 443.756714 591.000000 710.837952 709.837524 591.000000 444.757324 443.756714 431.000000 710.837952 437.271484 591.000000 695.181091 694.180664 591.000000 438.271973 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 3.795403 240.000000 866.428101 -353.428040 240.000000 509.204651 -2.689880 240.000000 882.084961 -369.084900 400.000000 515.689941 -2.689880 400.000000 882.084961 -369.084900 240.000000 515.689941 -353.428040 400.000000 509.204651 3.795403 400.000000 866.428101 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices -353.428040 240.000000 509.204651 -353.428101 240.000000 4.795349 -369.084900 240.000000 515.689941 -369.084961 400.000000 -1.689941 -369.084900 400.000000 515.689941 -369.084961 240.000000 -1.689941 -353.428101 400.000000 4.795349 -353.428040 400.000000 509.204651 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices -353.428101 240.000000 4.795349 3.795288 240.000000 -352.428101 -369.084961 240.000000 -1.689941 -2.689941 400.000000 -368.084961 -369.084961 400.000000 -1.689941 -2.689941 240.000000 -368.084961 3.795288 400.000000 -352.428101 -353.428101 400.000000 4.795349 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 3.795288 240.000000 -352.428101 508.204590 240.000000 -352.428101 -2.689941 240.000000 -368.084961 514.689880 400.000000 -368.084961 -2.689941 400.000000 -368.084961 514.689880 240.000000 -368.084961 508.204590 400.000000 -352.428101 3.795288 400.000000 -352.428101 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 508.204590 240.000000 -352.428101 865.428040 240.000000 4.795410 514.689880 240.000000 -368.084961 881.084900 400.000000 -1.689880 514.689880 400.000000 -368.084961 881.084900 240.000000 -1.689880 865.428040 400.000000 4.795410 508.204590 400.000000 -352.428101 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 brush vertices 865.428040 240.000000 4.795410 865.428101 240.000000 509.204590 881.084900 240.000000 -1.689880 881.084961 400.000000 515.689880 881.084900 400.000000 -1.689880 881.084961 240.000000 515.689880 865.428101 400.000000 509.204590 865.428040 400.000000 4.795410 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 865.428101 240.000000 509.204590 508.204712 240.000000 866.428101 881.084961 240.000000 515.689880 514.689941 400.000000 882.084961 881.084961 400.000000 515.689880 514.689941 240.000000 882.084961 508.204712 400.000000 866.428101 865.428101 400.000000 509.204590 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 449.837158 240.000000 725.516357 62.162937 240.000000 725.516418 456.322510 240.000000 741.173157 55.677692 400.000000 741.173218 456.322510 400.000000 741.173157 55.677692 240.000000 741.173218 62.162937 400.000000 725.516418 449.837158 400.000000 725.516357 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 456.322449 240.000000 741.173157 55.677692 240.000000 741.173218 508.204712 240.000000 866.428101 3.795410 256.000000 866.428101 508.204712 256.000000 866.428101 3.795410 240.000000 866.428101 55.677692 256.000000 741.173218 456.322449 256.000000 741.173157 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 62.162937 240.000000 725.516418 -212.516388 240.000000 450.837097 55.677692 240.000000 741.173218 -228.173172 400.000000 457.322388 55.677692 400.000000 741.173218 -228.173172 240.000000 457.322388 -212.516388 400.000000 450.837097 62.162937 400.000000 725.516418 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 55.677692 240.000000 741.173218 -228.173172 240.000000 457.322388 3.795410 240.000000 866.428101 -353.428070 256.000000 509.204651 3.795410 256.000000 866.428101 -353.428070 240.000000 509.204651 -228.173172 256.000000 457.322388 55.677692 256.000000 741.173218 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -212.516388 240.000000 450.837097 -212.516479 240.000000 63.162964 -228.173172 240.000000 457.322388 -228.173218 400.000000 56.677612 -228.173172 400.000000 457.322388 -228.173218 240.000000 56.677612 -212.516479 400.000000 63.162964 -212.516388 400.000000 450.837097 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -228.173172 240.000000 457.322388 -228.173218 240.000000 56.677612 -353.428070 240.000000 509.204651 -353.428101 256.000000 4.795349 -353.428070 256.000000 509.204651 -353.428101 240.000000 4.795349 -228.173218 256.000000 56.677612 -228.173172 256.000000 457.322388 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -212.516479 240.000000 63.162964 62.162842 240.000000 -211.516357 -228.173218 240.000000 56.677612 55.677551 400.000000 -227.173157 -228.173218 400.000000 56.677612 55.677551 240.000000 -227.173157 62.162842 400.000000 -211.516357 -212.516479 400.000000 63.162964 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 62.162842 240.000000 -211.516357 449.837036 240.000000 -211.516418 55.677551 240.000000 -227.173157 456.322327 400.000000 -227.173218 55.677551 400.000000 -227.173157 456.322327 240.000000 -227.173218 449.837036 400.000000 -211.516418 62.162842 400.000000 -211.516357 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 55.677551 240.000000 -227.173157 456.322327 240.000000 -227.173218 3.795288 240.000000 -352.428101 508.204590 256.000000 -352.428101 3.795288 256.000000 -352.428101 508.204590 240.000000 -352.428101 456.322327 256.000000 -227.173218 55.677551 256.000000 -227.173157 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -228.173218 240.000000 56.677612 55.677551 240.000000 -227.173157 -353.428101 240.000000 4.795349 3.795288 256.000000 -352.428101 -353.428101 256.000000 4.795349 3.795288 240.000000 -352.428101 55.677551 256.000000 -227.173157 -228.173218 256.000000 56.677612 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 449.837036 240.000000 -211.516418 724.516357 240.000000 63.162964 456.322327 240.000000 -227.173218 740.173096 400.000000 56.677612 456.322327 400.000000 -227.173218 740.173096 240.000000 56.677612 724.516357 400.000000 63.162964 449.837036 400.000000 -211.516418 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip brush vertices 456.322327 240.000000 -227.173218 740.173096 240.000000 56.677612 508.204590 240.000000 -352.428101 865.428040 256.000000 4.795410 508.204590 256.000000 -352.428101 865.428040 240.000000 4.795410 740.173096 256.000000 56.677612 456.322327 256.000000 -227.173218 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 740.173096 240.000000 56.677612 740.173218 240.000000 457.322357 865.428040 240.000000 4.795410 865.428101 256.000000 509.204590 865.428040 256.000000 4.795410 865.428101 240.000000 509.204590 740.173218 256.000000 457.322357 740.173096 256.000000 56.677612 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 724.516357 240.000000 63.162964 724.516418 240.000000 450.837036 740.173096 240.000000 56.677612 740.173218 400.000000 457.322327 740.173096 400.000000 56.677612 740.173218 240.000000 457.322327 724.516418 400.000000 450.837036 724.516357 400.000000 63.162964 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 724.516418 240.000000 450.837036 449.837158 240.000000 725.516357 740.173218 240.000000 457.322327 456.322510 400.000000 741.173157 740.173218 400.000000 457.322327 456.322510 240.000000 741.173157 449.837158 400.000000 725.516357 724.516418 400.000000 450.837036 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 740.173218 240.000000 457.322357 456.322449 240.000000 741.173157 865.428101 240.000000 509.204590 508.204712 256.000000 866.428101 865.428101 256.000000 509.204590 508.204712 240.000000 866.428101 456.322449 256.000000 741.173157 740.173218 256.000000 457.322357 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 16.359726 49.000000 836.092468 -323.092987 49.000000 496.638153 9.874306 49.000000 851.749207 -338.749878 209.000000 503.123291 9.874306 209.000000 851.749207 -338.749878 49.000000 503.123291 -323.092987 209.000000 496.638153 16.359726 209.000000 836.092468 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices -323.092987 49.000000 496.638153 -323.092529 49.000000 17.359680 -338.749878 49.000000 503.123291 -338.749268 209.000000 10.874207 -338.749878 209.000000 503.123291 -338.749268 49.000000 10.874207 -323.092529 209.000000 17.359680 -323.092987 209.000000 496.638153 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 brush vertices -323.092529 49.000000 17.359680 16.361755 49.000000 -322.093018 -338.749268 49.000000 10.874207 9.876648 209.000000 -337.749878 -338.749268 209.000000 10.874207 9.876648 49.000000 -337.749878 16.361755 209.000000 -322.093018 -323.092529 209.000000 17.359680 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 16.361755 49.000000 -322.093018 495.640289 49.000000 -322.092468 9.876648 49.000000 -337.749878 502.125702 209.000000 -337.749207 9.876648 209.000000 -337.749878 502.125702 49.000000 -337.749207 495.640289 209.000000 -322.092468 16.361755 209.000000 -322.093018 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 495.640289 49.000000 -322.092468 835.092957 49.000000 17.361877 502.125702 49.000000 -337.749207 850.749878 209.000000 10.876709 502.125702 209.000000 -337.749207 850.749878 49.000000 10.876709 835.092957 209.000000 17.361877 495.640289 209.000000 -322.092468 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 835.092957 49.000000 17.361877 835.092529 49.000000 496.640320 850.749878 49.000000 10.876709 850.749268 209.000000 503.125732 850.749878 209.000000 10.876709 850.749268 49.000000 503.125732 835.092529 209.000000 496.640320 835.092957 209.000000 17.361877 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 brush vertices 835.092529 49.000000 496.640320 495.638245 49.000000 836.093018 850.749268 49.000000 503.125732 502.123352 209.000000 851.749878 850.749268 209.000000 503.125732 502.123352 49.000000 851.749878 495.638245 209.000000 836.093018 835.092529 209.000000 496.640320 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 437.271484 49.000000 695.181091 74.727997 49.000000 695.180664 443.756714 49.000000 710.837952 68.242653 208.999985 710.837524 443.756714 209.000000 710.837952 68.242653 49.000000 710.837524 74.727997 208.999985 695.180664 437.271484 209.000000 695.181091 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 internal/editor/textures/editor_clip brush vertices 443.757202 48.999985 710.838013 68.242836 48.999985 710.838074 495.639282 48.999985 836.092773 16.360535 64.999985 836.092834 495.639282 64.999985 836.092773 16.360535 48.999985 836.092834 68.242836 64.999985 710.838074 443.757202 64.999985 710.838013 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 68.242836 48.999985 710.838074 -197.838043 48.999985 444.757080 16.360535 48.999985 836.092834 -323.092804 64.999985 496.639160 16.360535 64.999985 836.092834 -323.092804 48.999985 496.639160 -197.838043 64.999985 444.757080 68.242836 64.999985 710.838074 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 74.727997 49.000000 695.180664 -182.181107 49.000000 438.271362 68.242653 49.000000 710.837524 -197.837936 209.000000 444.756561 68.242653 208.999985 710.837524 -197.837936 49.000000 444.756561 -182.181107 209.000000 438.271362 74.727997 208.999985 695.180664 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -197.838043 48.999985 444.757080 -197.838135 48.999985 69.242798 -323.092804 48.999985 496.639160 -323.092896 64.999985 17.360474 -323.092804 64.999985 496.639160 -323.092896 48.999985 17.360474 -197.838135 64.999985 69.242798 -197.838043 64.999985 444.757080 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -197.838135 48.999985 69.242798 68.242859 48.999985 -196.838013 -323.092896 48.999985 17.360474 16.360779 64.999985 -322.092773 -323.092896 64.999985 17.360474 16.360779 48.999985 -322.092773 68.242859 64.999985 -196.838013 -197.838135 64.999985 69.242798 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -182.180664 49.000000 75.728027 74.728577 49.000000 -181.181091 -197.837524 49.000000 69.242676 68.243347 209.000000 -196.837952 -197.837524 208.999985 69.242676 68.243347 49.000000 -196.837952 74.728577 209.000000 -181.181091 -182.180664 208.999985 75.728027 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -182.181107 49.000000 438.271362 -182.180664 49.000000 75.728027 -197.837936 49.000000 444.756561 -197.837524 208.999985 69.242676 -197.837936 209.000000 444.756561 -197.837524 49.000000 69.242676 -182.180664 208.999985 75.728027 -182.181107 209.000000 438.271362 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 internal/editor/textures/editor_clip brush vertices 68.242859 48.999985 -196.838013 443.757141 48.999985 -196.838074 16.360779 48.999985 -322.092773 495.639465 64.999985 -322.092834 16.360779 64.999985 -322.092773 495.639465 48.999985 -322.092834 443.757141 64.999985 -196.838074 68.242859 64.999985 -196.838013 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 443.757141 48.999985 -196.838074 709.838013 48.999985 69.242920 495.639465 48.999985 -322.092834 835.092773 64.999985 17.360840 495.639465 64.999985 -322.092834 835.092773 48.999985 17.360840 709.838013 64.999985 69.242920 443.757141 64.999985 -196.838074 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 74.728577 49.000000 -181.181091 437.271973 49.000000 -181.180664 68.243347 49.000000 -196.837952 443.757324 208.999985 -196.837524 68.243347 209.000000 -196.837952 443.757324 49.000000 -196.837524 437.271973 208.999985 -181.180664 74.728577 209.000000 -181.181091 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 internal/editor/textures/editor_clip brush vertices 437.271973 49.000000 -181.180664 694.181030 49.000000 75.728638 443.757324 49.000000 -196.837524 709.837891 209.000000 69.243408 443.757324 208.999985 -196.837524 709.837891 49.000000 69.243408 694.181030 209.000000 75.728638 437.271973 208.999985 -181.180664 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 709.838013 48.999985 69.242920 709.838135 48.999985 444.757141 835.092773 48.999985 17.360840 835.092896 64.999985 496.639465 835.092773 64.999985 17.360840 835.092896 48.999985 496.639465 709.838135 64.999985 444.757141 709.838013 64.999985 69.242920 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 709.838135 48.999985 444.757141 443.757202 48.999985 710.838013 835.092896 48.999985 496.639465 495.639282 64.999985 836.092773 835.092896 64.999985 496.639465 495.639282 48.999985 836.092773 443.757202 64.999985 710.838013 709.838135 64.999985 444.757141 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 694.180664 49.000000 438.271973 437.271484 49.000000 695.181091 709.837524 49.000000 444.757324 443.756714 209.000000 710.837952 709.837524 208.999985 444.757324 443.756714 49.000000 710.837952 437.271484 209.000000 695.181091 694.180664 208.999985 438.271973 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 694.181030 49.000000 75.728638 694.180664 49.000000 438.271973 709.837891 49.000000 69.243408 709.837524 208.999985 444.757324 709.837891 209.000000 69.243408 709.837524 49.000000 444.757324 694.180664 208.999985 438.271973 694.181030 209.000000 75.728638 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 internal/editor/textures/editor_clip brush vertices 52.434471 -105.000000 749.001221 -236.001770 -105.000000 460.564575 45.949112 -105.000000 764.657959 -251.658661 54.999992 467.049805 45.949112 54.999985 764.657959 -251.658661 -105.000000 467.049805 -236.001770 54.999992 460.564575 52.434471 54.999985 749.001221 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices -236.001770 -105.000000 460.564575 -236.001221 -105.000000 53.434448 -251.658661 -105.000000 467.049805 -251.657959 54.999985 46.949097 -251.658661 54.999992 467.049805 -251.657959 -105.000000 46.949097 -236.001221 54.999985 53.434448 -236.001770 54.999992 460.564575 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 brush vertices -236.001221 -105.000000 53.434448 52.435364 -105.000000 -235.001770 -251.657959 -105.000000 46.949097 45.950134 54.999992 -250.658630 -251.657959 54.999985 46.949097 45.950134 -105.000000 -250.658630 52.435364 54.999992 -235.001770 -236.001221 54.999985 53.434448 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 52.435364 -105.000000 -235.001770 459.565552 -105.000000 -235.001221 45.950134 -105.000000 -250.658630 466.050903 54.999985 -250.657959 45.950134 54.999992 -250.658630 466.050903 -105.000000 -250.657959 459.565552 54.999985 -235.001221 52.435364 54.999992 -235.001770 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 brush vertices 459.565552 -105.000000 -235.001221 748.001709 -105.000000 53.435425 466.050903 -105.000000 -250.657959 763.658630 54.999992 46.950195 466.050903 54.999985 -250.657959 763.658630 -105.000000 46.950195 748.001709 54.999992 53.435425 459.565552 54.999985 -235.001221 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 748.001709 -105.000000 53.435425 748.001221 -105.000000 460.565552 763.658630 -105.000000 46.950195 763.657959 54.999985 467.050903 763.658630 54.999992 46.950195 763.657959 -105.000000 467.050903 748.001221 54.999985 460.565552 748.001709 54.999992 53.435425 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 brush vertices 748.001221 -105.000000 460.565552 459.564697 -105.000000 749.001770 763.657959 -105.000000 467.050903 466.049927 55.000000 764.658630 763.657959 54.999985 467.050903 466.049927 -105.000000 764.658630 459.564697 55.000000 749.001770 748.001221 54.999985 460.565552 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 401.196625 -105.000000 608.089966 110.801941 -105.000000 608.089722 407.681885 -105.000000 623.746887 104.316544 55.000000 623.746582 407.681885 54.999985 623.746887 104.316544 -105.000000 623.746582 110.801941 55.000000 608.089722 401.196625 54.999985 608.089966 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 407.682861 -105.000015 623.746826 104.317284 -105.000015 623.746826 459.565063 -105.000015 749.001648 52.434963 -89.000015 749.001587 459.565063 -89.000015 749.001648 52.434963 -105.000015 749.001587 104.317284 -89.000015 623.746826 407.682861 -89.000015 623.746826 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 104.317284 -105.000015 623.746826 -110.746811 -105.000015 408.682770 52.434963 -105.000015 749.001587 -236.001633 -89.000015 460.565002 52.434963 -89.000015 749.001587 -236.001633 -105.000015 460.565002 -110.746811 -89.000015 408.682770 104.317284 -89.000015 623.746826 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 110.801941 -105.000000 608.089722 -95.089981 -105.000000 402.196686 104.316544 -105.000000 623.746582 -110.746872 55.000000 408.681824 104.316544 55.000000 623.746582 -110.746872 -105.000000 408.681824 -95.089981 55.000000 402.196686 110.801941 55.000000 608.089722 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip brush vertices -95.089981 -105.000000 402.196686 -95.089722 -105.000000 111.801880 -110.746872 -105.000000 408.681824 -110.746582 55.000000 105.316528 -110.746872 55.000000 408.681824 -110.746582 -105.000000 105.316528 -95.089722 55.000000 111.801880 -95.089981 55.000000 402.196686 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip brush vertices -110.746811 -105.000015 408.682770 -110.746826 -105.000015 105.317261 -236.001633 -105.000015 460.565002 -236.001587 -89.000015 53.434937 -236.001633 -89.000015 460.565002 -236.001587 -105.000015 53.434937 -110.746826 -89.000015 105.317261 -110.746811 -89.000015 408.682770 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -110.746826 -105.000015 105.317261 104.317200 -105.000015 -109.746826 -236.001587 -105.000015 53.434937 52.434937 -89.000015 -235.001648 -236.001587 -89.000015 53.434937 52.434937 -105.000015 -235.001648 104.317200 -89.000015 -109.746826 -110.746826 -89.000015 105.317261 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices -95.089722 -105.000000 111.801880 110.803345 -105.000000 -94.089966 -110.746582 -105.000000 105.316528 104.318115 55.000000 -109.746887 -110.746582 55.000000 105.316528 104.318115 -105.000000 -109.746887 110.803345 55.000000 -94.089966 -95.089722 55.000000 111.801880 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 104.317200 -105.000015 -109.746826 407.682739 -105.000015 -109.746826 52.434937 -105.000015 -235.001648 459.565063 -89.000015 -235.001587 52.434937 -89.000015 -235.001648 459.565063 -105.000015 -235.001587 407.682739 -89.000015 -109.746826 104.317200 -89.000015 -109.746826 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 110.803345 -105.000000 -94.089966 401.198059 -105.000000 -94.089722 104.318115 -105.000000 -109.746887 407.683472 55.000000 -109.746582 104.318115 55.000000 -109.746887 407.683472 -105.000000 -109.746582 401.198059 55.000000 -94.089722 110.803345 55.000000 -94.089966 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 401.198059 -105.000000 -94.089722 607.089966 -105.000000 111.803345 407.683472 -105.000000 -109.746582 622.746826 55.000000 105.318237 407.683472 55.000000 -109.746582 622.746826 -105.000000 105.318237 607.089966 55.000000 111.803345 401.198059 55.000000 -94.089722 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 407.682739 -105.000015 -109.746826 622.746765 -105.000015 105.317261 459.565063 -105.000015 -235.001587 748.001587 -89.000015 53.435059 459.565063 -89.000015 -235.001587 748.001587 -105.000015 53.435059 622.746765 -89.000015 105.317261 407.682739 -89.000015 -109.746826 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip brush vertices 607.089966 -105.000000 111.803345 607.089722 -105.000000 402.198059 622.746826 -105.000000 105.318237 622.746582 55.000000 408.683472 622.746826 55.000000 105.318237 622.746582 -105.000000 408.683472 607.089722 55.000000 402.198059 607.089966 55.000000 111.803345 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 622.746765 -105.000015 105.317261 622.746826 -105.000015 408.682739 748.001587 -105.000015 53.435059 748.001587 -89.000015 460.565063 748.001587 -89.000015 53.435059 748.001587 -105.000015 460.565063 622.746826 -89.000015 408.682739 622.746765 -89.000015 105.317261 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 622.746826 -105.000015 408.682739 407.682861 -105.000015 623.746826 748.001587 -105.000015 460.565063 459.565063 -89.000015 749.001648 748.001587 -89.000015 460.565063 459.565063 -105.000015 749.001648 407.682861 -89.000015 623.746826 622.746826 -89.000015 408.682739 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 607.089722 -105.000000 402.198059 401.196625 -105.000000 608.089966 622.746582 -105.000000 408.683472 407.681885 54.999985 623.746887 622.746582 55.000000 408.683472 407.681885 -105.000000 623.746887 401.196625 54.999985 608.089966 607.089722 55.000000 402.198059 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 internal/editor/textures/editor_clip brush vertices 107.559525 -219.000000 615.918091 -102.918465 -219.000000 405.439758 101.074158 -219.000000 631.574829 -118.575348 -107.000000 411.924988 101.074158 -107.000000 631.574829 -118.575348 -219.000000 411.924988 -102.918465 -107.000000 405.439758 107.559525 -107.000000 615.918091 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 brush vertices -102.918465 -219.000000 405.439758 -102.918091 -219.000000 108.559448 -118.575348 -219.000000 411.924988 -118.574829 -107.000000 102.074097 -118.575348 -107.000000 411.924988 -118.574829 -219.000000 102.074097 -102.918091 -107.000000 108.559448 -102.918465 -107.000000 405.439758 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 brush vertices -102.918091 -219.000000 108.559448 107.560181 -219.000000 -101.918457 -118.574829 -219.000000 102.074097 101.074951 -107.000000 -117.575317 -118.574829 -107.000000 102.074097 101.074951 -219.000000 -117.575317 107.560181 -107.000000 -101.918457 -102.918091 -107.000000 108.559448 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 107.560181 -219.000000 -101.918457 404.440491 -219.000000 -101.918091 101.074951 -219.000000 -117.575317 410.925842 -107.000000 -117.574829 101.074951 -107.000000 -117.575317 410.925842 -219.000000 -117.574829 404.440491 -107.000000 -101.918091 107.560181 -107.000000 -101.918457 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 404.440491 -219.000000 -101.918091 614.918457 -219.000000 108.560303 410.925842 -219.000000 -117.574829 630.575317 -107.000000 102.075073 410.925842 -107.000000 -117.574829 630.575317 -219.000000 102.075073 614.918457 -107.000000 108.560303 404.440491 -107.000000 -101.918091 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 614.918457 -219.000000 108.560303 614.918091 -219.000000 405.440491 630.575317 -219.000000 102.075073 630.574829 -107.000000 411.925842 630.575317 -107.000000 102.075073 630.574829 -219.000000 411.925842 614.918091 -107.000000 405.440491 614.918457 -107.000000 108.560303 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 614.918091 -219.000000 405.440491 404.439850 -219.000000 615.918457 630.574829 -219.000000 411.925842 410.925049 -107.000000 631.575317 630.574829 -107.000000 411.925842 410.925049 -219.000000 631.575317 404.439850 -107.000000 615.918457 614.918091 -107.000000 405.440491 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 346.072388 -219.000000 475.006653 165.927338 -219.000000 475.006439 352.557556 -219.000000 490.663513 159.442001 -59.000000 490.663269 352.557556 -59.000000 490.663513 159.442001 -219.000000 490.663269 165.927338 -59.000000 475.006439 346.072388 -59.000000 475.006653 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 352.557892 -219.000015 490.663452 159.442200 -219.000015 490.663574 404.440094 -219.000015 615.918335 107.559883 -203.000015 615.918335 404.440094 -203.000015 615.918335 107.559883 -219.000015 615.918335 159.442200 -203.000015 490.663574 352.557892 -203.000015 490.663452 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 159.442200 -219.000015 490.663574 22.336500 -219.000015 353.557922 107.559883 -219.000015 615.918335 -102.918335 -203.000015 405.440033 107.559883 -203.000015 615.918335 -102.918335 -219.000015 405.440033 22.336500 -203.000015 353.557922 159.442200 -203.000015 490.663574 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 165.927338 -219.000000 475.006439 37.993340 -219.000000 347.072357 159.442001 -219.000000 490.663269 22.336464 -59.000000 353.557556 159.442001 -59.000000 490.663269 22.336464 -219.000000 353.557556 37.993340 -59.000000 347.072357 165.927338 -59.000000 475.006439 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 37.993340 -219.000000 347.072357 37.993530 -219.000000 166.927368 22.336464 -219.000000 353.557556 22.336670 -59.000000 160.442017 22.336464 -59.000000 353.557556 22.336670 -219.000000 160.442017 37.993530 -59.000000 166.927368 37.993340 -59.000000 347.072357 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 22.336500 -219.000015 353.557922 22.336426 -219.000015 160.442139 -102.918335 -219.000015 405.440033 -102.918335 -203.000015 108.559814 -102.918335 -203.000015 405.440033 -102.918335 -219.000015 108.559814 22.336426 -203.000015 160.442139 22.336500 -203.000015 353.557922 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 22.336426 -219.000015 160.442139 159.442078 -219.000015 23.336548 -102.918335 -219.000015 108.559814 107.559875 -203.000015 -101.918335 -102.918335 -203.000015 108.559814 107.559875 -219.000015 -101.918335 159.442078 -203.000015 23.336548 22.336426 -203.000015 160.442139 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 37.993530 -219.000000 166.927368 165.927612 -219.000000 38.993286 22.336670 -219.000000 160.442017 159.442444 -59.000000 23.336426 22.336670 -59.000000 160.442017 159.442444 -219.000000 23.336426 165.927612 -59.000000 38.993286 37.993530 -59.000000 166.927368 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 165.927612 -219.000000 38.993286 346.072632 -219.000000 38.993530 159.442444 -219.000000 23.336426 352.557983 -59.000000 23.336731 159.442444 -59.000000 23.336426 352.557983 -219.000000 23.336731 346.072632 -59.000000 38.993530 165.927612 -59.000000 38.993286 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 159.442078 -219.000015 23.336548 352.557800 -219.000015 23.336426 107.559875 -219.000015 -101.918335 404.440125 -203.000015 -101.918335 107.559875 -203.000015 -101.918335 404.440125 -219.000015 -101.918335 352.557800 -203.000015 23.336426 159.442078 -203.000015 23.336548 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 352.557800 -219.000015 23.336426 489.663452 -219.000015 160.442139 404.440125 -219.000015 -101.918335 614.918335 -203.000015 108.559937 404.440125 -203.000015 -101.918335 614.918335 -219.000015 108.559937 489.663452 -203.000015 160.442139 352.557800 -203.000015 23.336426 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 346.072632 -219.000000 38.993530 474.006653 -219.000000 166.927612 352.557983 -219.000000 23.336731 489.663483 -59.000000 160.442505 352.557983 -59.000000 23.336731 489.663483 -219.000000 160.442505 474.006653 -59.000000 166.927612 346.072632 -59.000000 38.993530 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 474.006653 -219.000000 166.927612 474.006470 -219.000000 347.072632 489.663483 -219.000000 160.442505 489.663269 -59.000000 353.557983 489.663483 -59.000000 160.442505 489.663269 -219.000000 353.557983 474.006470 -59.000000 347.072632 474.006653 -59.000000 166.927612 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 489.663452 -219.000015 160.442139 489.663574 -219.000015 353.557800 614.918335 -219.000015 108.559937 614.918335 -203.000015 405.440125 614.918335 -203.000015 108.559937 614.918335 -219.000015 405.440125 489.663574 -203.000015 353.557800 489.663452 -203.000015 160.442139 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 489.663574 -219.000015 353.557800 352.557892 -219.000015 490.663452 614.918335 -219.000015 405.440125 404.440094 -203.000015 615.918335 614.918335 -203.000015 405.440125 404.440094 -219.000015 615.918335 352.557892 -203.000015 490.663452 489.663574 -203.000015 353.557800 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 474.006470 -219.000000 347.072632 346.072388 -219.000000 475.006653 489.663269 -219.000000 353.557983 352.557556 -59.000000 490.663513 489.663269 -59.000000 353.557983 352.557556 -219.000000 490.663513 346.072388 -59.000000 475.006653 474.006470 -59.000000 347.072632 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 175.249649 -280.000000 452.499908 60.499928 -280.000000 337.749756 168.764282 -280.000000 468.156708 44.843082 -120.000000 344.234924 168.764282 -120.000000 468.156708 44.843082 -280.000000 344.234924 60.499928 -120.000000 337.749756 175.249649 -120.000000 452.499908 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 60.499928 -280.000000 337.749756 60.500122 -280.000000 176.249634 44.843082 -280.000000 344.234924 44.843262 -120.000000 169.764282 44.843082 -120.000000 344.234924 44.843262 -280.000000 169.764282 60.500122 -120.000000 176.249634 60.499928 -120.000000 337.749756 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 brush vertices 60.500122 -280.000000 176.249634 175.250244 -280.000000 61.499878 44.843262 -280.000000 169.764282 168.765076 -120.000000 45.843018 44.843262 -120.000000 169.764282 168.765076 -280.000000 45.843018 175.250244 -120.000000 61.499878 60.500122 -120.000000 176.249634 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 175.250244 -280.000000 61.499878 336.750366 -280.000000 61.500122 168.765076 -280.000000 45.843018 343.235718 -120.000000 45.843262 168.765076 -120.000000 45.843018 343.235718 -280.000000 45.843262 336.750366 -120.000000 61.500122 175.250244 -120.000000 61.499878 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 336.750366 -280.000000 61.500122 451.500061 -280.000000 176.250244 343.235718 -280.000000 45.843262 467.156921 -120.000000 169.765137 343.235718 -120.000000 45.843262 467.156921 -280.000000 169.765137 451.500061 -120.000000 176.250244 336.750366 -120.000000 61.500122 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 451.500061 -280.000000 176.250244 451.499878 -280.000000 337.750366 467.156921 -280.000000 169.765137 467.156738 -120.000000 344.235718 467.156921 -120.000000 169.765137 467.156738 -280.000000 344.235718 451.499878 -120.000000 337.750366 451.500061 -120.000000 176.250244 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 451.499878 -280.000000 337.750366 336.749756 -280.000000 452.500061 467.156738 -280.000000 344.235718 343.234924 -120.000000 468.156921 467.156738 -120.000000 344.235718 343.234924 -280.000000 468.156921 336.749756 -120.000000 452.500061 451.499878 -120.000000 337.750366 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 326.245056 -280.000000 228.132202 326.245178 -280.000000 285.867676 451.500000 -280.000000 176.250000 451.500000 -264.000000 337.750000 451.500000 -264.000000 176.250000 451.500000 -280.000000 337.750000 326.245178 -264.000000 285.867676 326.245056 -264.000000 228.132202 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 326.245178 -280.000000 285.867676 284.867798 -280.000000 327.245117 451.500000 -280.000000 337.750000 336.750000 -264.000000 452.500000 451.500000 -264.000000 337.750000 336.750000 -280.000000 452.500000 284.867798 -264.000000 327.245117 326.245178 -264.000000 285.867676 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 284.867798 -280.000000 327.245117 227.132339 -280.000000 327.245178 336.750000 -280.000000 452.500000 175.249969 -264.000000 452.499969 336.750000 -264.000000 452.500000 175.249969 -280.000000 452.499969 227.132339 -264.000000 327.245178 284.867798 -264.000000 327.245117 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 227.132339 -280.000000 327.245178 185.754868 -280.000000 285.867828 175.249969 -280.000000 452.499969 60.499985 -264.000000 337.749969 175.249969 -264.000000 452.499969 60.499985 -280.000000 337.749969 185.754868 -264.000000 285.867828 227.132339 -264.000000 327.245178 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 185.754868 -280.000000 285.867828 185.754700 -280.000000 228.132324 60.499985 -280.000000 337.749969 60.500000 -264.000000 176.250000 60.499985 -264.000000 337.749969 60.500000 -280.000000 176.250000 185.754700 -264.000000 228.132324 185.754868 -264.000000 285.867828 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 233.617508 -280.000000 311.588287 201.411682 -280.000000 279.382477 227.132172 -280.000000 327.245087 185.754807 -120.000000 285.867676 227.132172 -120.000000 327.245087 185.754807 -280.000000 285.867676 201.411682 -120.000000 279.382477 233.617508 -120.000000 311.588287 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 278.382446 -280.000000 311.588318 233.617508 -280.000000 311.588287 284.867676 -280.000000 327.245178 227.132172 -120.000000 327.245087 284.867676 -120.000000 327.245178 227.132172 -280.000000 327.245087 233.617508 -120.000000 311.588287 278.382446 -120.000000 311.588318 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 310.588257 -280.000000 279.382446 278.382446 -280.000000 311.588318 326.245117 -280.000000 285.867798 284.867676 -120.000000 327.245178 326.245117 -120.000000 285.867798 284.867676 -280.000000 327.245178 278.382446 -120.000000 311.588318 310.588257 -120.000000 279.382446 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 310.588257 -280.000000 234.617554 310.588257 -280.000000 279.382446 326.245117 -280.000000 228.132324 326.245117 -120.000000 285.867798 326.245117 -120.000000 228.132324 326.245117 -280.000000 285.867798 310.588257 -120.000000 279.382446 310.588257 -120.000000 234.617554 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 278.382446 -280.000000 202.411743 310.588257 -280.000000 234.617554 284.867798 -280.000000 186.754883 326.245117 -120.000000 228.132324 284.867798 -120.000000 186.754883 326.245117 -280.000000 228.132324 310.588257 -120.000000 234.617554 278.382446 -120.000000 202.411743 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 233.617554 -280.000000 202.411621 278.382446 -280.000000 202.411743 227.132324 -280.000000 186.754761 284.867798 -120.000000 186.754883 227.132324 -120.000000 186.754761 284.867798 -280.000000 186.754883 278.382446 -120.000000 202.411743 233.617554 -120.000000 202.411621 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 201.411682 -280.000000 234.617554 233.617554 -280.000000 202.411621 185.754822 -280.000000 228.132202 227.132324 -120.000000 186.754761 185.754822 -120.000000 228.132202 227.132324 -280.000000 186.754761 233.617554 -120.000000 202.411621 201.411682 -120.000000 234.617554 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip brush vertices 201.411682 -280.000000 279.382477 201.411682 -280.000000 234.617554 185.754807 -280.000000 285.867676 185.754822 -120.000000 228.132202 185.754807 -120.000000 285.867676 185.754822 -280.000000 228.132202 201.411682 -120.000000 234.617554 201.411682 -120.000000 279.382477 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 284.867676 -280.000000 186.754761 326.245056 -280.000000 228.132202 336.750000 -280.000000 61.500000 451.500000 -264.000000 176.250000 336.750000 -264.000000 61.500000 451.500000 -280.000000 176.250000 326.245056 -264.000000 228.132202 284.867676 -264.000000 186.754761 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip brush vertices 227.132202 -280.000000 186.754883 284.867676 -280.000000 186.754761 175.250000 -280.000000 61.500000 336.750000 -264.000000 61.500000 175.250000 -264.000000 61.500000 336.750000 -280.000000 61.500000 284.867676 -264.000000 186.754761 227.132202 -264.000000 186.754883 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 185.754700 -280.000000 228.132324 227.132202 -280.000000 186.754883 60.500000 -280.000000 176.250000 175.250000 -264.000000 61.500000 60.500000 -264.000000 176.250000 175.250000 -280.000000 61.500000 227.132202 -264.000000 186.754883 185.754700 -264.000000 228.132324 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 168.764282 760.000000 468.156708 240.000000 760.000000 469.000000 175.249649 760.000000 452.499908 240.000000 920.000000 453.000000 175.249649 920.000000 452.499908 240.000000 760.000000 453.000000 240.000000 920.000000 469.000000 168.764282 920.000000 468.156708 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 240.000000 920.000000 469.000000 272.000000 920.000000 469.000000 272.000000 920.000000 453.000000 240.000000 920.000000 453.000000 240.000000 760.000000 469.000000 272.000000 760.000000 469.000000 272.000000 760.000000 453.000000 240.000000 760.000000 453.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_fullclip brush vertices 346.072388 699.000000 475.006653 165.927338 699.000000 475.006439 352.557556 699.000000 490.663513 159.442001 859.000000 490.663269 352.557556 859.000000 490.663513 159.442001 699.000000 490.663269 165.927338 859.000000 475.006439 346.072388 859.000000 475.006653 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip brush vertices 101.074158 699.000000 631.574829 240.000000 698.000000 632.000000 107.559525 699.000000 615.918091 240.000000 858.000000 616.000000 107.559525 859.000000 615.918091 240.000000 698.000000 616.000000 240.000000 858.000000 632.000000 101.074158 859.000000 631.574829 faces 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 brush vertices 240.000000 858.000000 632.000000 272.000000 858.000000 632.000000 272.000000 858.000000 616.000000 240.000000 858.000000 616.000000 240.000000 698.000000 632.000000 272.000000 698.000000 632.000000 272.000000 698.000000 616.000000 240.000000 698.000000 616.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_fullclip brush vertices 459.564697 585.000000 749.001770 272.000000 585.000000 749.000000 466.049927 585.000000 764.658630 272.000000 745.000000 765.000000 466.049927 745.000000 764.658630 272.000000 585.000000 765.000000 272.000000 745.000000 749.000000 459.564697 745.000000 749.001770 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 brush vertices 45.949112 585.000000 764.657959 240.000000 585.000000 765.000000 52.434471 585.000000 749.001221 240.000000 745.000000 749.000000 52.434471 745.000000 749.001221 240.000000 585.000000 749.000000 240.000000 745.000000 765.000000 45.949112 745.000000 764.657959 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 240.000000 745.000000 765.000000 272.000000 745.000000 765.000000 272.000000 745.000000 749.000000 240.000000 745.000000 749.000000 240.000000 585.000000 765.000000 272.000000 585.000000 765.000000 272.000000 585.000000 749.000000 240.000000 585.000000 749.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_fullclip brush vertices 495.638245 431.000000 836.093018 272.000000 431.000000 836.000000 502.123352 431.000000 851.749878 272.000000 591.000000 852.000000 502.123352 591.000000 851.749878 272.000000 431.000000 852.000000 272.000000 591.000000 836.000000 495.638245 591.000000 836.093018 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 brush vertices 9.874306 431.000000 851.749207 240.000000 431.000000 852.000000 16.359726 431.000000 836.092468 240.000000 591.000000 836.000000 16.359726 591.000000 836.092468 240.000000 431.000000 836.000000 240.000000 591.000000 852.000000 9.874306 591.000000 851.749207 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 240.000000 591.000000 852.000000 272.000000 591.000000 852.000000 272.000000 591.000000 836.000000 240.000000 591.000000 836.000000 240.000000 431.000000 852.000000 272.000000 431.000000 852.000000 272.000000 431.000000 836.000000 240.000000 431.000000 836.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_fullclip brush vertices -2.689880 240.000000 882.084961 240.000000 240.000000 882.000000 3.795403 240.000000 866.428101 240.000000 400.000000 866.000000 3.795403 400.000000 866.428101 240.000000 240.000000 866.000000 240.000000 400.000000 882.000000 -2.689880 400.000000 882.084961 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 240.000000 400.000000 882.000000 272.000000 400.000000 882.000000 272.000000 400.000000 866.000000 240.000000 400.000000 866.000000 240.000000 240.000000 882.000000 272.000000 240.000000 882.000000 272.000000 240.000000 866.000000 240.000000 240.000000 866.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_fullclip brush vertices 495.638245 49.000000 836.093018 272.000000 49.000000 836.000000 502.123352 49.000000 851.749878 272.000000 209.000000 852.000000 502.123352 209.000000 851.749878 272.000000 49.000000 852.000000 272.000000 209.000000 836.000000 495.638245 209.000000 836.093018 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 brush vertices 9.874306 49.000000 851.749207 240.000000 49.000000 852.000000 16.359726 49.000000 836.092468 240.000000 209.000000 836.000000 16.359726 209.000000 836.092468 240.000000 49.000000 836.000000 240.000000 209.000000 852.000000 9.874306 209.000000 851.749207 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 45.949112 -105.000000 764.657959 240.000000 -105.000000 765.000000 52.434471 -105.000000 749.001221 240.000000 55.000000 749.000000 52.434471 54.999985 749.001221 240.000000 -105.000000 749.000000 240.000000 55.000000 765.000000 45.949112 54.999985 764.657959 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 brush vertices 240.000000 55.000000 765.000000 272.000000 55.000000 765.000000 272.000000 55.000000 749.000000 240.000000 55.000000 749.000000 240.000000 -105.000000 765.000000 272.000000 -105.000000 765.000000 272.000000 -105.000000 749.000000 240.000000 -105.000000 749.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_fullclip brush vertices 101.074158 -219.000000 631.574829 240.000000 -219.000000 632.000000 107.559525 -219.000000 615.918091 240.000000 -107.000000 616.000000 107.559525 -107.000000 615.918091 240.000000 -219.000000 616.000000 240.000000 -107.000000 632.000000 101.074158 -107.000000 631.574829 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 240.000000 -107.000000 632.000000 272.000000 -107.000000 632.000000 272.000000 -107.000000 616.000000 240.000000 -107.000000 616.000000 240.000000 -219.000000 632.000000 272.000000 -219.000000 632.000000 272.000000 -219.000000 616.000000 240.000000 -219.000000 616.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_fullclip brush vertices 168.764282 -280.000000 468.156708 240.000000 -280.000000 469.000000 175.249649 -280.000000 452.499908 240.000000 -120.000000 453.000000 175.249649 -120.000000 452.499908 240.000000 -280.000000 453.000000 240.000000 -120.000000 469.000000 168.764282 -120.000000 468.156708 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 459.564697 -105.000000 749.001770 272.000000 -105.000000 749.000000 466.049927 -105.000000 764.658630 272.000000 55.000000 765.000000 466.049927 55.000000 764.658630 272.000000 -105.000000 765.000000 272.000000 55.000000 749.000000 459.564697 55.000000 749.001770 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 brush vertices 272.000000 760.000000 469.000000 343.234924 760.000000 468.156921 272.000000 760.000000 453.000000 336.749756 920.000000 452.500061 272.000000 920.000000 453.000000 336.749756 760.000000 452.500061 343.234924 920.000000 468.156921 272.000000 920.000000 469.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 272.000000 698.000000 632.000000 410.925049 699.000000 631.575317 272.000000 698.000000 616.000000 404.439850 859.000000 615.918457 272.000000 858.000000 616.000000 404.439850 699.000000 615.918457 410.925049 859.000000 631.575317 272.000000 858.000000 632.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 brush vertices 272.000000 240.000000 882.000000 514.689941 240.000000 882.084961 272.000000 240.000000 866.000000 508.204712 400.000000 866.428101 272.000000 400.000000 866.000000 508.204712 240.000000 866.428101 514.689941 400.000000 882.084961 272.000000 400.000000 882.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 272.000000 -219.000000 632.000000 410.925049 -219.000000 631.575317 272.000000 -219.000000 616.000000 404.439850 -107.000000 615.918457 272.000000 -107.000000 616.000000 404.439850 -219.000000 615.918457 410.925049 -107.000000 631.575317 272.000000 -107.000000 632.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 272.000000 -280.000000 469.000000 343.234924 -280.000000 468.156921 272.000000 -280.000000 453.000000 336.749756 -120.000000 452.500061 272.000000 -120.000000 453.000000 336.749756 -280.000000 452.500061 343.234924 -120.000000 468.156921 272.000000 -120.000000 469.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 brush vertices 240.000000 -120.000000 469.000000 272.000000 -120.000000 469.000000 272.000000 -120.000000 453.000000 240.000000 -120.000000 453.000000 240.000000 -280.000000 469.000000 272.000000 -280.000000 469.000000 272.000000 -280.000000 453.000000 240.000000 -280.000000 453.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_fullclip brush vertices 240.000000 209.000000 852.000000 272.000000 209.000000 852.000000 272.000000 209.000000 836.000000 240.000000 209.000000 836.000000 240.000000 49.000000 852.000000 272.000000 49.000000 852.000000 272.000000 49.000000 836.000000 240.000000 49.000000 836.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_fullclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_fullclip entity type CameraPath UInt8 posLerp 2 UInt8 angleLerp 2 entity type PlayerSpawn Vector3 position 256.000000 256.000000 256.000000 Bool8 teamB 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 256.000000 256.000000 816.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0
d7e8664cf30e58ede0ee9a55c82b90c7c7fb4ea7
fd6e45f66c41ad779a3d47c3bf8ebfa140d3d657
/P4 - Linear equations systems: direct methods/Ejercicio 2 (Gauss banda).sce
c3f619661e1c9d1f9b97e65215e271608ae338cf
[]
no_license
jere1882/Numerical-Analysis-Assignments
7f474e2020d010f9f9c3dceff5e48c03b0d38652
1074f92ca93d0a402259f92a0f61f105f25e5230
refs/heads/master
2021-09-06T20:00:36.411386
2018-02-10T18:04:38
2018-02-10T18:04:38
121,039,769
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,268
sce
Ejercicio 2 (Gauss banda).sce
function x = resoltrsup(A, b) n = size(A,1) x(n)= b(n)/A(n,n) for i=n-1:-1:1 x(i) = (b(i)-A(i, i+1:n)*x(i+1:n))/A(i, i) end endfunction function [T, c , cant_op] = gauss_matriz_2banda(A, b) // Asumimos una matriz de al menos 3x3 2-banda con diagonal no nula factorizable sin intercambio de cant_op=0 n = size(A,1) for k = 1:n-1 //columnas if (A(k+1,k)==0) then continue end if (A(k,k)==0) then disp("Precisa intercambio de filas.") break end mjk = A(k+1, k)/A(k,k) cant_op=cant_op+1 A(k+1, k)=0 cant_op=cant_op+1 A(k+1, k+1) = A(k+1, k+1) - mjk * A(k, k+1) cant_op=cant_op+1 b(k+1) = b(k+1) - mjk*b(k) cant_op=cant_op+1 end T= A c= b endfunction function [T, c] = gauss_matriz_pbanda(A, b , p) // Asumimos una matriz p-banda con tamaños adecuados n = size(A,1) if n<p then disp("Tamaño inadecuado.") end for k = 1:n //columnas for j = k+1:k+p-1 // filas mjk = A(j, k)/A(k,k) A(j, k)=0 A(j, k+1:n) = A(j, k+1:n) - mjk * A(k, k+1:n) b(j) = b(j) - mjk*b(k) end end T= A c= b endfunction
6ca2663c1c5f0f3b65280393e7cb972316eab208
36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd
/Quake Champions RL, LG, RG TRAINING.sce
ab4f76c2bbe57aad6da225c459e52fec32df5a23
[]
no_license
Ahmad6543/Scenarios
cef76bf19d46e86249a6099c01928e4e33db5f20
6a4563d241e61a62020f76796762df5ae8817cc8
refs/heads/master
2023-03-18T23:30:49.653812
2020-09-23T06:26:05
2020-09-23T06:26:05
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
46,489
sce
Quake Champions RL, LG, RG TRAINING.sce
Name=Quake Champions RL, LG, RG TRAINING PlayerCharacters=QCP Player BotCharacters=Circle Quaker.bot;Tank QC Long Strafes.bot;Tank QC Long Strafes.bot;Tiny QC Long Strafes.bot;Tiny QC Long Strafes.bot;Tiny QC Fast Strafes.bot;Tank QC Fast Strafes.bot IsChallenge=true Timelimit=80.0 PlayerProfile=QCP Player AddedBots=Circle Quaker.bot;Tank QC Long Strafes.bot;Tank QC Long Strafes.bot;Tank QC Fast Strafes.bot;Tiny QC Long Strafes.bot;Tiny QC Long Strafes.bot;Tiny QC Fast Strafes.bot PlayerMaxLives=0 BotMaxLives=0;0;0;0;0;0;0 PlayerTeam=1 BotTeams=0;0;0;0;0;0;0 MapName=kovaim1.map MapScale=6.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=true InvincibleBots=false Timescale=1.0 BlockHealthbars=true TimeRefilledByKill=0.0 ScoreToWin=10000.0 ScorePerDamage=1.0 ScorePerKill=20.0 ScorePerMidairDirect=80.0 ScorePerAnyDirect=50.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=true ScoreMultDamageEfficiency=true ScoreMultKillEfficiency=true GameTag=Quake Champions WeaponHeroTag=QC, RL, Direct, midairs, LG Tracking, QC Railgun, Combo DifficultyTag=2 AuthorsTag=decizion, TauntyArmodillo BlockHitMarkers=true BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=You play on the kovaim1 map with a 6.0 scale. There is seven bots (with different strafe, stacks and jumping settings). Three weapons are available based on QC settings: rg (80dmg), lg (7dmg) and rl (100dmg direct). You get more points with direct & midairs. You can use the jump abilities every 40 seconds if you feel the need too but watch out some bots can also use it but at very rare occasions lol. Thanks to TauntyArmodillo for providing the current qc settings. GameVersion=1.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 [Aim Profile] Name=At Feet 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=-200.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Aim Profile] Name=Low Skill At Feet MinReactionTime=0.35 MaxReactionTime=0.45 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=20.0 TrackSpeed=3.0 TrackError=5.0 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=60.0 ShootFOV=25.0 VerticalAimOffset=-200.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Aim Profile] Name=Low Skill MinReactionTime=0.35 MaxReactionTime=0.45 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=20.0 TrackSpeed=3.0 TrackError=5.0 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=60.0 ShootFOV=25.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Bot Profile] Name=Circle Quaker DodgeProfileNames=Circle Strafe;Long Strafes Jumping DodgeProfileWeights=2.0;4.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=0.0;0.0;0.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Quaker SeeThroughWalls=false [Bot Profile] Name=Tank QC Long Strafes DodgeProfileNames=Long Strafes;Long Strafes Jumping DodgeProfileWeights=1.0;2.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=QCP Player SeeThroughWalls=false [Bot Profile] Name=Tiny QC Long Strafes DodgeProfileNames=Long Strafes;Long Strafes Jumping DodgeProfileWeights=2.0;3.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Tiny Quake Champion SeeThroughWalls=false [Bot Profile] Name=Tiny QC Fast Strafes DodgeProfileNames=Short Strafes DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Tiny Quake Champion SeeThroughWalls=false [Bot Profile] Name=Tank QC Fast Strafes DodgeProfileNames=Short Strafes;Very Short Strafes + Jump;Long Strafes Jumping DodgeProfileWeights=1.0;3.0;2.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Tank Quake Champion SeeThroughWalls=false [Character Profile] Name=QCP Player MaxHealth=125.0 WeaponProfileNames=Railgun;QC RL;LG QC;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=1300.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=true InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=320.0 MainBBRadius=48.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=Jump.abilmov;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=2.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 [Character Profile] Name=Quaker MaxHealth=200.0 WeaponProfileNames=;;LG;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=1500.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=850.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=320.0 MainBBRadius=58.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=Jump.abilmov;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 [Character Profile] Name=Tiny Quake Champion MaxHealth=200.0 WeaponProfileNames=Railgun;Rocket Launcher;LG;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=1300.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=300.0 MainBBRadius=44.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=300.0 ProjBBRadius=48.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 [Character Profile] Name=Tank Quake Champion MaxHealth=275.0 WeaponProfileNames=Railgun;Rocket Launcher;LG;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=1300.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=300.0 MainBBRadius=64.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=70.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 [Dodge Profile] Name=Circle Strafe MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.5 MaxLRTimeChange=1.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.2 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Oppose 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 [Dodge Profile] Name=Long Strafes Jumping MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=true MinLRTimeChange=0.5 MaxLRTimeChange=1.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.9 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.2 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Dodge Profile] Name=Long Strafes MaxTargetDistance=5000.0 MinTargetDistance=0.0 ToggleLeftRight=true ToggleForwardBack=true MinLRTimeChange=0.5 MaxLRTimeChange=1.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.2 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Dodge Profile] Name=Short Strafes 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=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.2 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Dodge Profile] Name=Very Short Strafes + Jump MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=true MinLRTimeChange=0.1 MaxLRTimeChange=0.3 MinFBTimeChange=0.1 MaxFBTimeChange=0.3 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.6 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Weapon Profile] Name=Railgun Type=Hitscan ShotsPerClick=1 DamagePerShot=90.0 KnockbackFactor=9.0 TimeBetweenShots=1.4 Pierces=true 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=false HeadshotMultiplier=2.0 MagazineMax=10 AmmoPerShot=1 ReloadTimeFromEmpty=1.0 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.5 WallParticleEffect=None HitParticleEffect=Blood BounceOffWorld=false BounceFactor=0.0 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=9.0 RecoilNegatable=false DecalType=1 DecalSize=30.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=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Quake Champions ADSAllowUserOverrideFOV=true Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=1.0,1.0,-1.0,5.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=1.0,1.0,-1.0,5.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=true TriggerBotDelay=0.01 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.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=QC RL Type=Projectile ShotsPerClick=1 DamagePerShot=100.0 KnockbackFactor=6.0 TimeBetweenShots=0.8 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=6787.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=6787.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=100.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=10 AmmoPerShot=1 ReloadTimeFromEmpty=1.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Rocket VisualLifetime=0.1 WallParticleEffect=Flare HitParticleEffect=Flare BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=2.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=0.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=0 DecalSize=30.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=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.1 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Quake Champions ADSAllowUserOverrideFOV=true Explosive=true Radius=550.0 DamageAtCenter=100.0 DamageAtEdge=1.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=true SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=2 AAPreferClosestPlayer=false AAAlpha=0.5 AAMaxSpeed=0.5 AADeadZone=0.0 AAFOV=180.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=true TriggerBotDelay=0.001 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.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=LG QC Type=Hitscan ShotsPerClick=1 DamagePerShot=7.0 KnockbackFactor=5.0 TimeBetweenShots=0.05 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=2400.0 GravityScale=1.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=100 AmmoPerShot=1 ReloadTimeFromEmpty=1.3 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=7.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.05 WallParticleEffect=None HitParticleEffect=Flare BounceOffWorld=false BounceFactor=0.0 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=100.000 Y=65.000 Z=-80.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=9.0 RecoilNegatable=false DecalType=0 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=true AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=60.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.1 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Quake Champions ADSAllowUserOverrideFOV=true Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=LG Type=Hitscan ShotsPerClick=1 DamagePerShot=6.0 KnockbackFactor=2.0 TimeBetweenShots=0.046 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=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=7.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.05 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.0 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=-80.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=0 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=true AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true 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 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Quake Champions ADSAllowUserOverrideFOV=true Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false [Weapon Profile] Name=Rocket Launcher Type=Projectile ShotsPerClick=1 DamagePerShot=120.0 KnockbackFactor=4.0 TimeBetweenShots=0.8 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=5090.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=5090.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=100.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Rocket VisualLifetime=0.1 WallParticleEffect=Flare HitParticleEffect=Flare BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=2.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=0.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=0 DecalSize=30.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=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Quake Champions ADSAllowUserOverrideFOV=true Explosive=true Radius=500.0 DamageAtCenter=120.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=true SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=2 AAPreferClosestPlayer=false AAAlpha=0.5 AAMaxSpeed=0.5 AADeadZone=0.0 AAFOV=180.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=true TriggerBotDelay=0.001 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.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false [Movement Ability Profile] Name=Jump MaxCharges=1.0 ChargeTimer=2.5 ChargesRefundedOnKill=0.0 DelayAfterUse=40.0 FullyAuto=false AbilityDuration=0.0 LockDirectionForDuration=true NegateGravityForDuration=false MainVelocity=900.0 MainVelocityCanGoVertical=true MainVelocitySetToMovementKeys=false UpVelocity=3000.0 EndVelocityFactor=1.0 Hurtbox=false HurtboxRadius=50.0 HurtboxDamage=50.0 HurtboxGroundKnockbackFactor=1.0 HurtboxAirKnockbackFactor=1.0 AbilityBlocksTurning=false AbilityBlocksMovement=true AbilityBlocksAttack=false AttackCancelsAbility=false AbilityReloadsWeapon=false HealthRestore=0.0 AIUseInCombat=true AIUseOutOfCombat=true AIUseOnGround=true AIUseInAir=false AIReuseTimer=7.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.255 AIDamageReactionMaxDelay=0.25 AIDamageReactionCooldown=2.0 AIDamageReactionThreshold=0.0 AIDamageReactionResetTimer=0.1 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end UInt8 playersMin 1 UInt8 playersMax 16 brush vertices -576.000000 0.000000 256.000000 448.000000 0.000000 256.000000 448.000000 0.000000 -768.000000 -576.000000 0.000000 -768.000000 -576.000000 -16.000000 256.000000 448.000000 -16.000000 256.000000 448.000000 -16.000000 -768.000000 -576.000000 -16.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -576.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 272.000000 -784.000000 -576.000000 272.000000 -784.000000 -576.000000 0.000000 -768.000000 448.000000 0.000000 -768.000000 448.000000 0.000000 -784.000000 -576.000000 0.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -576.000000 272.000000 272.000000 448.000000 272.000000 272.000000 448.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 0.000000 272.000000 448.000000 0.000000 272.000000 448.000000 0.000000 256.000000 -576.000000 0.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 448.000000 272.000000 256.000000 464.000000 272.000000 256.000000 464.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 0.000000 256.000000 464.000000 0.000000 256.000000 464.000000 0.000000 -768.000000 448.000000 0.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -592.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 272.000000 -768.000000 -592.000000 272.000000 -768.000000 -592.000000 0.000000 256.000000 -576.000000 0.000000 256.000000 -576.000000 0.000000 -768.000000 -592.000000 0.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -592.000000 704.000000 256.000000 -576.000000 704.000000 256.000000 -576.000000 704.000000 -768.000000 -592.000000 704.000000 -768.000000 -592.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 272.000000 -768.000000 -592.000000 272.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 448.000000 704.000000 256.000000 464.000000 704.000000 256.000000 464.000000 704.000000 -768.000000 448.000000 704.000000 -768.000000 448.000000 272.000000 256.000000 464.000000 272.000000 256.000000 464.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 704.000000 -768.000000 448.000000 704.000000 -768.000000 448.000000 704.000000 -784.000000 -576.000000 704.000000 -784.000000 -576.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 272.000000 -784.000000 -576.000000 272.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 704.000000 272.000000 448.000000 704.000000 272.000000 448.000000 704.000000 256.000000 -576.000000 704.000000 256.000000 -576.000000 272.000000 272.000000 448.000000 272.000000 272.000000 448.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 720.000000 256.000000 448.000000 720.000000 256.000000 448.000000 720.000000 -768.000000 -576.000000 720.000000 -768.000000 -576.000000 704.000000 256.000000 448.000000 704.000000 256.000000 448.000000 704.000000 -768.000000 -576.000000 704.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 96.000000 -384.000000 -320.000000 96.000000 -384.000000 -320.000000 96.000000 -512.000000 -576.000000 96.000000 -512.000000 -576.000000 0.000000 -384.000000 -320.000000 0.000000 -384.000000 -320.000000 0.000000 -512.000000 -576.000000 0.000000 -512.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 192.000000 96.000000 0.000000 448.000000 96.000000 0.000000 448.000000 96.000000 -128.000000 192.000000 96.000000 -128.000000 192.000000 0.000000 0.000000 448.000000 0.000000 0.000000 448.000000 0.000000 -128.000000 192.000000 0.000000 -128.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 entity type PlayerSpawn Vector3 position -64.000000 0.000000 -736.000000 entity type CameraPath UInt32 entityIdAttachedTo 5 UInt8 posLerp 2 UInt8 angleLerp 2 entity type Effect Vector3 position 0.000000 256.000000 0.000000 String64 effectName internal/misc/reflectionprobe entity type Target Vector3 position 320.000000 256.000000 320.000000 Vector3 angles -135.000000 30.000000 0.000000 String32 name end entity type PlayerSpawn Vector3 position -64.000000 0.000000 224.000000 Vector3 angles 180.000000 0.000000 0.000000 entity type PlayerSpawn Vector3 position 416.000000 0.000000 -256.000000 Vector3 angles 270.000000 0.000000 0.000000 entity type PlayerSpawn Vector3 position -544.000000 0.000000 -256.000000 Vector3 angles 90.000000 0.000000 0.000000
d11398919d3f7c5cee3b42eb61bd128ed0c1217b
449d555969bfd7befe906877abab098c6e63a0e8
/3812/CH4/EX4.12/4_12_b.sce
84a6c32e5ae138d56db30dddc23de19a78a13743
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
371
sce
4_12_b.sce
//Example 4_12_b clc; clear; N=8; n=0:0.01:N; Wo=3*%pi/N; xn=1*ones(1,length(n))+1*sin(Wo*n+%pi/4); for k=0:N-2 C(k+1,:)=exp(-sqrt(-1)*Wo*n.*k); a(k+1)=xn*C(k+1,:)'/length(n); if(abs(a(k+1))<=0.1) a(k+1)=0; end end a=a'; a_conj=conj(a); ak=[a_conj($:-1:1),a(2:$)]; Mag_ak=abs(ak); k=-(N-2):(N-2); plot2d3('gnn',k,Mag_ak,5) xtitle('abs(ak)','k','ak')
740d37f5d5c5d7aad0b96be52346aa4c57c1e4eb
449d555969bfd7befe906877abab098c6e63a0e8
/3432/CH7/EX7.22/Ex7_22.sce
4e277f6264b0fc8ee07b1f79f7f7def7412b90f1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,377
sce
Ex7_22.sce
//Example 7.22 // SRL design for satellite attitude control xdel(winsid())//close all graphics Windows clear; clc; //------------------------------------------------------------------ //Transfer function for satellite attitude control system s=poly(0,'s'); nums=1; dens=s^2; num_s=1; den_s=(-s)^2; G0s=syslin('c',nums/dens); //G0(s) G0_s=syslin('c',num_s/den_s); //G0(-s) //evans(G0s*G0_s) evans(1/s^4) zoom_rect([-3 -3 3 3]) f=gca(); f.x_location = "origin" f.y_location = "origin" xset("color",2); h=legend(''); h.visible = "off" //Title, labels and grid to the figure exec .\fig_settings.sci; //custom script for setting figure properties title('Symmetric root locus for the satellite','fontsize',3); //------------------------------------------------------------------ //Root locus design //choose rho=4.07 that places pole at -1+-j rho=4.07; chr_eqn=(1+rho*G0s*G0_s) p=[-1+%i, -1-%i]; sig=real(p); omega=imag(p); plot(sig,omega,'ro') xstring(-2.2,0.5,["pole locations at";"$\rho=4.07$"]) //------------------------------------------------------------------ //pole-placement design; sys=tf2ss(G0s); exec('./acker_dk.sci', -1); K=acker_dk(sys.A,sys.B,p); syscl=syslin('c',(sys.A-sys.B*K),sys.B, sys.C, sys.D) disp(spec(syscl.A),"Closed loop eigen values"); //------------------------------------------------------------------
6445800c29e537d5261cacead76c418bd8261658
7ed1d2e173ac7ffd8b5c4aa3a8c69d2d4a24f3b7
/sestavy/směska/chyby/chyba 68/Chyba/@(GINADR)@/KOF/G32KOFS1.TST
c7fc5b7a64a1e07583553dca568c2f3d053329ed
[]
no_license
StepanSukovyc/navrhar-sestav
6b98e3ed56b0b9e15aec495fd32b7ec58eec7319
9b6fbca9dd62222f17a4e2522234871ea1554f6d
refs/heads/master
2023-07-29T02:24:17.924750
2021-09-08T10:47:29
2021-09-08T10:47:29
268,037,919
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,648
tst
G32KOFS1.TST
[program] revize=32KOFS136601Z21 dat_akt=2012-01-19 [files] @(GINADR)@\KOF\FRM 00000478.ALV s=5015 c=49411 00000AUR.XME s=2903 c=31131 000002K8.ALF s=5349 c=50419 000001NV.ALV s=-2 00000A56.XME s=-2 00000060.ALF s=-2 00000060.ZIP s=-2 000000DZ.ALV s=-2 000002BT.ALV s=-2 00000A9T.XME s=-2 000000FQ.ALF s=-2 000002R6.ALV s=-2 000002R8.ALV s=-2 000001PJ.ALV s=-2 00000A5E.XME s=-2 0000006A.ALF s=-2 0000006A.ZIP s=-2 000000DY.ALV s=-2 000000E0.ALV s=-2 0000008H.ALV s=-2 0000008D.ALV s=-2 00000211.ALV s=-2 000000AF.ALF s=-2 000002QA.alf s=-2 00000A6R.XME s=-2 000000XJ.ALV s=-2 0000000X.alf s=-2 00000013.alf s=-2 00000018.alf s=-2 0000013I.alf s=-2 0000013J.alf s=-2 000002A3.alf s=-2 000002A4.alf s=-2 000002A5.alf s=-2 000002A6.alf s=-2 000002A7.alf s=-2 00000A0U.xme s=-2 @(GINADR)@\KOF G32KOFS1.TST
51aea9f6e1b330b07d5b5512f51bc2ec33ae4847
449d555969bfd7befe906877abab098c6e63a0e8
/608/CH15/EX15.20/15_20.sce
f07e74d43a344e711281eb266102a6f2fff46497
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
844
sce
15_20.sce
//Problem 15.20: A coil of inductance 80 mH and negligible resistance is connected in series with a capacitance of 0.25 μF and a resistor of resistance 12.5 ohms across a 100 V, variable frequency supply. Determine (a) the resonant frequency, and (b) the current at resonance. How many times greater than the supply voltage is the voltage across the reactances at resonance? //initializing the variables: L = 80E-3; // in Henry C = 0.25E-6; // in Farads R = 12.5; // in ohms V = 100; // in Volts //calculation: fr = 1/(2*%pi*((L*C)^0.5)) //At resonance, XL = Xc and impedance Z = R I = V/R VL = I*(2*%pi*fr*L) Vc = I/(2*%pi*fr*C) Vm = VL/V printf("\n\n Result \n\n") printf("\n (a)the resonant frequency = %.1f Hz",fr) printf("\n (b)Current, I = %.0f A",I) printf("\n (b)Voltage magnification at resonance = %.3f V",Vm)
e497bbb42fab3ffb930848193eb32841dea4b069
449d555969bfd7befe906877abab098c6e63a0e8
/2795/CH7/EX7.13/Ex7_13.sce
6ca5e3833269b3e6522b5c9d4032b8b5ff308f26
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
356
sce
Ex7_13.sce
// Scilab Code Ex7.13: Page-265 (2014) clc; clear; a0 = 1; // For simplicity assume bohr radius to be unity P = integrate('4/a0^3*exp(-2*r/a0)*r^2', 'r', a0, 10); printf("\nThe probability of the electron in the 1s state of the hydrogen atom = %4.2f", P); // Result // The probability of the electron in the 1s state of the hydrogen atom = 0.68
30c823a1ce7a9bd504f1c4d056e30870d9836e68
2c7d57943183c872fd791ffd9d27ee476338a4d3
/exampleFiles/justScore.tst
47ccefa0743490e8b328984475a71ce5f59900df
[]
no_license
davenomiddlenamecurtis/geneVarAssoc
0be49198a2dcfff234f9fcc0ebbf43a53732c6f8
0354e9df1c4c9ac4ae68c499831ecfdca16728ec
refs/heads/master
2023-08-17T01:02:24.576182
2023-08-10T12:32:37
2023-08-10T12:32:37
60,511,430
3
1
null
null
null
null
UTF-8
Scilab
false
false
17
tst
justScore.tst
score 0.0 0 1
0f386f3063e88d4b36cc94d598d6bfb9a3a1bae7
449d555969bfd7befe906877abab098c6e63a0e8
/1427/CH24/EX24.9/24_9.sce
95d5ad07d0b53988fe15094695175712cbb62a27
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
535
sce
24_9.sce
//ques-24.9 //Calculating concentration of a compound in water and volume of chloroform which will contain 10g of this compound clc K=4.2;//partition coefficient m=2;//mass of compound taken (in g) x=(m/(K/2+1))/100;//concentration of solute in aqueous layer (in g/mL) a=m-(x*100);//amount of solute in 50mL chloroform (in g) v=50*(10/a);//volume of chloroform required (in mL) printf("The concentration of the compound in water is %.5f g/mL and volume of chloroform which will contain 10g of this compound is %.0f mL.",x,v);
f952f73a84f28802a10c27d4fa1e3a51aae51223
449d555969bfd7befe906877abab098c6e63a0e8
/2150/CH7/EX7.6/ex7_6.sce
81b85fb14bf31a8b5d2a7a45c6b7b67dbc2c34e8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
200
sce
ex7_6.sce
// Exa 7.6 clc; clear; close; // Given data V_T = 1;// in V I_D = 4;// in mA V_GS = 5;// in V V_GSth = 1;// in V K = I_D/(V_GS-V_GSth)^2;// in mA/V^2 disp(K,"The value of K in mA/V^2 is");
23e12e2d49cdce11e531785504cf04f4a1bcc795
449d555969bfd7befe906877abab098c6e63a0e8
/2672/CH5/EX5.39/Ex5_39.sce
99c58bb6080f2e79643df8d0b8b4f99e78dbdcf7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
617
sce
Ex5_39.sce
//Example 5_39 clc; clear; close; format('v',6); //given data : //For IL=0;//A V0=60;//V V=200;//V(Supply Voltage) ID=5:40;//mA R=(V-V0)/max(ID);//kohm(R is >= this value) //For IL=ILmax;//A IT=max(ID);//mA ID=min(ID)///mA(ID<=this value) Imax=IT-ID;///mA disp(Imax,"(a) Imax(mA) : "); //Part (b) IL=25;//mA ID=5:40;//mA //Taking minimum current for good regulation IT=min(ID)+IL;///mA Vmax1=IT*R+V0;//V //Taking maximum current for good regulation IT=max(ID)+IL;///mA Vmax2=IT*R+V0;//V disp("(b) Without loss of regulation, V may vary from "+string(Vmax1)+" V to "+string(Vmax2)+" V.");
11dd22f3e97f542afd488a27f5f5f506862568b8
449d555969bfd7befe906877abab098c6e63a0e8
/3784/CH8/EX8.1/Ex8_1.sce
b45c9526ddee344121d7e6592a77e5d9f5badfc4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,004
sce
Ex8_1.sce
clc P=5e+6// power rating in Watts Vl=11e+3// line voltage in Volts f=50// frequency of motor in Hz p1=0 N=6// no. of poles Rs=0// resistance of motor in ohm Xs=10// reactance of motor in ohm If=60// rated field current in amp //Solution Vph=Vl/sqrt(3)//phase voltage in Volts N1=750// speed of motor at rated motor current Is p2=36.869898//p2=acosd(0.8) Is=P/(sqrt(3)*Vl*cos(p1)) E=Vph-(Is*Xs*%i) Ns=120*f/N// synchronous speed of motor f1=N1*f/Ns// freaquency of motor while running at N1 Vph1=Vph*f1/(f)//phase voltage for speed N1 in V Xs1=(N1/Ns)*Xs//reactance of motor at speed N1 in ohm E2=Vph1-(Is*(cosd(p2)+%i*sind(p2))*(Xs1*%i)) E1=E*N1/Ns//in V If1=abs(E2)*If/abs(E1)//field current at N1 in amp P1=3*Vph1*Is*cosd(p2)//output power in kW wm=N1*2*%pi/60//angular speed in rad/sec T=P1/wm//torque in Nm printf('\n\n The Field Current=%0.1f Amp\n\n',If1) printf('\n\n The Torque for Rated Armature Current=%0.1f N-m\n\n',T) //The answers vary due to round off error
a5ccff278fa8d01f4a48d2c3c69912da006c0f40
449d555969bfd7befe906877abab098c6e63a0e8
/683/CH12/EX12.7/W_7.sce
6d6db4656b206c71afd257d6be10d38bab103007
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
269
sce
W_7.sce
// sum 12-7 clc; clear; sigut=415; sige=sigut/3; Ka=0.5; Kb=0.85; Kc=0.897; SCF=1.5; Kd=1/SCF; FOS=2; sige1=sige*Ka*Kb*Kc*Kd/FOS; Pa=50*10^3; h=10; t=0.707*h; l=Pa/(2*sige1*t); // printing data in scilab o/p window printf("l is %0.0f mm ",l);
cf647e47f9dcff8159538120d1c2c245a0688f7f
449d555969bfd7befe906877abab098c6e63a0e8
/503/CH7/EX7.4/ch7_4.sci
cbc29540f542e77e43f069d997d3079975f693fe
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
194
sci
ch7_4.sci
// to find distance b/w brushes clc; S=28; P=4; U=8; c=U*S/2; y_c=2*(c-1)/P; Y_c=55; C=(P/2)*Y_c+1; Y_cs=floor(S/P); Y_b=Y_cs*U+1; y_f=2*Y_c-Y_b; d=C/P; disp(d,'dis b/w brushes');
c498719298633d35e0e6cc48da246666cc4d13f0
449d555969bfd7befe906877abab098c6e63a0e8
/1970/CH8/EX8.5/CH08Exa5.sce
cb8e38e9252575bda604a9ae364ed3b92eb25bad
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
512
sce
CH08Exa5.sce
// Scilab code Exa8.5 : : Page-349 (2011) clc; clear; a_t = 5.38e-15; a_s = -23.7e-15; r_ot = 1.70e-15; r_os = 2.40e-15; m = 1.6748e-27; E = 1.6e-13; h_cut = 1.0549e-34; K_sqr = m*E/h_cut^2; sigma = 1/4*(3*4*%pi*a_t^2/(a_t^2*K_sqr+(1-1/2*K_sqr*a_t*r_ot)^2)+4*%pi*a_s^2/(a_s^2*K_sqr+(1-1/2*K_sqr*a_s*r_os)^2))*1e+028; // Total cross-section for n-p scattering, barn printf("\nThe total cross section for n-p scattering = %5.3f barn", sigma); // Result // The total cross section for n-p scattering = 2.911 barn
12bfbd3c375d17e7c50787a36b0c981de1f4fc9d
449d555969bfd7befe906877abab098c6e63a0e8
/2126/CH8/EX8.7.42/8_7_42.sce
c0102e14d1f99727c97285c8c52b2d05f653123c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
337
sce
8_7_42.sce
clc clear //Input data m=5 //Propellent rate in kg/s Pamb=1.013 //Ambient pressure in bar Pe=1.02 //Nozzle exit pressure in bar D=0.1 //Nozzle exit diameter in m Ce=1400 //Exit jet velocity in m/s //Calculation Ae=%pi*D^2/4 //Exit area in m^2 F=(m*Ce)+((Pe-Pamb)*Ae) //Thrust in N //Output printf('Thrust is %3i N',F)
20b6d2f07329356cd94df6aab80311ba54b1d1a0
449d555969bfd7befe906877abab098c6e63a0e8
/1523/CH6/EX6.30/ex6_30.sce
6c711a6754b6b311e806f1df1fb2d0a2db73d83f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
500
sce
ex6_30.sce
// Three-Phase Circuits :example 6.30 :(pg 6.31 & 6.32) VL=2000; N=0.9;//efficiency W1=300*10^3; W2=100*10^3; P=W1+W2; x=(sqrt(3)*((W1-W2)/(W1+W2))); phi=atand(x); pf=cosd(phi); IL=(P/(sqrt(3)*VL*pf)); printf("\nVL=2000 V \nN=0.9 \nW1=300kW \nW2=100kW"); printf("\nP=W1+W2 =%.f W",P);//Input Power printf("\ntan(phi)=(sqrt(3)*(W1-W2/W1+W2)) =%.3f",x); printf("\nphi=%.2f degrees ",phi); printf("\ncos(phi)=%.2f",pf);//Power factor printf("\nP=sqrt(3)*VL*IL*cos(phi) \nIL=%.2f A",IL);
34c28c6b14a6a8ed1d836daab5e0fbb892a1e908
449d555969bfd7befe906877abab098c6e63a0e8
/3733/CH17/EX17.16/Ex17_16.sce
0336aa547acbafbcdfe2a38f0d1ee8ed857df50e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,667
sce
Ex17_16.sce
// Example 17_16 clc;funcprot(0); // Given data m_s1=20;// tons/hr m_s1=20*10^3;// kg/hr m_a1=6;// kg/hr T_1=39;// °C T_2=28;// °C T_3=36;// °C gradT=15;// °C R=287;// J/kg.°C C_pa=1.005;// kJ/kg.°C C_pw=4.18;//kJ/kg.°C // Calculation // Considering section 1-1 // From steam tables,at T_1=39°C p_s1=0.06991;// bar v_s1=20.56;// m^3/kg h_s1=2572.6;// kJ/kg V_s1=(m_s1*10^3*v_s1);// m^3/hr // By Dalton's law, V_a1=V_s1;// m^3/hr p_a1=(m_a1*R*(T_1+273))/(V_a1);// N/m^2 p_a1=p_a1/10^5;// bar p_t=p_s1+p_a1;// bar //Considering section 2-2 //From steam tables,at T_2=28°C p_s2=0.0378;// bar v_s2=36.728;// m^3/kg h_s2=2552.7;// kJ/kg p_a2=p_t-p_s2;// bar V_a2=(m_a1*R*(T_2+273))/(p_a2*10^5);// m^3/hr //As per Dalton's law, V_s2=V_a2;// m^3/hr m_s2=V_a2/v_s2;// kg/hr // Considering section 3-3 // From steam tables,at T_3=36°C p_s3=0.0594;// bar v_s3=23.967;// m^3/kg p_a3=p_t-p_s3;// bar V_s3=(m_a1*R*(T_3+273))/(p_a3*10^5);// m^3/hr V_a3=V_s3;// m^3/hr m_s3=V_a3/v_s3;// kg/hr Pr=((V_a3-V_a2)/V_a3)*100;// % // Determination of cooling water requirement // Assume m_a2=m_a1; m_c=m_s1;// (assumed)) m_w=(((m_s1*h_s1)-(m_s2*h_s2))+((m_a1*C_pa*T_1)-(m_a2*C_pa*T_2))-(m_c*C_pw*T_3))/(C_pw*gradT);// kg/hr m_w=m_w/10^3;// tons/hr m_w=(m_w*10^3)/3600;// kg/sec m_sc=m_s3-m_s2;// Saving in condensate in kg/hr Q=m_sc*C_pw*(T_3-gradT);//kJ/hr printf('\nPercentage reduction in air pump capacity=%0.1f percentage \nMinimum quantity of cooling water=%0.1f kg/sec \nSaving in the condensate=%0.2f kg/hr \nSaving in heat supplied,Q=%0.2f kJ/hr',Pr,m_w,m_sc,Q); // The answer vary due to round off error
adc4f0729b22170aadafdaaa44119b67b501aee9
9b60b7963181dd94c8d10cdb75a83bc010957e71
/taf_monitor_code/taf_monitor/tests/acceptance/01-summer_fair_weather_occasional_showers.tst
ea769954e92659bf41f161356d92feaf136cd8b3
[]
no_license
alanyon/python
577773100eac269750925c1f924edc51060ca865
cbfe0f34fe61ed0495572fa05ea6bf4293ef15bb
refs/heads/master
2023-07-13T17:27:59.555648
2021-08-09T15:59:08
2021-08-09T15:59:08
393,341,633
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,796
tst
01-summer_fair_weather_occasional_showers.tst
{ "EGTE 150800Z 1509/1518 18005KT 9999 FEW040 TEMPO 1512/1518 20015KT 7000 SHRA BKN014": { "TAF matches METAR tempo group exactly": { "metar": "EGTE 151250Z 18005KT 7000 SHRA BKN014", "test time": "20200615T1300Z", "expected": "" }, "TAF tempo group covers METAR - wind speed differs within bounds": { "metar": "EGTE 151250Z 20020KT 7000 SHRA BKN014", "test time": "20200615T1300Z", "expected": "" }, "TAF tempo group covers METAR - wind direction differs within bounds": { "metar": "EGTE 151250Z 25015KT 7000 SHRA BKN014", "test time": "20200615T1300Z", "expected": "" }, "TAF tempo group does not cover METAR - wind speed and direction combined breach bounds": { "metar": "EGTE 151250Z 25020KT 7000 SHRA BKN014", "test time": "20200615T1300Z", "expected": "EGTE TAF bust by wind" }, "TAF tempo group does not cover METAR - wind exceeds allowed speed": { "metar": "EGTE 151250Z 20025KT 7000 SHRA BKN014", "test time": "20200615T1300Z", "expected": "EGTE TAF bust by wind" }, "TAF tempo group does not cover METAR - unforecast wind gust speed": { "metar": "EGTE 151250Z 20015G25KT 7000 SHRA BKN014", "test time": "20200615T1300Z", "expected": "EGTE TAF bust by wind" }, "TAF tempo group does not cover METAR - unexpected weather type": { "metar": "EGTE 151250Z 20015KT 7000 TSRA BKN014", "test time": "20200615T1300Z", "expected": "EGTE TAF bust by weather" }, "TAF tempo group covers METAR - visibility differs within bounds": { "metar": "EGTE 151250Z 20015KT 8000 SHRA BKN014", "test time": "20200615T1300Z", "expected": "" }, "TAF tempo group does not cover METAR - visibility too low": { "metar": "EGTE 151250Z 20015KT 4000 SHRA BKN014", "test time": "20200615T1300Z", "expected": "EGTE TAF bust by visibility" }, "TAF tempo group covers METAR - cloud base differs within bounds": { "metar": "EGTE 151250Z 20015KT 7000 SHRA BKN010", "test time": "20200615T1300Z", "expected": "" }, "TAF tempo group covers METAR - cloud amount differs within bounds": { "metar": "EGTE 151250Z 20015KT 7000 SHRA OVC010", "test time": "20200615T1300Z", "expected": "" }, "TAF tempo group does not cover METAR - cloud base too low": { "metar": "EGTE 151250Z 20015KT 7000 SHRA BKN009", "test time": "20200615T1300Z", "expected": "EGTE TAF bust by cloud" }, "TAF tempo group covers METAR - shower at 1150Z ob for tempo group starting 1200Z": { "metar": "EGTE 151150Z 20015KT 7000 SHRA BKN014", "test time": "20200615T1200Z", "expected": "" }, "TAF does not cover METAR - shower before tempo group start time": { "metar": "EGTE 151120Z 20015KT 7000 SHRA BKN014", "test time": "20200615T1130Z", "expected": "EGTE TAF bust by wind\nEGTE TAF bust by visibility\nEGTE TAF bust by weather\nEGTE TAF bust by cloud" }, "TAF base conditions cover METAR - CAVOK conditions": { "metar": "EGTE 151120Z 18005KT CAVOK", "test time": "20200615T1130Z", "expected": "" } }, "description": "A summer day with light winds, good visibility, and a little fair weather cumulus. A tempo group describes intermittent showers in the afternoon." }
b49aeb445cc128519fd668e322a19c228bd1b51a
449d555969bfd7befe906877abab098c6e63a0e8
/380/CH7/EX7.7/Ex7_7.sce
cef2dc37537016479b837ebd68d915ffa135f519
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
982
sce
Ex7_7.sce
//Caption:Find the (a) voltage regulation (b)efficiency (c)torque developed //Exa:7.7 clc; clear; close; V=208;//in volts N_m=1200;//speed of generator (in rpm) P_r=9000;//rated power in (Volt-Amperes) Z_a=0.3+(%i*5);//armature impedance (ohm/phase) R_f=4.5;//feild winding resistance P_rot=500;//rotational loss (in Watts) I_f=5;//feild winding current pf=0.8;//lagging V_a=int (V/sqrt(3)); theta=(-1)*acosd(pf); I_a_o=P_r/(3*V_a);//per phase armature current (magnitude) I_a=I_a_o*(cosd(theta)+(%i*sind(theta))); E_a=V_a+(I_a*Z_a);//per phase generated voltage VR=((abs(E_a)-V_a)/V_a)*100; disp(VR,' (a) Voltage Regulation (%)='); P_o=3*V_a*abs(I_a)*pf;//power output P_cu=3*((abs(I_a))^2)*0.3;//copper loss P_d=P_o+P_cu;//power developed P_c=P_rot+(I_f^2)*R_f;//constant loss P_in=P_d+P_c;//power input Eff=(P_o/P_in)*100; disp(ceil(Eff),'(b) Efficiency (%)='); w_s=2*%pi*N_m/60; T=(P_d+P_rot)/w_s; disp(T,'(c) Torque developed (in Newton-meter)=');
302e7c81f6ebe61d7c1433cca34cc5cc59b363f8
449d555969bfd7befe906877abab098c6e63a0e8
/1631/CH2/EX2.8/Ex2_8.sce
99b7a0b351dcf7661e4d95bb640c61c0742afbac
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
467
sce
Ex2_8.sce
//Caption: Probability //Example 2.8 //page no 45 //find the probability that recorded number is 2 clc; clear; head=1/2;//probability of getting head tail=1-head;//probability of getting tail head2= head*1/6;//probability of getting head with recorded number is 2 tail2=tail*1/36;//probability of getting tail with recorded number is 2 //probability of getting recorded number is 2 p=head2+tail2; disp(p,"probability of getting recorded number is 2");
4bc3ab34a6c5cbb7c14d16b2d015fea11c1e151e
449d555969bfd7befe906877abab098c6e63a0e8
/1892/CH1/EX1.7/Example1_7.sce
def6d7ef88e0ab8ae69f26aa6b32e573d4adca1a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
920
sce
Example1_7.sce
// Example 1.7 clear; clc; close; format('v',6); // Given data P=4;//No. of poles f=50;//in Hz Kdash=4;//stator turns by rotor turn R2=0.01;//in ohm X2=0.1;//in ohm E1_line=400;//in volt //Calculations K=1/Kdash;//rotor turns by stator turns Ns=120*f/P;//in rpm E1ph=E1_line/sqrt(3);// //Formula : E2ph/E1ph=K E2ph=E1ph*K;//in volt //(i) at start S=1 ns=Ns/60;//in rps K=3/2/%pi/ns; Tst=K*E2ph^2*R2/(R2^2+X2^2);//in N-m disp(Tst,"(i) Starting Torque in N-m : "); //part (ii) Sm=R2/X2;//slip for max torque disp(Sm*100,"(ii) Slip at which max torque devloped in % : "); //Part (iii) N=Ns*(1-Sm);//in rpm disp(N,"(iii) Speed at which max torque occur in rpm : "); //Part (iv) Tm=K*E2ph^2/2/X2;//in N-m disp(Tm,"Maximum torque in N-m : "); //Part (v) Sf=4;//in % Sf=Sf/100;//slip Tfl=K*Sf*E2ph^2*R2/(R2^2+(Sf*X2)^2);//in N-m disp(Tfl,"(v) Full load Torque devloped in N-m : ");
d7b4f87672b60c322d48ef619cc25c0d94d353b0
449d555969bfd7befe906877abab098c6e63a0e8
/1268/CH8/EX8.9/8_9.sce
66bbfadcda902e66dc9e1db72108affdd541681c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
209
sce
8_9.sce
clc; disp("Example 8.9") number=5 speed= 1 // in rotations per second density= 1000 // in kg/m^3 d=0.6 // in m power=number*speed*speed*speed*density*(d^5) disp(power,"Power to the mixing system is ")
1421018a7fa5fb6bc1cf1ce7df3f995da6444db8
45b80ce1f2c1e2a62b2b7e650fc674d43a31085a
/HackerRankCollectionTests/TestData/JourneyToTheMoon/hackerrank8_input.txt
fd65927159c5fe65fa0ac81e9413ed71b4cc96dd
[]
no_license
ceevee87/hackerrank-collection
120d834899c6e7c3203c6612302e1551bf8464dc
937b0b13fccc095494cf2e93c6d49a5b65b290fa
refs/heads/master
2020-08-01T10:57:17.244911
2019-11-11T16:25:54
2019-11-11T16:25:54
210,975,621
0
0
null
null
null
null
UTF-8
Scilab
false
false
39,125
txt
hackerrank8_input.txt
10000 4000 4 8367 7 1257 7 2892 10 761 13 4510 14 2626 14 8839 15 4298 16 9428 16 5317 18 21 19 7101 19 7623 21 7794 22 283 22 684 25 1785 26 2841 28 1136 28 8052 29 6625 32 1730 32 125 34 8841 34 5679 35 4897 36 5227 37 1200 38 9911 39 1951 40 5436 40 7215 41 2219 42 1560 44 3589 48 624 48 534 50 999 51 9537 51 4123 52 9712 53 8897 53 5930 54 8712 54 5710 55 5104 58 8422 59 5834 61 3009 61 5955 62 6524 65 9988 65 4671 68 1004 69 8883 71 4393 72 1827 73 7075 74 9212 76 3736 76 433 76 3525 76 5095 78 389 80 5825 81 8484 81 5749 83 152 86 6411 86 6637 86 6399 87 2724 88 1148 91 7733 92 5489 92 5389 92 4149 93 9896 94 1176 94 2017 94 3519 94 8727 98 4398 99 9686 100 7284 101 7056 104 1633 107 2560 107 4852 107 782 108 4583 112 8074 112 7119 114 1876 115 5921 115 2210 115 562 116 3813 119 2590 121 7725 122 8174 123 9486 124 449 125 1835 126 6128 127 7302 128 8777 128 3085 129 7076 130 9136 131 4452 133 9126 134 3500 136 6586 138 2770 138 8804 139 8956 140 4374 141 1086 142 9280 143 533 146 6426 148 2205 149 984 149 7206 150 6907 152 8376 152 6831 153 9407 155 8334 156 499 156 8581 158 3113 158 7250 158 9827 161 978 162 5511 166 7860 166 4655 168 3258 168 9533 172 7879 176 8616 177 5315 179 5423 180 2828 180 421 182 6106 183 948 184 2525 186 2537 187 1891 188 6695 189 9563 191 2472 193 7664 193 7217 194 4013 195 2610 196 7944 197 3632 197 3562 200 6382 202 1063 202 7479 203 8871 204 9944 204 8587 204 1958 209 5877 209 5829 211 2967 212 332 214 3095 217 3006 220 7255 222 9978 223 2885 226 2549 227 5110 228 8289 233 8896 233 8828 235 4242 236 5343 239 5294 242 584 243 3666 243 6827 243 933 244 6530 246 6515 246 8620 247 3848 249 4753 251 7019 251 9942 252 1013 253 1382 255 9329 256 5185 258 4136 260 626 261 8968 263 9193 263 7579 267 8175 268 4151 269 6195 270 488 270 1877 271 6740 272 6320 273 4207 276 5103 281 4728 283 7562 287 5587 287 8086 288 6523 290 4327 291 844 291 7420 292 4931 294 3204 294 5910 295 468 296 2648 297 8543 299 1831 303 9820 307 5817 309 3144 310 1321 310 9898 310 7573 310 5430 315 7427 315 9419 315 9015 316 9278 318 4433 319 2016 320 5460 320 9918 320 1886 321 1316 321 1311 323 671 324 8601 325 8342 327 6136 327 7402 328 1542 329 4547 329 1678 331 3696 333 9606 333 9599 339 9627 339 3933 340 6194 342 5785 344 760 347 2871 347 727 348 1676 350 1830 351 6623 351 1135 352 5593 353 9924 354 3095 354 3479 355 3632 356 2009 356 5875 357 1535 358 5389 359 9011 360 6081 360 6246 361 5978 363 6260 365 443 368 2649 369 7365 372 6090 373 1388 373 1510 376 5448 377 5243 378 7295 379 9318 379 8711 382 4442 383 9912 383 9078 384 4778 384 1077 385 5442 388 9589 391 9248 394 5596 394 8406 398 2801 398 4675 401 6139 401 4045 403 9452 403 8798 405 8832 405 9581 406 8222 407 2619 408 4691 409 4297 410 4265 410 5852 410 2885 414 3326 418 9825 419 872 420 8611 421 8003 423 2857 423 1661 423 4173 426 741 427 2518 428 6786 428 8087 429 6216 429 7461 430 8833 430 2835 432 2444 432 9470 433 9245 434 945 437 5499 438 6946 440 9783 441 805 442 6706 442 6906 443 5057 443 5051 443 3126 445 7960 446 556 447 2511 454 4406 456 6419 456 6028 459 9282 459 635 460 6554 464 5976 466 5674 470 1466 472 3515 472 9965 474 1101 475 5762 475 1523 476 1292 476 4389 479 8576 482 1990 482 5799 484 6179 487 2384 487 8493 488 5169 488 9293 490 5720 490 2495 491 2736 493 2465 493 959 494 4892 494 647 496 650 497 9855 498 8108 499 5810 500 7953 501 6193 502 5785 505 3609 506 1973 511 6410 511 4890 512 9022 515 1818 517 8562 517 2372 520 6319 522 7149 525 5159 530 8781 531 7778 531 8422 532 8468 534 1209 535 8410 535 3654 535 4446 536 3017 537 6809 538 9460 538 5381 539 7113 543 8491 543 4573 546 3872 547 681 547 2310 550 6796 550 5829 551 2498 556 5379 557 938 560 6620 561 7911 564 7847 565 6389 567 8232 567 1706 569 9616 569 9729 569 9696 569 2942 569 5462 570 2411 570 2548 571 5464 571 2616 571 7899 571 7269 572 5893 573 8014 575 5521 575 9451 576 4020 576 3293 577 7857 577 5690 578 7873 579 9751 581 6620 582 5080 582 3210 582 6523 584 5450 587 8919 588 7965 590 8384 590 7959 591 4172 591 6607 592 4917 594 1483 594 6436 595 9827 597 7107 599 1555 599 9724 600 8475 600 9734 601 6762 602 6256 602 4422 603 1282 606 1522 608 7358 608 2295 609 3675 611 9052 611 5815 613 6434 614 9985 615 9595 615 7327 616 7875 617 1717 617 5943 619 6075 620 941 623 1756 625 2100 625 5805 625 2479 627 3153 627 2341 629 2315 629 3837 630 3507 630 4980 630 7853 631 4259 635 7281 635 4877 635 9878 637 9255 638 2715 639 9214 640 6513 641 6481 643 6191 645 1088 645 5344 645 2413 647 2557 648 7088 648 4993 650 850 651 8692 652 2401 656 6987 656 7452 657 6596 660 4697 660 7607 661 905 662 2892 664 1305 666 7810 666 9767 667 1484 669 8346 670 9755 670 2181 674 5222 677 1027 678 6593 678 885 678 6733 683 2842 683 5659 686 6104 687 9081 688 7307 689 3632 693 7870 695 4169 696 9076 697 1233 698 5693 702 9368 702 956 704 2915 707 3759 708 9197 712 3771 713 6002 715 3804 715 4454 716 9502 716 9823 717 9968 719 1394 721 1240 721 3248 725 4194 726 8638 732 9737 732 5482 735 7876 737 5038 740 4044 740 2741 741 5779 742 6943 744 3691 746 3099 747 7160 748 6957 749 3189 751 2519 751 1607 754 3436 756 3344 757 9625 758 8286 759 8264 762 5697 766 2225 769 7700 769 2300 769 3749 771 8524 775 7977 775 1314 776 921 776 1331 776 1477 785 1481 785 7754 786 4143 787 2618 787 6171 788 1567 793 6947 796 7314 797 2516 799 4200 801 5213 803 3842 804 3723 805 2149 809 7325 809 4245 810 6698 811 7085 812 4237 815 6250 816 4805 817 8618 817 3604 819 1556 820 5649 820 3772 820 4159 822 2845 823 6949 826 9022 828 3548 829 2297 829 8206 830 8174 833 7702 836 3722 837 7845 838 4216 838 7507 838 8519 840 2944 840 7412 841 5977 841 7475 841 3932 842 5493 842 8078 842 8117 843 1316 843 6076 843 1109 843 1605 845 2369 845 6426 845 2906 847 2866 849 2219 849 5079 851 6628 852 3294 853 5110 853 3207 854 2665 855 5388 855 8661 856 1447 857 943 859 4024 860 4933 861 2339 861 7003 861 1253 870 957 870 1853 872 6955 874 6096 874 6181 879 2020 882 4754 883 7240 885 7956 886 6148 886 7559 888 4340 888 8596 890 8021 890 9199 891 3783 892 9281 893 1228 896 2018 897 6596 905 5348 908 5893 909 3857 911 2495 916 1753 917 8682 918 9996 918 5989 919 946 919 4788 920 3119 922 3490 923 1283 925 9086 929 4238 930 1360 931 2295 932 5643 932 5126 935 9778 940 3168 940 3229 948 6035 949 3207 950 4698 952 7260 956 6718 961 3865 961 4766 962 5163 962 2666 962 5291 963 4822 967 9097 968 7858 970 7181 973 3897 975 6993 975 5498 976 7556 979 1933 981 1489 983 6954 983 6501 984 4130 985 1819 988 5056 989 1745 989 8058 992 6401 993 7960 995 3521 996 3051 996 3796 997 9753 998 1370 1001 5651 1002 2043 1002 1462 1003 6426 1004 8380 1004 2746 1005 9990 1008 8145 1009 2170 1011 7793 1018 7125 1019 4556 1021 7160 1022 5493 1026 7512 1026 2696 1027 6424 1027 9902 1028 7769 1031 3112 1032 1994 1033 4776 1033 8973 1034 1612 1040 7962 1041 2098 1045 6114 1046 1229 1049 2448 1049 4475 1051 2496 1052 7538 1052 4535 1057 6787 1058 1309 1062 1472 1065 5545 1066 7939 1066 8357 1068 1974 1070 5922 1071 8245 1072 6032 1072 5331 1073 7634 1075 6256 1076 3504 1076 4123 1077 4153 1083 8312 1083 1529 1085 3611 1085 8670 1088 3173 1088 9742 1089 8168 1089 7289 1089 4582 1089 9247 1090 1282 1090 6991 1091 6124 1094 3614 1095 6324 1096 5549 1097 1965 1100 2440 1100 7428 1103 4767 1104 9532 1108 7769 1109 9487 1110 2417 1111 9214 1112 9476 1113 3883 1120 1575 1121 4240 1121 2310 1121 8487 1123 5993 1124 3477 1125 3229 1128 6458 1129 3353 1129 3364 1129 7791 1130 1725 1131 7536 1135 2523 1135 7886 1136 3653 1142 4002 1142 6550 1143 5036 1144 1354 1144 6611 1144 2751 1145 4651 1148 6513 1149 4242 1150 8197 1150 8525 1151 9449 1151 6331 1151 2677 1152 9190 1153 1538 1153 8916 1156 7349 1158 4888 1158 8897 1159 9440 1160 2737 1161 6426 1162 5630 1162 2623 1163 9559 1164 7028 1164 5495 1165 4975 1168 9541 1170 6952 1170 4598 1172 9305 1172 5822 1174 3432 1174 2711 1176 7044 1176 4261 1177 6715 1181 8319 1183 9050 1184 4777 1184 2316 1184 7205 1186 2557 1186 7830 1186 6407 1188 3257 1190 5546 1190 1934 1193 2568 1197 9137 1198 8133 1199 4662 1201 9066 1201 3131 1202 4943 1204 1475 1206 8721 1207 6738 1209 8558 1210 3862 1210 6838 1212 1659 1212 1399 1213 3774 1218 8259 1220 2351 1220 1583 1222 5371 1224 8980 1228 8394 1228 2387 1228 2762 1230 4656 1232 2554 1236 3460 1236 3797 1237 6081 1237 8287 1239 3254 1240 2450 1242 5051 1248 9194 1249 5954 1249 3757 1254 9250 1256 1805 1257 2997 1259 8689 1259 7449 1259 2863 1261 4992 1261 6403 1261 4484 1264 9251 1265 8405 1267 5498 1270 6346 1273 5880 1273 8442 1273 4173 1274 2568 1275 1372 1276 9037 1278 3228 1279 9375 1280 2032 1285 4808 1285 3537 1287 3481 1288 6944 1288 8397 1288 4687 1289 6833 1289 4341 1289 8421 1290 8514 1291 5432 1291 5492 1291 3860 1295 5339 1301 9256 1304 5480 1304 6221 1305 3164 1305 7453 1306 2737 1306 6035 1311 7124 1312 3304 1312 6484 1312 1790 1313 2695 1314 7665 1318 9605 1318 8423 1319 7572 1320 2158 1321 8355 1322 8821 1325 2857 1326 1825 1329 8449 1329 2082 1330 8532 1332 8385 1333 4977 1334 2145 1339 5311 1340 6746 1340 8203 1340 4911 1341 8725 1342 6553 1342 6247 1344 3156 1345 1792 1349 3157 1349 7902 1354 8627 1355 4692 1355 4303 1356 7448 1358 4209 1359 8944 1360 9717 1364 3022 1366 8092 1369 8692 1374 5487 1379 8415 1380 4058 1382 7518 1385 3990 1387 7258 1388 9562 1388 2580 1389 2552 1389 4710 1391 8618 1392 6075 1393 6863 1394 3909 1396 3207 1396 8759 1399 3732 1399 7461 1401 4806 1402 4005 1403 6427 1405 6937 1407 5854 1408 7552 1408 6098 1408 2074 1410 1432 1411 6956 1412 5911 1414 3606 1415 4955 1417 5654 1419 8364 1429 3370 1431 8026 1431 5114 1432 6767 1433 7142 1434 3891 1434 5446 1435 8288 1435 7629 1437 2645 1438 2798 1438 8654 1439 4969 1440 6522 1442 4592 1443 7267 1443 9797 1444 9051 1449 6303 1451 7881 1456 9552 1458 8876 1458 5711 1460 5029 1460 6751 1461 6956 1464 2369 1465 1889 1465 4626 1466 9899 1467 3538 1473 8763 1473 7533 1476 2650 1485 2711 1488 5417 1490 5036 1494 7648 1494 8962 1494 6261 1495 7553 1496 5538 1496 7299 1498 6737 1498 4034 1500 7269 1501 5547 1501 2942 1504 4384 1504 3956 1506 8642 1506 7626 1507 3650 1507 5034 1512 7116 1512 9327 1514 7966 1516 2621 1517 9427 1518 2603 1519 4214 1520 8730 1522 7357 1524 5112 1524 3555 1525 6450 1526 9714 1526 8836 1527 2066 1528 2656 1532 5009 1533 3730 1536 4067 1537 8792 1538 4492 1539 3240 1541 9727 1544 4572 1547 2669 1548 3127 1549 6643 1549 3262 1550 4700 1551 7728 1551 4957 1551 3750 1554 4967 1556 4106 1557 2115 1559 1746 1559 7350 1560 5180 1561 6441 1561 3862 1562 7295 1564 3504 1564 5499 1565 2531 1566 4505 1566 7282 1567 2014 1568 3762 1568 8310 1571 9914 1572 4135 1573 4594 1580 4498 1581 8514 1582 7418 1582 5286 1583 7060 1585 4260 1586 3553 1590 1787 1593 9713 1593 3763 1593 5517 1594 2382 1594 7646 1596 5903 1599 2097 1599 2490 1599 2482 1600 2650 1603 7341 1603 6023 1604 3631 1606 4031 1608 5394 1611 9056 1613 6786 1613 2156 1613 2381 1614 4576 1615 7853 1616 7177 1616 7699 1620 9701 1624 9496 1626 8441 1628 8844 1631 9658 1632 6656 1634 9177 1635 8731 1637 4649 1638 9326 1639 5867 1640 2096 1640 1642 1641 5777 1643 3102 1645 6578 1646 6558 1647 6831 1650 5387 1650 2653 1650 5853 1651 8298 1654 5742 1656 1676 1656 7229 1657 3880 1661 9914 1661 7430 1661 7511 1665 3677 1666 5402 1666 4629 1668 7739 1670 4605 1671 5021 1673 7338 1673 8010 1673 2166 1674 3081 1674 9318 1674 6942 1675 7110 1675 6782 1676 5621 1677 7867 1677 3204 1678 2146 1678 2825 1679 7724 1679 2132 1682 8691 1682 6652 1685 4245 1686 7627 1691 7352 1693 5643 1695 3468 1700 4305 1704 7818 1704 2839 1704 4039 1707 4249 1707 8963 1708 2725 1708 6863 1709 6094 1710 3186 1711 7760 1712 4751 1714 5442 1715 9725 1715 5438 1718 6708 1720 3890 1722 6731 1724 2800 1725 2516 1729 8081 1729 9983 1731 4522 1737 6150 1738 5656 1738 3742 1739 3294 1742 5048 1742 9395 1747 2538 1748 7624 1750 8958 1752 4395 1753 5537 1757 5669 1758 3301 1759 6840 1760 5198 1763 6866 1769 9600 1770 2084 1770 5511 1771 3204 1771 5383 1773 5832 1775 4597 1778 4463 1779 2188 1779 8877 1780 9692 1780 7557 1781 9974 1782 4138 1783 3049 1784 7080 1784 4965 1787 7474 1789 6636 1791 8545 1791 5092 1792 6547 1795 2289 1795 5877 1799 7114 1800 4653 1802 2945 1805 5336 1807 6916 1809 3880 1819 3379 1819 5821 1820 7264 1820 6917 1823 7378 1823 5022 1824 6571 1825 5206 1827 5706 1829 3067 1829 4268 1832 9419 1832 7543 1833 8585 1834 4260 1841 2090 1843 8576 1843 7476 1844 9776 1849 7609 1849 2314 1849 6251 1852 3025 1855 9378 1856 4640 1856 2171 1856 8988 1857 8600 1860 3241 1860 6546 1862 4814 1863 7957 1866 9567 1867 5257 1867 2573 1870 2566 1871 9693 1872 2320 1873 4520 1873 5842 1873 9684 1873 8766 1874 4363 1874 2220 1876 2945 1876 7427 1879 8429 1881 9681 1882 6981 1882 3254 1886 5457 1886 2103 1887 8727 1889 4671 1890 2453 1893 2721 1894 2470 1895 8436 1899 3683 1903 4020 1906 9262 1908 8350 1909 9034 1909 6826 1917 6049 1920 9798 1920 4983 1921 5492 1925 7698 1927 8622 1927 8350 1928 6274 1931 3927 1932 8872 1934 4503 1935 5466 1936 8933 1938 5131 1940 9505 1940 3841 1940 7599 1941 8813 1942 3305 1942 5698 1942 4501 1943 2314 1944 5600 1944 6939 1944 7812 1944 7199 1946 5343 1947 4401 1949 5244 1954 2472 1954 5160 1956 6656 1957 6241 1958 2492 1958 2317 1959 7987 1964 5017 1964 3723 1966 8528 1966 7369 1966 9327 1967 2506 1967 5174 1969 9764 1970 9860 1974 2122 1975 5455 1976 6063 1977 8568 1978 8622 1979 7006 1980 5989 1981 5212 1981 5014 1986 4628 1987 6974 1988 8702 1990 9545 1990 3548 1999 7304 2002 6951 2005 4850 2013 2282 2015 8643 2015 6372 2016 2311 2017 5083 2017 5421 2018 5619 2018 7638 2020 5053 2025 6541 2027 3139 2027 7508 2029 3461 2033 9042 2033 3742 2036 4999 2039 5628 2041 3771 2041 4964 2042 6029 2044 4974 2047 6928 2047 2215 2053 7172 2053 3581 2054 6297 2057 3064 2059 7735 2059 5372 2059 7647 2062 2307 2063 6149 2064 5685 2070 8516 2072 4486 2082 9528 2082 9438 2083 9807 2088 7538 2090 4944 2090 6188 2090 2479 2091 6594 2097 2665 2097 6884 2098 8410 2102 8737 2104 9427 2106 3016 2106 9144 2107 3736 2111 4804 2112 7905 2116 9544 2116 4675 2117 4177 2117 9265 2118 3171 2120 4444 2121 7746 2121 4610 2122 4616 2122 5890 2123 9440 2126 3368 2127 9350 2133 5704 2133 5109 2134 4428 2138 8580 2142 3814 2144 7988 2146 4721 2147 7965 2147 4887 2148 4617 2149 9560 2149 8010 2152 5924 2155 6072 2156 3703 2158 6642 2159 3906 2161 3076 2162 6047 2165 9121 2168 6952 2169 6675 2175 6972 2178 8089 2178 6794 2179 5149 2180 4445 2181 5091 2182 8297 2184 5504 2184 6925 2186 8056 2186 9285 2189 3991 2192 7686 2193 9882 2194 2409 2194 6182 2197 2419 2199 8566 2199 4230 2204 4868 2207 5907 2211 6738 2212 6041 2213 9654 2215 3968 2215 5217 2217 8739 2220 8102 2222 8352 2222 3095 2224 9618 2228 7827 2228 7718 2231 6439 2231 7615 2232 3415 2236 6686 2239 9672 2240 9818 2240 6831 2241 3294 2246 7092 2250 4693 2254 2498 2257 3980 2261 4461 2262 7975 2263 4395 2264 6482 2264 8549 2266 8457 2269 4436 2270 5163 2270 8293 2271 9221 2273 6473 2274 3319 2275 7091 2277 7531 2277 8389 2277 4103 2285 7638 2287 2659 2287 8869 2289 7850 2290 8264 2292 4409 2292 7086 2294 9935 2296 3596 2300 7739 2302 7027 2303 6975 2304 9073 2304 2660 2304 6429 2306 3064 2306 9578 2307 2535 2308 6480 2310 3317 2312 8916 2313 9253 2314 8840 2319 2676 2319 7511 2320 5402 2320 5226 2321 5506 2321 5247 2322 4709 2325 7426 2328 9255 2336 6241 2337 9484 2337 4106 2337 9596 2338 4333 2340 4255 2344 6741 2345 4929 2348 8508 2351 4018 2353 3781 2354 8234 2354 2421 2354 7782 2356 5210 2360 6159 2361 2824 2361 5026 2363 8714 2363 4066 2364 8698 2365 5793 2365 6285 2367 4973 2368 6985 2368 5023 2370 2548 2372 6322 2374 8965 2377 6199 2380 4060 2382 5604 2385 6234 2387 9843 2392 8725 2393 4806 2395 3344 2395 2874 2396 9656 2397 3908 2402 4000 2403 5956 2404 4636 2407 5046 2408 4876 2408 9806 2410 7044 2413 3056 2416 3209 2416 8006 2417 9343 2420 8352 2420 3320 2421 3629 2422 7226 2422 7539 2425 4331 2426 7295 2428 9080 2433 4774 2434 8286 2438 9875 2441 9985 2441 5055 2442 6773 2443 4856 2446 7860 2447 6274 2447 7638 2447 8334 2450 2643 2453 3429 2455 5208 2455 3067 2455 3127 2457 5127 2459 2683 2463 3128 2463 5943 2465 6677 2467 8279 2470 8918 2470 2967 2478 3003 2480 3117 2480 8502 2481 4548 2484 6948 2490 9241 2491 8252 2493 6365 2494 8038 2497 6304 2497 9747 2498 4502 2500 6452 2501 3168 2501 5165 2502 3738 2502 7069 2502 2759 2503 6345 2503 8563 2505 6899 2506 8858 2507 2786 2510 5303 2511 2696 2512 7634 2512 8244 2513 6721 2513 7634 2513 6479 2515 4622 2517 6440 2518 3594 2520 8960 2523 6065 2523 6217 2523 9198 2525 2993 2525 6892 2525 5374 2526 6999 2528 4225 2528 7873 2529 4444 2531 7000 2531 4851 2533 7978 2537 3587 2539 8390 2542 7242 2545 4983 2546 7944 2549 4323 2553 7750 2554 8600 2554 3445 2554 5679 2556 4744 2556 3676 2557 6252 2557 9439 2558 4365 2567 8513 2569 5225 2569 7213 2572 6211 2573 6252 2575 4285 2578 3444 2579 5387 2582 9481 2584 9048 2585 6813 2586 6169 2589 2978 2589 9095 2592 4290 2595 8194 2595 4588 2596 2914 2596 7463 2598 6746 2601 7872 2601 6151 2604 6237 2605 8697 2605 9551 2607 5660 2610 7622 2611 4758 2614 9222 2620 3747 2622 6617 2624 7059 2626 4853 2630 4071 2631 7315 2631 9868 2632 5874 2632 9270 2634 2703 2635 9217 2635 5989 2636 6188 2636 9262 2639 6788 2639 6166 2641 5968 2641 3415 2643 7254 2644 4613 2644 8399 2646 6626 2648 6911 2650 3679 2652 3515 2654 7762 2655 2928 2656 4364 2658 7548 2659 7741 2664 8531 2664 7525 2665 2669 2667 6636 2668 4450 2671 4162 2672 4577 2674 3413 2675 8821 2675 7207 2677 9281 2677 8539 2678 4565 2678 6526 2679 9217 2681 6930 2683 7552 2684 9813 2685 7093 2686 5842 2686 9387 2686 6358 2686 7535 2687 5918 2692 9354 2692 8197 2693 8875 2694 6611 2696 3559 2698 4843 2701 7482 2703 3287 2704 8219 2704 7158 2705 6123 2706 9931 2710 4309 2711 3180 2713 4541 2714 9754 2716 8463 2717 7395 2717 6767 2718 5211 2719 3688 2719 3527 2721 5012 2723 6240 2725 3153 2726 7550 2729 6032 2730 9297 2731 8846 2734 3060 2737 8602 2739 9457 2739 2949 2741 6153 2743 9179 2743 8172 2744 3309 2746 3169 2748 9949 2749 7507 2752 3101 2754 3637 2755 9101 2755 8285 2756 8243 2762 4241 2763 5281 2763 7213 2763 4287 2765 3950 2766 9701 2767 7644 2767 8845 2770 9816 2774 6447 2775 7610 2775 5190 2776 9153 2777 9589 2780 6450 2780 7286 2782 2973 2784 9686 2784 5086 2789 4801 2790 8171 2792 9505 2793 6118 2794 9330 2794 4423 2799 5435 2800 2885 2801 5198 2810 9474 2811 3284 2812 2938 2813 7372 2814 7657 2814 7099 2815 7809 2816 6267 2819 5497 2820 8538 2821 7613 2822 3554 2824 7683 2826 9603 2827 9057 2827 7251 2827 4223 2836 5394 2836 8815 2838 9601 2838 5881 2839 2879 2841 7358 2846 6099 2847 9405 2851 3546 2852 9026 2854 6763 2855 7320 2858 7942 2858 8022 2859 6144 2860 5312 2862 4256 2862 5864 2862 7710 2868 3984 2869 6725 2869 4550 2870 4267 2871 4437 2873 7281 2874 9866 2874 9029 2875 7605 2876 5660 2877 8774 2882 9272 2882 8348 2883 6556 2883 9652 2884 4258 2886 3756 2888 6342 2891 6609 2899 3261 2901 9077 2903 7178 2904 4911 2906 7561 2906 2966 2906 6649 2909 3485 2915 4496 2916 3358 2919 8842 2919 5198 2920 7148 2922 3408 2924 3074 2925 7099 2926 9256 2926 9869 2928 5361 2928 9179 2933 5402 2936 3661 2937 9258 2939 7368 2942 5829 2946 6597 2947 7684 2947 7797 2947 8743 2949 7745 2950 7733 2950 5477 2952 3826 2953 4299 2953 9855 2954 6033 2957 5743 2959 5612 2960 8588 2960 3309 2962 6272 2965 6675 2965 6053 2968 9519 2972 6642 2972 9997 2973 9022 2974 3217 2974 4495 2975 6648 2977 4777 2977 6503 2979 6356 2985 4719 2986 3584 2987 6246 2987 9471 2988 6963 2989 3816 2989 6301 2990 6398 2992 7645 2992 5950 2994 6556 3001 7039 3006 9947 3006 4942 3010 5880 3010 4635 3011 7614 3012 3278 3013 3483 3015 9349 3016 8763 3017 3120 3018 4816 3021 6240 3021 4883 3022 8018 3022 7148 3024 8145 3024 7503 3025 6689 3026 4213 3027 5764 3030 6201 3031 8587 3031 5739 3033 8299 3035 8591 3036 9929 3038 9202 3040 4200 3040 7845 3041 5720 3042 7152 3044 4819 3045 8690 3046 8731 3048 6917 3050 3301 3051 3309 3053 8255 3058 5774 3061 9115 3062 5185 3069 6202 3078 6436 3082 5584 3082 4737 3087 3377 3091 8099 3093 5925 3094 9789 3096 8145 3102 3539 3102 4132 3105 4059 3108 9947 3110 4507 3113 9803 3114 8677 3116 7453 3122 5419 3122 5007 3125 7176 3126 4156 3128 7735 3129 7281 3132 3995 3143 3264 3144 7308 3144 7207 3147 6715 3147 4651 3147 6404 3158 9253 3161 9371 3165 5978 3165 3669 3168 8744 3168 5562 3169 6545 3171 8166 3177 8268 3180 5094 3185 4440 3185 9095 3187 4699 3188 6822 3193 8401 3194 6576 3194 8932 3195 6836 3203 6758 3203 9054 3204 8348 3205 6926 3206 9118 3207 5617 3207 7965 3208 9215 3211 8031 3211 9679 3213 7749 3217 3753 3217 4292 3222 6668 3223 3557 3224 7956 3224 8054 3225 9565 3227 4246 3228 8262 3229 8767 3230 8838 3232 9439 3234 6750 3236 4672 3240 7313 3241 9892 3251 8021 3252 5033 3252 3283 3253 6785 3254 8796 3255 9029 3256 9321 3256 5703 3257 7312 3257 5977 3257 3597 3261 7598 3264 5171 3265 5370 3265 8767 3266 5371 3268 8019 3270 4519 3274 6256 3275 3980 3276 8761 3276 9198 3279 7244 3280 6391 3281 9417 3284 5355 3285 6370 3285 4699 3286 7319 3287 9250 3290 4765 3293 7880 3295 4630 3299 5786 3300 6343 3302 4278 3308 4722 3309 3605 3310 6491 3312 4540 3314 7493 3315 5278 3315 7958 3319 7197 3320 8488 3324 6979 3327 6959 3328 8276 3329 7784 3329 5778 3329 7731 3333 9887 3335 3364 3340 3915 3344 8379 3345 3990 3346 5666 3349 5929 3349 6727 3352 5230 3357 7648 3358 5903 3359 7605 3360 6866 3364 6074 3364 5501 3364 7334 3366 9674 3369 6049 3371 5711 3372 9649 3373 9020 3374 5826 3374 4443 3379 5937 3379 8534 3380 7976 3381 3944 3383 7762 3385 5798 3387 8423 3388 5149 3390 4810 3392 4566 3396 4882 3397 9151 3399 4453 3402 5653 3403 4265 3404 4996 3405 5634 3405 4493 3408 9956 3408 5788 3411 3969 3413 9374 3414 7834 3418 9541 3419 9257 3419 5708 3419 5206 3420 4940 3422 7449 3424 6450 3425 7745 3426 7484 3426 4343 3431 4607 3432 7233 3434 8107 3434 6822 3435 6546 3435 5991 3436 7953 3437 7890 3438 6340 3439 7329 3446 7640 3446 5394 3450 9582 3452 5048 3457 9608 3457 7933 3458 7631 3462 3634 3464 5944 3466 9827 3468 4641 3468 9973 3469 4699 3476 5607 3476 4951 3477 6305 3478 7176 3478 3709 3480 6428 3481 6530 3481 7245 3482 7439 3483 9211 3484 5351 3485 4011 3486 9835 3487 6108 3487 8669 3489 5584 3494 4697 3494 8693 3496 9752 3496 7584 3496 5287 3497 7352 3497 6775 3499 9959 3501 4462 3502 8277 3504 6217 3504 4666 3514 3881 3515 4412 3516 9675 3516 9230 3516 5286 3517 6230 3519 4461 3525 9524 3527 5195 3528 6143 3531 8413 3532 6169 3532 5195 3533 4690 3537 5908 3540 4012 3542 6337 3542 9121 3546 9908 3549 8868 3550 9768 3551 7800 3552 7241 3553 4996 3554 7135 3556 7121 3556 9878 3559 6748 3562 6053 3565 4182 3565 5862 3566 6062 3568 4213 3571 4218 3571 7370 3572 7581 3573 7797 3580 7263 3581 7829 3585 7466 3588 5399 3590 6339 3591 9036 3591 6830 3592 9986 3595 3823 3596 7741 3597 6111 3597 7431 3598 8589 3599 7512 3601 3616 3604 4905 3604 4930 3606 7467 3609 5820 3610 8835 3613 8767 3615 7360 3615 7906 3620 5487 3625 9560 3626 9578 3629 3656 3631 7681 3637 6357 3637 9405 3638 8491 3638 6726 3640 4976 3641 4312 3641 6056 3641 6443 3641 8503 3642 4314 3643 4200 3645 6320 3645 5601 3649 4071 3650 9657 3653 7889 3653 6201 3654 4096 3656 7750 3661 9250 3666 9163 3672 6012 3674 4305 3675 8178 3690 4590 3693 8402 3694 5431 3698 8280 3700 9184 3701 5245 3704 4065 3705 8076 3706 4969 3706 6124 3709 4579 3711 6596 3716 6072 3716 3726 3717 3739 3720 6494 3723 5345 3724 6088 3724 8717 3725 4402 3728 9128 3728 6770 3728 7173 3729 8712 3730 7280 3730 9281 3730 7214 3741 9772 3742 8622 3745 4608 3750 8053 3753 7503 3757 8518 3760 8602 3765 8717 3765 5135 3766 4843 3767 7031 3768 9144 3769 8339 3770 4931 3774 6242 3780 8223 3781 6368 3781 8676 3781 4238 3783 8695 3784 4601 3784 5903 3788 5551 3789 5123 3791 9875 3792 9042 3796 4771 3796 4885 3797 7280 3800 8710 3802 8175 3803 9288 3808 7515 3809 5615 3809 4375 3810 3943 3811 4752 3812 8749 3813 8335 3821 6827 3823 9296 3823 7050 3824 5945 3825 6678 3826 9883 3827 8289 3827 9099 3828 6938 3829 4777 3829 8077 3833 6102 3835 4709 3836 5938 3841 6844 3845 9174 3847 9464 3848 8930 3848 9916 3849 3946 3849 7108 3850 5378 3850 7588 3851 4447 3852 4089 3855 6753 3857 5816 3857 7162 3862 7659 3862 4637 3863 9379 3863 8478 3868 7651 3872 7790 3874 6913 3875 4610 3875 9731 3875 4006 3876 6453 3877 9317 3889 6511 3890 6558 3893 5281 3893 5907 3905 9015 3906 7112 3906 5175 3908 9273 3909 4287 3910 6121 3912 4852 3913 4614 3918 7304 3918 7582 3924 5168 3924 4137 3924 9709 3926 5617 3927 9205 3928 5355 3935 9321 3935 4723 3940 6449 3941 8786 3946 8299 3946 4566 3948 7863 3951 5168 3951 5243 3951 6437 3953 5785 3954 9257 3955 9652 3959 6036 3969 7373 3970 9841 3971 9540 3972 5556 3975 4233 3977 5626 3977 9827 3981 5961 3983 5580 3984 8892 3990 9438 3992 4414 3993 6840 4001 6361 4002 7582 4002 9895 4008 8014 4020 6717 4023 9125 4025 5772 4028 8704 4029 7284 4030 8148 4032 6266 4037 4145 4038 4820 4041 4623 4044 7216 4044 9077 4044 5902 4045 6485 4048 9657 4049 8912 4050 9365 4057 8024 4067 5350 4068 7549 4069 9676 4075 9846 4077 7600 4077 7376 4080 6249 4080 6093 4089 7282 4089 7565 4091 4777 4096 4673 4098 6058 4099 8481 4100 8226 4101 7663 4102 4459 4103 6853 4104 5966 4105 6592 4106 6813 4110 8420 4111 6653 4115 8312 4116 8640 4118 6025 4119 4461 4121 4393 4121 6826 4123 5656 4124 6464 4124 5363 4125 9334 4126 4372 4127 8392 4129 9093 4132 9134 4132 8582 4133 4162 4133 5307 4133 9876 4134 9839 4135 7157 4136 4151 4137 6729 4144 5677 4146 4669 4146 6743 4155 9196 4158 5382 4162 7260 4170 4299 4173 8133 4175 4348 4181 9836 4183 5234 4184 5260 4190 4802 4191 9056 4191 8017 4191 5040 4193 6892 4193 6455 4194 5719 4195 4373 4204 5591 4205 4713 4205 5269 4206 8712 4207 4995 4209 5513 4211 4464 4212 7473 4214 4709 4217 4786 4217 7631 4218 6289 4224 6005 4224 4525 4225 8024 4225 9480 4234 9931 4235 8077 4236 8904 4236 7291 4236 8468 4237 6782 4238 9633 4239 8146 4241 8220 4244 8712 4254 9312 4255 8936 4255 9714 4255 4566 4256 7156 4257 4741 4258 9341 4263 6123 4263 6492 4264 7143 4266 7786 4266 8162 4270 7956 4271 8246 4281 6424 4282 8783 4283 8411 4287 7429 4288 7157 4289 6314 4291 7010 4300 4973 4301 4661 4301 5495 4302 9658 4304 4320 4304 8321 4307 5762 4309 7013 4309 7823 4310 5797 4310 9575 4312 7509 4314 9158 4315 8344 4315 6617 4315 5164 4316 6694 4318 8659 4321 6108 4326 8517 4329 6824 4330 4897 4330 4467 4331 7131 4331 9023 4333 7814 4334 8355 4335 9952 4342 4904 4342 6069 4347 9929 4348 7784 4348 7788 4351 9014 4357 5126 4357 5415 4358 9528 4358 6335 4360 5749 4360 5478 4362 9256 4363 8993 4364 4446 4365 4857 4371 8710 4374 6296 4376 5781 4377 6941 4382 5464 4383 8924 4385 9175 4387 8173 4395 7674 4399 9524 4400 9878 4407 9771 4407 5094 4408 8024 4409 7000 4410 9538 4410 7626 4411 9176 4414 6721 4414 8714 4417 8328 4417 6164 4417 7447 4418 8823 4419 7592 4421 8247 4426 7915 4430 7613 4431 6684 4431 4855 4434 7750 4439 8818 4442 8083 4445 4515 4446 4492 4448 6930 4448 7966 4448 8599 4449 6761 4452 7484 4454 7154 4456 7778 4456 5245 4459 6831 4460 9014 4460 9359 4461 5048 4463 6163 4463 6138 4463 5351 4464 9329 4464 4772 4466 9874 4466 9748 4470 5655 4473 7208 4479 9622 4482 4914 4482 8323 4487 9469 4491 6226 4492 6867 4492 5062 4497 5162 4497 9022 4497 9271 4499 4704 4501 6455 4504 6297 4504 5482 4505 5934 4518 6959 4519 8089 4519 4973 4525 9769 4527 8036 4528 7167 4530 7790 4531 8051 4534 6595 4535 4892 4536 4640 4536 6995 4539 9722 4540 6360 4542 8934 4546 6711 4548 7218 4549 9992 4553 9307 4557 6626 4564 5162 4566 9623 4575 5582 4578 4695 4586 4678 4587 5416 4589 7547 4590 7924 4594 5115 4598 5143 4599 9674 4602 6142 4603 8963 4603 7214 4606 8119 4607 9981 4617 6526 4620 5900 4625 8387 4627 7093 4628 8928 4628 5896 4628 6635 4628 8500 4630 5230 4633 9770 4633 6397 4634 5867 4635 5613 4637 6066 4639 9379 4640 9430 4641 7848 4645 9402 4646 7661 4648 5250 4649 8362 4650 7009 4650 5514 4657 9753 4657 8054 4659 8307 4662 7307 4663 6493 4666 8327 4667 6281 4667 5987 4675 5640 4680 7441 4689 5055 4693 9292 4696 9412 4703 6573 4703 9879 4706 5962 4706 7546 4707 7081 4709 7489 4711 5651 4711 7934 4713 6595 4714 6319 4722 6953 4724 9279 4735 5198 4737 6183 4738 9113 4738 9419 4742 6357 4743 8107 4743 5549 4744 8784 4744 6791 4745 9259 4747 6107 4752 8497 4755 4815 4756 8095 4761 5773 4762 7947 4763 5318 4763 8399 4768 6435 4769 8991 4774 5663 4779 9831 4780 7814 4781 6137 4782 8781 4783 7064 4786 5867 4787 5572 4790 5948 4792 9950 4796 6661 4797 7362 4800 6140 4801 5984 4803 9048 4804 7267 4810 9248 4811 7625 4811 4913 4812 9429 4817 5813 4818 8993 4818 7869 4824 7129 4825 5633 4828 6529 4828 6947 4832 5104 4832 5099 4833 8361 4834 7594 4834 7708 4837 9951 4838 7496 4838 5006 4840 9026 4842 8003 4843 8100 4845 5691 4848 5113 4848 6277 4848 9678 4851 7088 4853 7650 4855 8667 4859 8551 4863 7564 4864 8807 4865 7929 4870 6557 4871 6926 4872 5412 4873 7711 4874 8086 4875 6393 4876 9376 4877 9981 4881 7754 4882 6324 4883 9834 4884 9492 4890 8528 4890 6913 4890 7004 4890 8278 4893 4954 4894 9591 4898 9999 4902 5484 4906 7638 4906 7399 4914 8508 4915 6318 4917 7601 4917 6370 4921 6367 4924 8086 4929 9708 4929 8985 4930 6919 4932 8011 4933 7878 4937 5995 4943 6825 4946 7456 4949 5537 4951 7862 4954 7902 4957 5035 4958 5661 4965 5211 4967 5931 4968 7063 4975 8926 4981 8542 4983 8767 4985 8810 4987 7745 4987 9378 4987 7602 4990 9385 4991 6334 4992 5769 4993 9922 4993 8955 4999 5383 5000 6679 5001 6082 5005 7406 5006 8296 5007 8596 5010 6786 5013 7159 5014 7163 5014 9469 5018 7640 5018 8645 5021 8858 5023 8322 5023 8492 5023 5741 5024 9169 5027 7320 5029 8392 5031 5109 5034 7356 5036 5052 5039 6998 5040 5433 5041 7500 5042 7098 5046 8544 5046 7070 5049 6322 5050 9004 5052 6055 5054 7395 5064 6299 5068 5514 5073 7409 5074 8751 5080 8320 5080 5409 5080 6357 5081 9699 5081 8044 5082 9797 5084 7891 5093 8166 5096 9256 5098 6205 5101 6298 5104 9950 5105 5831 5106 8352 5107 9362 5108 8633 5113 8775 5120 8941 5123 5457 5123 5516 5124 5460 5125 6929 5132 8752 5140 5963 5140 9972 5143 9110 5145 5907 5145 5643 5145 6581 5147 8263 5149 6180 5150 8985 5150 7233 5151 5257 5154 5842 5157 9990 5161 5586 5162 6229 5162 6855 5169 5787 5171 9136 5175 9372 5175 6094 5177 7397 5181 7314 5182 9387 5183 8095 5187 7548 5188 9418 5195 6571 5195 8702 5198 6048 5200 5772 5202 8989 5204 8127 5205 5897 5210 9851 5212 6182 5213 7570 5216 6221 5219 8073 5220 6828 5223 8133 5224 9697 5226 9857 5226 8175 5231 8867 5233 7254 5236 8502 5236 7350 5237 7739 5238 6152 5241 9496 5243 8382 5250 9421 5251 8078 5255 9014 5256 8909 5260 6725 5261 9140 5262 8608 5264 6360 5264 7831 5275 7047 5280 5767 5281 9739 5282 9088 5285 9225 5287 6267 5288 7329 5288 7990 5291 7077 5294 9498 5295 6345 5295 8915 5300 8341 5302 6162 5305 9266 5308 7697 5308 8780 5308 8926 5311 8406 5312 7527 5314 7876 5326 7041 5331 6969 5338 8530 5342 6676 5343 6572 5345 9376 5345 9846 5345 8167 5346 9311 5350 6110 5352 7974 5358 7389 5360 7021 5363 9601 5364 7864 5364 5993 5365 5397 5370 6981 5370 6198 5372 9670 5374 8580 5376 7844 5378 7126 5379 6591 5386 9885 5388 5508 5391 9586 5392 5865 5395 9673 5395 8941 5397 6265 5398 5859 5400 6125 5405 9773 5406 6316 5407 6809 5409 7641 5412 8090 5413 9059 5421 5986 5430 7864 5431 7722 5432 7810 5434 6388 5436 7207 5438 7146 5439 6183 5445 8938 5448 7460 5451 8272 5463 6731 5470 9401 5476 5978 5476 6214 5478 6813 5480 8933 5481 7379 5490 9896 5496 7319 5497 9524 5508 7160 5512 9866 5512 5981 5512 6526 5516 8594 5522 7287 5527 9449 5527 7742 5529 6021 5530 8848 5530 6183 5531 7912 5532 7362 5533 9365 5540 5726 5545 8880 5549 6472 5549 7591 5552 7117 5553 8787 5557 9053 5560 7967 5561 9743 5562 7512 5564 9543 5565 9957 5570 5912 5572 6307 5574 6899 5577 6842 5577 8782 5578 9290 5583 5800 5583 7645 5585 8775 5588 6566 5592 6650 5598 6419 5600 5937 5602 6893 5602 6623 5603 6576 5608 9906 5611 8826 5612 6890 5618 7990 5621 6789 5622 7833 5625 7169 5626 7157 5626 9390 5635 8101 5640 8677 5644 5919 5649 5892 5654 9744 5654 6408 5654 8016 5663 6680 5664 6243 5667 8820 5674 8911 5678 7624 5680 8487 5681 7427 5686 6011 5687 8489 5688 5885 5688 8599 5692 6137 5693 9263 5695 9759 5700 9323 5702 9771 5703 6422 5706 9456 5709 6503 5711 7026 5715 8215 5717 6918 5718 5911 5721 5863 5723 7231 5726 8556 5726 5798 5728 6258 5728 6430 5729 6242 5730 6378 5732 8632 5734 6461 5737 6880 5738 8190 5738 7006 5741 9445 5745 6913 5748 7949 5748 6263 5749 8220 5753 9116 5755 8471 5769 6822 5774 8110 5781 9919 5784 6320 5785 7860 5786 6023 5787 7666 5788 7248 5789 8928 5789 6540 5792 7124 5792 6973 5808 7907 5809 7277 5818 9688 5822 7928 5822 8013 5826 6740 5828 7155 5830 9018 5833 6330 5834 6303 5836 8206 5845 6219 5846 7754 5850 8139 5851 6749 5852 8990 5852 8150 5854 9070 5856 9644 5861 7744 5861 7434 5865 7550 5870 9141 5872 9379 5876 6782 5879 6334 5885 9822 5893 6372 5894 8383 5898 6840 5901 9163 5903 7677 5904 7601 5912 9226 5912 6396 5912 7301 5915 5931 5917 9863 5923 7977 5928 6323 5933 7362 5937 6690 5941 8816 5945 7119 5946 9294 5960 9646 5962 5968 5963 9095 5967 9856 5972 8587 5977 9536 5977 5981 5978 7689 5979 6889 5980 8846 5981 7029 5982 7039 5987 9209 5995 9871 5996 7627 5997 9692 6000 9170 6011 8167 6012 9928 6014 8144 6016 9283 6017 8587 6018 6148 6019 7027 6020 7329 6025 7641 6025 8211 6027 6367 6030 8871 6035 7736 6039 9409 6041 8663 6044 6932 6044 6967 6056 9642 6060 7519 6061 7202 6065 7339 6065 7135 6067 8889 6068 6669 6068 8485 6072 7816 6079 9676 6083 9207 6085 7699 6100 6658 6101 8008 6104 6750 6107 7815 6108 9111 6109 9537 6113 6632 6117 9666 6123 7405 6129 8308 6129 8486 6133 6669 6142 8765 6146 6417 6149 9072 6150 6855 6152 9270 6153 6868 6155 9220 6158 9680 6160 9216 6161 6959 6162 7619 6162 6604 6165 7889 6168 7585 6172 6292 6173 9460 6173 7535 6188 7821 6196 8151 6197 9926 6199 8966 6206 9851 6212 7849 6217 6252 6220 8306 6232 6973 6234 8177 6235 8819 6238 9904 6238 6690 6240 8862 6242 6585 6245 7030 6246 9907 6254 9961 6255 9844 6258 9936 6262 8446 6264 9513 6264 6876 6268 9317 6269 8413 6272 6756 6275 9394 6282 7038 6292 6885 6293 9974 6297 6559 6313 8460 6316 7016 6319 8104 6322 7131 6323 8534 6327 9170 6333 9906 6334 7997 6341 7247 6342 7522 6343 7352 6343 8281 6346 6422 6349 7333 6350 7065 6352 9831 6353 6896 6361 8438 6364 9037 6381 7400 6381 7101 6385 6596 6387 7360 6390 7787 6391 7123 6392 6642 6398 6410 6400 7650 6405 7913 6405 8021 6406 8690 6408 9916 6410 8122 6414 9124 6418 9371 6420 8050 6427 6877 6428 6867 6436 7714 6437 7623 6438 8253 6440 8757 6442 6648 6443 8548 6449 6651 6452 6566 6453 9389 6462 9425 6466 9708 6468 9661 6478 9705 6480 8970 6481 7107 6486 6886 6487 7117 6489 9639 6495 8874 6495 8291 6497 7869 6505 8973 6507 8307 6513 9564 6515 7534 6524 7684 6529 7631 6535 9811 6535 9732 6543 7053 6546 7191 6549 9463 6550 8610 6559 8627 6559 9157 6560 8328 6560 8068 6564 6944 6565 8757 6571 7576 6571 9492 6579 6742 6585 6816 6585 6803 6590 7451 6599 6676 6603 7039 6605 6785 6606 8235 6610 8628 6628 6952 6636 6899 6638 9917 6645 8455 6646 7097 6651 7317 6658 8680 6661 8066 6667 7300 6669 8395 6680 9634 6681 7383 6683 9652 6686 8244 6687 7496 6690 7327 6691 7762 6691 6901 6692 8468 6697 7551 6699 7163 6701 9221 6701 6775 6706 9877 6706 8527 6707 9133 6710 8202 6713 8510 6725 8888 6730 8810 6730 9548 6733 9475 6741 9310 6752 7432 6757 8450 6757 7026 6759 8269 6761 7442 6764 9624 6771 9471 6776 6800 6776 9240 6778 8198 6781 7070 6786 9514 6795 9622 6815 9337 6817 8780 6822 8652 6830 8490 6832 8524 6836 7114 6836 8703 6872 9729 6877 7248 6877 8020 6884 8454 6886 9543 6888 9411 6892 7512 6897 8504 6901 9295 6917 9681 6925 9033 6926 7414 6931 9412 6933 7839 6939 9096 6944 7460 6946 7197 6947 9815 6958 7898 6964 8555 6966 9081 6970 9035 6971 7816 6973 8771 6984 7103 6985 9469 6996 8049 7001 9287 7002 7970 7010 8345 7017 9235 7028 7094 7036 8008 7036 7992 7040 8011 7042 8340 7045 8825 7054 9862 7060 9249 7063 9583 7065 9111 7084 7359 7085 9650 7087 7174 7089 9748 7123 8339 7125 7468 7130 9256 7130 8384 7130 8141 7131 9679 7133 9313 7137 7281 7139 9391 7140 9508 7146 9572 7149 7688 7153 8703 7157 8260 7166 7695 7169 8722 7173 7374 7175 7821 7177 7251 7182 9011 7192 9738 7195 8711 7224 8037 7237 9252 7238 9343 7239 7779 7245 8536 7245 7968 7265 9772 7266 9628 7271 8443 7271 8271 7277 8110 7282 8238 7285 9587 7285 7958 7289 8396 7298 8465 7300 7499 7306 7744 7311 7839 7325 8767 7329 9379 7331 9652 7341 8111 7345 9733 7346 9227 7365 7764 7367 8299 7370 9086 7372 9212 7378 8366 7379 7532 7386 8689 7388 8910 7393 9216 7393 8217 7400 8127 7404 7470 7407 7979 7409 7997 7414 8004 7416 8391 7419 8769 7419 8794 7420 8338 7423 9386 7439 8800 7441 9124 7449 8170 7450 7486 7459 7793 7467 8369 7473 8701 7477 7494 7480 9278 7482 9186 7489 8757 7495 9657 7498 9565 7502 8826 7507 9949 7510 9757 7512 9455 7513 8055 7518 8321 7518 8898 7520 9014 7525 8593 7535 8937 7535 7879 7537 7779 7539 9237 7557 9208 7559 7815 7584 9728 7586 7960 7590 9640 7599 8286 7604 8543 7608 8274 7628 8972 7635 7725 7636 8979 7636 8349 7646 9331 7649 9273 7653 9037 7661 8628 7667 8332 7667 8327 7668 8021 7679 8301 7685 8030 7691 7910 7692 9959 7698 8750 7708 8040 7709 9294 7717 8418 7722 9136 7733 9399 7750 8785 7756 8763 7759 9024 7761 8006 7762 8906 7762 9143 7773 9238 7777 8023 7779 8939 7788 8055 7802 8520 7803 9767 7810 8719 7810 8895 7814 9743 7818 8214 7818 7935 7835 8967 7842 9106 7842 9157 7842 8670 7849 9018 7850 8201 7853 8178 7855 8879 7865 9043 7870 9220 7876 9548 7877 8196 7877 8045 7883 9091 7888 9998 7888 8423 7892 9222 7893 9692 7898 8359 7902 8820 7907 9463 7911 8058 7911 8397 7911 8863 7912 8999 7916 7997 7922 8207 7925 9855 7930 9019 7934 8390 7935 9084 7937 8548 7941 9315 7961 9632 7968 8217 7974 8387 7980 8811 7985 8591 7986 9666 7990 9658 8003 9639 8007 9093 8013 8370 8014 8505 8017 9470 8018 9454 8019 9147 8021 9847 8049 8109 8052 8483 8060 9992 8061 9714 8074 9210 8074 8991 8076 8771 8082 9110 8086 9370 8092 9394 8097 8864 8101 8186 8109 9720 8111 9625 8114 9454 8119 8959 8126 9627 8131 8287 8132 9700 8132 8380 8152 8909 8155 9993 8159 8235 8161 9876 8166 9499 8177 9299 8193 9061 8194 8874 8199 9488 8218 8861 8226 8341 8234 8978 8240 9178 8247 8776 8249 9467 8257 9261 8259 9324 8305 8524 8306 8765 8317 9626 8327 9048 8331 8436 8337 9180 8348 8998 8356 8763 8361 9564 8372 8472 8372 8606 8374 8939 8378 8543 8380 9685 8384 9100 8388 9549 8412 9489 8414 8688 8414 8813 8421 9280 8421 8892 8449 9466 8459 8959 8465 8987 8467 9612 8476 9063 8485 8686 8487 8594 8489 9216 8490 9280 8491 8779 8505 8836 8512 9396 8524 9648 8532 9495 8534 9185 8540 8588 8555 9178 8564 9352 8583 9052 8592 8878 8603 9094 8604 8715 8625 9852 8629 8854 8633 9843 8639 9697 8640 9527 8649 8811 8662 8853 8676 9540 8696 8956 8697 9333 8701 9560 8707 9754 8709 9124 8716 9533 8728 9419 8737 9048 8761 9299 8761 9695 8777 9468 8785 9727 8791 9444 8801 9516 8808 9305 8809 8974 8873 9165 8898 9949 8907 9727 8918 9405 8938 9942 8939 9132 8940 9221 8943 9263 8946 9420 8952 9256 8955 9338 8962 9588 8984 9392 8996 9083 9017 9216 9042 9831 9042 9399 9047 9832 9052 9658 9059 9894 9062 9493 9064 9416 9073 9947 9136 9228 9146 9337 9150 9682 9170 9348 9177 9381 9189 9512 9191 9636 9201 9322 9214 9363 9267 9521 9293 9783 9301 9467 9310 9373 9375 9466 9383 9674 9402 9673 9416 9774 9423 9906 9440 9443 9467 9876 9476 9529 9496 9778 9536 9654 9559 9661 9560 9583 9575 9810 9585 9981 9614 9617 9747 9904 9848 9953
95d0c60be70043df7ce3cab2778c2b417751c00d
e223a3388730b3a8ab63f7565156d5bf7a65e44b
/scilab/ftdi/loader.sce
b268273a6491dc192f3efb9eab46381781aae075
[]
no_license
YSBF/flight_control
1cfef21947c9497659eea3cf631b4de207a0a851
fc74021c2bd62819ea4f637b45936ab2edf9e7af
refs/heads/master
2020-04-15T21:47:09.796455
2018-06-07T21:28:29
2018-06-07T21:28:29
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
773
sce
loader.sce
// This file is released under the 3-clause BSD license. See COPYING-BSD. // Generated by builder.sce : Please, do not edit this file // ---------------------------------------------------------------------------- // if ~win64() then warning(_("This module requires a Windows x64 platform.")); return end // libmex_path = get_absolute_file_path('loader.sce'); // // ulink previous function with same name [bOK, ilib] = c_link('libmex'); if bOK then ulink(ilib); end // list_functions = [ 'ftdi'; ]; addinter(libmex_path + filesep() + 'libmex' + getdynlibext(), 'libmex', list_functions); // remove temp. variables on stack clear libmex_path; clear bOK; clear ilib; clear list_functions; // ----------------------------------------------------------------------------
af111dfd4fc26142aaf1928b7892dc86405dc0f9
449d555969bfd7befe906877abab098c6e63a0e8
/2627/CH13/EX4.9/Ex_B_4_9.sce
3e9d0c63b719264ab1de72471f6d830a6fcf0995
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
485
sce
Ex_B_4_9.sce
//Ex 4.9 clc;clear;close; format('v',6) //Part (a) delta_f=75;//kHz fm=15;//kHz DR=delta_f/fm;//Deviation ratio disp(DR,"(a) Deviation ratio"); //For m or DR=5 we have 8 sidebands B=2*(8*fm);//kHz disp(B,"(a) Bandwidh for worst case(kHz)"); //Part (b) delta_f=75/2;//kHz fm=15/2;//kHz DR=delta_f/fm;//Deviation ratio disp(DR,"(b) Deviation ratio or modulation index"); //For m or DR=5 we have 8 sidebands B=2*(8*fm);//kHz disp(B,"(b) Bandwidh for worst case(kHz)");
c0eee022914ae1bb38aed10aa835c86f4ad9de20
634af5304c38dcb1f46551b3af0cd17d9538279f
/aula1/a1e1-GeraVA.sce
0a02bfa7472c4872b23add10cb66208070a4ae03
[]
no_license
taiaraujo/Processos_Estoc-sticos
3b35ab57321d08047621f7045ae62a5c937a3346
85677fe2d055ed621d399c64cec14eb6ec1875de
refs/heads/master
2021-04-28T03:06:13.349687
2018-02-19T23:07:28
2018-02-19T23:07:28
122,131,723
0
0
null
null
null
null
UTF-8
Scilab
false
false
514
sce
a1e1-GeraVA.sce
//geração de amostras aleatórias //variavel aleatoria de distribuição uniforme clear w2 = rand(1,100); w3 = rand(1,1000); w4 = rand(1,10000); figure subplot(3,1,1) plot(w2) //vetor de 100 posições title('w2 - 100 amostras') //titulo subplot(3,1,2) //coordenadas para plotar plot(w3(1:100)) // mostra 100 posições title('w3 - 1000 amostras') //titulo subplot(3,1,3) //coordenadas para plotar plot(w4(1:100)) // mostra 100 posições title('w4 - 10000 amostras') //coordenadas para plotar
7446d99065333cdd6371e8640a66aedb940addb5
6a585e9d0b48fac0f59ea732a39adba1ec9c1450
/grafica3d.sce
4928174d1a4f954ac107f94fa5c80a32c26c44f1
[]
no_license
josrangel/scilabEjemplos
e02cbe23976177837859f04cc2e3a4c7199bd25f
0523f1b350d53696525a9cd0d6bb58cd5e2a59ef
refs/heads/master
2022-12-28T21:19:28.795105
2020-10-10T13:06:47
2020-10-10T13:06:47
302,904,089
0
0
null
null
null
null
UTF-8
Scilab
false
false
33
sce
grafica3d.sce
x=0:1:100; y=2*sin(x) plot(x,y)
d8dfbfa6d93cb14bd572ea15ae343297b3a5a2aa
63c8bbe209f7a437f8bcc25dc1b7b1e9a100defa
/test/0024.tst
48f319bd523cd4865f48d6d814835f58358305c5
[]
no_license
fmeci/nfql-testing
e9e7edb03a7222cd4c5f17b9b4d2a8dd58ea547c
6b7d465b32fa50468e3694f63c803e3630c5187d
refs/heads/master
2021-01-11T04:09:48.579127
2013-05-02T13:30:17
2013-05-02T13:30:17
71,239,280
0
0
null
2016-10-18T11:01:57
2016-10-18T11:01:55
Python
UTF-8
Scilab
false
false
465
tst
0024.tst
spLittEr BfVPM {} fILTEr EW { NOT f ( AC:B2E:aef:: , ::AE:F:E/0, ) = 5729 } FiLtEr wY {not o } tdxFc BRaNCh L -> N gRoUPer nFOKDPI {MODUle Cp{ } AggREgAtE E ,BitOR(G.W) AS A ,sUm(qXQjxS.rD) as UkI ,bItOr(TK) AS A } UNGROUper OPME { } gROuPfilteR i {NoT ::Da8F:Cfd:4e:b:7:Ae5a = t } MeRGER d { mOdUlE xD { bRAnchEs afbj NoT 2 > 9.4.1.141 } mODULE cTgW { BRaNcHES xfJ noT H ( ) } MoDuLE j { BranChES S, S } mODule Gl { branChES Gz, W } exporT F }
ef82e4c9918dbbd7480f58e14de20c3f9f4f3f63
449d555969bfd7befe906877abab098c6e63a0e8
/1736/CH6/EX6.15/Ch06Ex15.sce
1b120262174ed763b2046d88473b4c957682b32c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
657
sce
Ch06Ex15.sce
// Scilab Code Ex6.15: Page-204 (2006) clc; clear; n_i = 2.5e+019; // Intrinsic carrier concentration of Ge at room temperature, per metre cube n_Ge = 5e+028; // Concentration of Ge atoms, per metre cube delta_d = 1e+06; // Rate at which pentavalent impurity is doped in pure Ge, ppm n_e = n_Ge/delta_d; // Concentration of impurity atoms, per metre cube // From law of mass action, n_e*n_h = n_i^2, solving for n_h n_h = n_i^2/n_e; // Concentration of holes, per metre cube printf("\nThis concentration of holes in Ge = %4.2e per metre cube", n_h); // Result // This concentration of holes in Ge = 1.25e+016 per metre cube
ec4d3852b1115696fc95fe4d0baec1bc92667f86
449d555969bfd7befe906877abab098c6e63a0e8
/2078/CH5/EX5.11/Example5_11.sce
e649222095637f7a28a99248e6e85de7c64f21ae
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
828
sce
Example5_11.sce
//Exa 5.11 clc; clear; close; //Given data : S=1*10^3;//kVA pf=0.71;//power factor VRL=22*10^3;//Volt f=50;//Hz R=15;//ohm L=0.2;//H C=0.5*10^-6;//F cos_fi_r=pf; sin_fi_r=sqrt(1-cos_fi_r^2); IR=S*10^3/VRL;//A IR=IR*(cos_fi_r-%i*sin_fi_r);//A X=2*%pi*f*L;//ohm //Z=sqrt(R^2+X^2);//ohm Z=R+%i*X;//ohm Y=2*%pi*f*C;//S ICR=1/2*%i*Y*VRL;//A IL=IR+ICR;//A VS=VRL+IL*Z;//Volt disp("Sending end voltage(Volt), magnitude is "+string(abs(VS))+" and angle in degree is "+string(atand(imag(VS),real(VS)))); ICS=1/2*%i*Y*VS;//A IS=IL+ICS;//A disp("Sending end current(A), magnitude is "+string(abs(IS))+" and angle in degree is "+string(atand(imag(IS),real(IS)))); fi_s=atand(imag(VS),real(VS))-atand(imag(IS),real(IS));// cos_fi_s=cosd(fi_s);//sending end pf disp(cos_fi_s,"Sending end power factor(lag) : ");
ea881ed15985a50496efbce9aceb8369051827ba
449d555969bfd7befe906877abab098c6e63a0e8
/2414/CH7/EX7.9/Ex7_9.sce
f930b8725224fe8911d6c1185f1c6d3b3681a47e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
255
sce
Ex7_9.sce
clc; close(); //page no 235 //prob no. 7.9 delta_f=8000; //Hz fm=100; //Hz B=delta_f/fm; // disp(B,'The modulation index is'); disp('(For B>=50 , the signal is VWBFM)'); Bt=2*delta_f; mprintf('The transmission bandwidth Bt= %i Hz ',Bt)
0ddebb1e77402b06081d96667fa92b726fa2d563
b3c9357cd1290921e67444ae057761959fdf24f1
/Curso de programação com Scilab/códigos/ex022408.sce
5f5ae3378821d2862ac2c70af45e5e4d7320317e
[]
no_license
joaolrneto/Scilab
91742520422426dc8a772997ef4a5d6376008b6e
f383f87e4585955cf19d0dae1b5c29f93c3f70b4
refs/heads/master
2023-02-05T20:13:03.677069
2020-12-30T14:53:09
2020-12-30T14:53:09
264,671,730
1
0
null
null
null
null
UTF-8
Scilab
false
false
659
sce
ex022408.sce
clc clear A=input('Informe o primeiro valor :')//teclado B=input('Informe o segundo valor :')//teclado C=input('Informe o terceiro valor :')//teclado D=input("Informe o quarto valor :") //ordenação if A>B | A>C | A>D then if B<C & B<D AUX=A A=B B=AUX else if C<D AUX=A A=C C=AUX else AUX=A A=D D=AUX end end end if B>C | B>D then if C<D AUX=B B=C C=AUX else AUX=B B=D D=AUX end end if C>D then AUX=C C=D D=AUX end printf("%d\t%d\t%d\t%d\n",A,B,C,D)
b70edbd3d25f38feba00d9990a5eb6ec369aa5ba
ac1f8441b0319b4a391cd5a959bd3bb7988edfa7
/data/news2015/news2015/EnCh/ench11.tst
c7d41fd21df8a76a40c7770fe9aa8835838960a9
[ "MIT" ]
permissive
SaeedNajafi/transliterator
4d58b8604fa31f52ee2dce7845e002a18214fd5e
523a087b777a5d6eec041165dabb43848f6222e6
refs/heads/master
2021-09-18T17:02:59.083727
2018-07-17T06:01:21
2018-07-17T06:01:21
129,796,130
0
0
null
null
null
null
UTF-8
Scilab
false
false
16,325
tst
ench11.tst
aase abrikosov achsel acs adak adan adriano aglen agnelli agoston agrippina ahlstedt aichhorn ajdukiewicz akenside akimushkin akos aksyonov akyol alaska albertinelli alberto albertsson alcalay aldegrever aleksander aleramo ales alexei algarotti ali alisa allbutt alnar alpar alsted altheim altwegg amado amazon ambartsumov ambroise america amiens amthor ana anceschi anchieta anchorage andalusia anderson andreini andreis anerio ange angeli angelou ankara annerose ansart antimony antonellini antonini antonov antonova anuszkiewicz anzengruber apaka apelgren appen appenzeller aptidon aquaviva aranha arduino ariburun arniches arsen artedi arto artsybashev asbestos asen aspar ast atamanov atlantov atlasov attia aubanel aubrey audubon augusto auken avner avram avramov avvakum awolowo axen azimi baard babacar babu baccelli baczko badings baekkelund baethgen bahrain bailleul balandin baldung balenciaga ballon ballve balmaceda baly banti barberini barboteu barkhausen barna barnao barnave barnfield baroin barrande barraud barret bartoli bashikarov basin bassermann batmunkh bauch bauduin baunsgaard bazoft beaucamp beauneveu beaussant beaverton bec beddoes beechey beeston bego behncke behrendt bekhterev belize benares benbow benedetti benediktsson benedix bengtsson beni benin benito benoite bensing bentivoglio bentoiu benvenuti berezin berki berlichingen bernardini bernari bernbacher berneker berto berwald berwick beti betterton bettino beyerle biagio bianciardi bieberbach bienek bigot bilal biloxi bivona biwott bixio bjedov bjerrum bjork blanckenburg blaschke blok bloomington blunt bobbio boccaccio bochmann bodurov boedeker boehn boeminghaus boesler bogdandy bogholm bogolyubov bogomyakov bohnen boisdon bojan bokun bolivia bolotin bomhard bonatti bonhomme bonynge borgese borghini borgonovo bormann boronat boscawen bosch bossak bossert boswell botkin botticelli botticini bougainville boughey bovet boz bozza braganza bramer bramsen brasilia brasseur braunsteiner brdecka brebbia bredero brems brena brengola brenna breskvar bresser brezinka brianchon brieger brigitte brioschi brisebarre broadway brodersen broek bronsted broome bruckner brugsch brum brunswick bryusov buch bucharest buchberger bueno bui bulgakov bulnes bumm buonarroti buono burbach burgkmair burlamaqui busia busoni busse bynkershoek cairnes calfa camdessus campagne campagnola campanari campanile campo campra candela canguilhem canonica canto capitan capoul caragiale cardarelli cardenal cardine cardozo carillo carla carlgren carrieri cartou casca cassella cassigneul castelnau castelvetro castilho cato cau cavallero caxias cebotari celi celso century ceram cernan cernay cerqueira cerutti cesbron cesti cettour ceva chadourne chagnon chakravarti champaigne championnet champlain chamson changarnier chapuis chardonne chardonnet charlet charlottetown charreton chasins chautard chavchavadze chazov cherniaev chernov chervenkov cheyenne chiari chin chinery chira chirino chisinau chmara chopra choquet christoffersen christoforo christophersen chubin chuchro chuikov chuvash ciampi ciancio ciardi cienfuegos cim cipelletti claudio clavijero clemente clementi closets clovio cluseret cochin collinder colonne columbia comonfort comparetti conall conchita conchon concord conington coninx coppens coppet corona corpora corral corsini corso cortona coser coseriu cossa cottafavi coubertin couperus courteline coustou couthon cranach crasnaru crile cristina cronje csete csikszentmihalyi culafic cumont cunhal curval cyprus czerny czinkota czinner dabin dahm dalman dancourt dangeau daniele danielsson danon danov dard dargomyzhski darmstadt daryl dashiell daskalova davern davidsohn dedekind degas dehmel deinzer dejmek delage delfini delplanque demange demin demisch demski denaro denneborg denon denou denzler depraz derzhavin descamps dev dhananjay dhomme diallo diaz diego diepgen dijon dimiter dingfelder dino dinter diop diouf disch discovery dissanayake distel dmitriev dmowski doisneau dolce dolgikh dolgun donegal donkova donlevy dorothee dorson dou doubinsky doukan downtown dows dragunov drees dreikurs driessen drude dua dubas dubinin duchamp dudek dudziak dufy duhem duisberg dumay dumesnil duncker duni duport duprat durand durango dushanbe dussaut dussek duyvendak ebhardt eckermann eduard eduardo eekhoud ehrhardt eiffel eisch eldin eliasson elion elmqvist eltinge emde emeric enckell endel engerer entebbe ephron erba erhart erick erim ernesaks erokhin escher escobar esenbel eshkol espaillat espert ethiopia eucken europe everitt eystein fabiunke fairbairn falcinelli falckenberg faligot falkberget falkenstein fantoni farmington fasano fasch faure favini favorin federico fedor feigin feldkamp feliciano fendrich feneis ferenc fereydoun ferner ferrabosco ferrani ferro fet feuge fialkov fibich filacuridi finel fineschi finnbogadottir fir flach flaiano flaischlen flamson florin fontanarosa fontane foraker forbath forberg fouchet fourcroy fourneyron fournier franchi franciolini frankenberg frankfurt frantisek frappier freppel fresno freudenthal frick fridolf friebel friedjung fromentin funafuti gabarain gadamer gafurov gagliardi gaio gaj galeano galina gallant galletti gallo gallone galvani gansser ganzarolli garrot gasparian gasparin gathercole gauch gaulke gaultier gaur gaza ge gee geffrard gemes genelli genevoix gensous genuit gerardo germani gervaise gervinus gharib ghazarian ghiberti giacosa giancarlo gidon gigi gimenez ginger gini ginzbourg girardon gironde giulini gjellerup glauber glavak gleispach glendale glowacz gmeiner gnanadesikan goblot godard goetting goga gokel golant goldfluss goll golovko golyakhovsky gomulka goncourt gonnet gopi gorbatov gossweiler got gotlieb gotthelf gottlob gottsched goucher gounaris gounod gourmont govea graas grandjean granin grassmann gravesande gresser grigorovich grillparzer gromyko grosjean grotewohl grumbach grunitzky guccione guerin guerrazzi guerrieri guetta guiana guichard guilford guinea-bissau gulbranson guldberg gumbs gumina gummerus gumplowicz gurrey gustav gustl gutstein gutteridge guyot guzanov haavikko habeck haberl haberler hackmann haddock haftmann hagelstange hagenbach hagerstown hahnemann haia hainaut halbe halbwachs haliburton hallas halldor hallhagen hallier haloun halphen halt hamari hamdi handt hannak hannover hanotaux hantzsch hanzi hardach hardenberg hargobind harich harkort harrisburg harsanyi hartemann hartner harva hassenpflug hauschild hause hausrath haussherr heaviside hebron heeren hehn heichelheim heidegger heilbronner heimdal heims heitkamp heitor helga hell hellmann henckell hennequin hennig henrici henselt heriban herkimer herta herth hilferding himmler hintze hitti ho hochberg hodin hoernle hofmeister hohmann holand holtzendorff homeier honor hornak hosiasson hoss houdon houdremont houssay hrubant hubertus huch hudemann humpert huntingdon husseini husserl hvorov ianculescu ibarbourou ibarruri idaho illich image imre inardi incisa ines ioan ioannides iosif iraq iriarte irigaray irina irmer iser iskandar itkonen itzhak ivens ivin ivory jaclyn jade jaenisch jakarta jamin janikovszky jansons jaoul jaroszewicz jartoux jascha jasmin jatho jaudon jawara jens jeritza jessua joaquin johnsson jolliet jonasson jongkind jonnart jouguet judaea juhl jukka julio junqueira kachanov kadomtsev kadun kailash kalamazoo kalkstein kalup kamin kampala kampers karakozov karaliichev kariuki kariyawasam karpov karsavina kaschnitz kassian katarina kawawa keesom kegel keler kempen kempener kerschensteiner keszei khachaturov khadem khartoum khorana khrushchev kiesewetter kiesinger kino kinshasa kiowa kiparisov kipnis kippenberg kirn kirshon kischkewitz kistner kjelgaard klanert klapp klare kleiber klengel klingler klopp kneen knef knies knobloch knolle knuttgen koht kokovtsov kolbin kolesov kolisko komar konarski konstantinos kopalin kopisch koppelmann koppenburg koppers kopsch kornienko korovin korsch korting kos kosaras kout kozderka kraayvanger krapp krappe krausz krech kretzschmar kroemer krohg kronhausen kroupa krpan kruczkowski krumper kruz krylenko kuczynski kulenkampff kulka kumar kundt kuno kupffer kurchatov kurdiumov kuropatkin kusche kuwait kuzma kvapil kvaran kwasniewski kyrgyzstan laban labib laffitte lamare lamaze lamennais lamour lampin lamsdorf lamszus landino lanzhan lapeyrette larionov lasserre lauenstein lauren lauster lebanon leboeuf lecaillon lech leena lefuel leininger lekain lennep leno lepage lepetit les lesur lesure letourneau levels levens levetzow levitzki lia lichnowsky licio lidin liebermann liebknecht likhachev lilongwe limburg limoges lindau lindblom lindegren linge lipkind lipper lippi lips lisitsyn lissauer litaize litschauer ljubljana lodi loebl loewenich lombroso londonderry longhena looy lortzing losenko lossius lowi lubeck lucena ludek lujza lukacs lukanov lundegardh lundkvist lunow lussert lussu lyashchenko lygo lysenko macchiavelli macias magda maginot magnan magnes magyari mahl maigrot maija maillol maisonrouge makavejev maksimovich malaniuk malanowski malinin malloch manessier manetti maneveau manouvrier mansfeld mansurov mantoux manuguerra marcelle margret mari mariama marini markstein marmion marques martinak martonne masaccio masani massa massenet massignon mata matias matussek maugeri maximilian mays mazilu mazowiecki mcnaugher med medjimorec medvedkin meehan mei meik meitner melcombe melillo mellenthin melo melsa meneghini menen meringer mermaz mersmann mesarovic meschkowski mesquita meurisse meursius meyendorff meylan mezzena micha michal michalak michelsen michnik migranyan mihalovici mikhailov mikhailovich mikoyan mikulka mikusinski milchert milinkovic minc mince minde mingione minne mirra mitscherlich mitsotakis mitterrand modiano moiseyev moissard mojica mojsov mola molinet molinos monath moniuszko monnerie montalbano montalvo montandon monzon mookerjee morbitzer mores moroz moskalenko motlana mounin moura moustaki mugabe mukerjee munclinger musco musil musso muster mwaura myanmar myslivchenko nadar nahtigal naiman naipaul nanino narasimha narasimhan narayan narciso nardini narragansett nasser nassiri nathusius nauck navarrete nayak ndebele neck nedbal negev neidhardt neiman neisser nena nervi nessler nesterov nestle nettl nevanlinna nevison newton ngata ngoyi nguema nicaragua nicolaides nicosia niculescu nikolaev nitsche noelte nogin nogueira nonie norberto nordenflycht nordmann noro nosek novi novosiltsev nubia nuku'alofa nurmela nussio nyhus o'leary oberth ohana oktay olszowski oppler orbeli orel ornella ortelius ortenberg otten ousmane ousset ouwater pacetti pachmann pacinotti pai paillard palay palikir palombini paltrinieri panchenko pancho panero panin panizza panoff pansky panyushkin panzeri paolantonio paolozzi papaleksi pappenheim parmeggiani parnas parseval pasinetti passarge passy patil patkul patsalides pazhwak pederzini pedroni peev peillard peinemann pelle pellegrin peluso peng penzel penzler pepping peragallo perets perla perli perlmutter pernis perosi perot perotti perras perretti pervyshin pesco pessoa pestalozza petersham petersson pethes petrovic pettenkofen petyrek petzold peyer peyrouzet pezel piaf piastro piazza piazzi piccone picquart pidoux piero piette pilz pina pindemonte pinkowski piotr piotte piovene pipitone piria pirquet pisis pisk piso pissarro pistor pittau planck pleshakov pleyel poggendorff point poisson pola politis polverosi pomerance pomodoro ponge poot port-au-prince port-of-spain port-vila potanin potkonjak poudel prache praia praz predis preetorius pregl prevert previtali prikopa prost proust provincetown puck pugo puig purdom purrmann pushkarev pushkin putimtsev quennet quesnay quiroga qureshi rabinovich radisson radoslavov raft rahbek raija rajiv rakotomalala ramamurti ramanujan ramdohr ranasinghe randers rapaport rashid raudsepp rauschenbusch ravel rebreanu recklinghausen reggie regules rehbinder reidar reidemeister reinke reinkens reinl reinmar reizenstein rejto reschiglian retana rezkova reznicek reznikov richepin ricigliano ridler rien rigaut righi rinchen rintzler rippert robuchon rockstroh rodbertus rogner rokkan rolando roldan romanowski romao romuald ronge rono rooy rosenbusch rosetta rosselli rosset rossner rotenberg rottenhammer rousseaux roza rozanov rubner rucellai ruggiero rumor rusell rustaveli ryazanov rydberg rydell rylski ryszard sade safonov sahinkaya saitoti sakharov sal saleh samar samoa samoilov samolenko samosud sancho sandel sandfort sandi sandor sandrelli sanguinetti sanjabi sankara sankhon sansovino santillana sanudo sapegno sarabhai sarasin sarcey satchell sau sauguet sazonov scamozzi scarpa scepanovic schachtschabel schaffner scharnhorst schaudinn scheffel scheidt scheiner schickele schiefner schillings schimke schioler schittenhelm schleiden schleif schlieffen schloezer schlumberger schnurre schocken schoelcher schoenhuber schoetensack schone schongauer schoop schorlemmer schreyvogel schueller schultheis schuricht schweinfurth schwerdtner schwinger sederholm seebach segonzac seguin seguy seibou seiwert selka sellentin selucky semelaigne semyonov sendrail senf sentongo serebrennikov servadei severing severinsen seychelles sgambati shabtai shakhmatov shalchian shapland shchukin sheena shevchenko shpirt shukhardin shuleikin shults shura shvartsman sieff siegen siekkinen siepi sik silvano silviu simcoe simic simo simoneau sinding sinh sirajuddin siroka skoda skrowaczewski smetana smetanin smid smirnov soares soden sokolova sokorska solal solecki solf sollberger sollima solo solomentsev sommerfelt sonn sonnino sonomyn sonora sordello sordi soren sorre sotin sournia sovadina spandaryan spee spiering spiridonova spirin spitta spizzichino spranger spriano spyri squillace staas stadelmann staff stagnelius stahlberg stancioff starker staubringer staudt steffensen steinbart steingruber steinwedel stelzner stepanoff stephanopoulos sterne sternheim sterns steuben steuermann stevin stifter stirner stobbe stoltz strasburger strejan striegler striker stuchka stumm stussi stutzer sudreau suffren suk sulzer supervielle suran surikov suse svetlana svevo swammerdam sylvestre syomushkin szamosi szekessy szokolay taina talese talmi talvio tam tammsaare tapiovaara tarle tarmo taskova taya tchakarov teike teirlinck tellenbach teodorian tepavac terenin terrien teupen thalen thallaug thebes thevet thiers thorsteinn thorvaldsen thorwald tiepolo tietjen timoci timperley tinayre tindemans tip tisse titchener titulescu tiziana tobino todd todhunter todor todorov togo toledo tolle toma tomasevich tomes tonelli tony toombs toorop topinard topping tora torrance torrington torsten toska totten toubon towne trammell trappier travers travis treadwell tregelles tremois trenton tripoli tripolitania trippe trochu tromp tropp trotzendorf troup trudeau tsarapkin tsitsin tsyurupa tuan tucci tulasne tunstall tupper turani turc turgenev turk turnbull turnour turpin tursi tuttle tyurin ueberweg uhlenhuth uhrmacher ulla unamuno ungari urbanczyk urbaniak urs ursuleac ute uthman utin utrecht uz uzunov vackarova vad vaduz vajda vajnar vakulenchuk valery vali vallhonrat vallone vangeli vanhecke vanuatu vanzo vasak vasnetsov vaudoyer veinik vejzovic velasco veller velo vendome venediktov vengerov veniamin venturi venturini verdi vergez verlinde verona veronese veronika versini veselin vestin vestris viadana vicario victoriaville videla vidusso viereck vile vilela vilmorin vinay vincenzo violeta vittorio vivarelli vizcaino vlasenko vlodavets vorontsov votapek vouet vranken vronchenko vukotic vulpius vuokko vuori waagen wahnschaffe waikiki waldorff waligora wallberg wangchuck weck weddigen wehler weidenreich weigert weilenmann weininger weisbrod weise weisenborn weisstein welbergen welcker welzel wendel wenders wenig werenskiold werker westheimer weyden wichmann wiedermann wiegner wiesel wikander wildenbruch wildhagen wilk wilke willemer willerding willms wim windahl windelband windgassen windisch winfried winzer wionczek wiren wissmann wittgenstein wittrock woeste woffington wohlers wohlin wollheim wurtz wyntoun xizhen yagoda yannis yitzhak yogendra yupanqui zachariae zachau zachwatowicz zafir zaha zambonini zamyatin zanelli zanotti zeffirelli zenatello zenker zhabotinsky zich zimerman zinetti zino zitek zohar zolotas zorrilla zoya zschau zuccante zuccaro zukrowski zumsteeg zwerenz
81e1af9e75f5edf47231c1b80f5d014cf048fabf
449d555969bfd7befe906877abab098c6e63a0e8
/1241/CH2/EX2.19/exa2_19.sce
62a539aefd29404c7a2ccb7bdc604fa7dd5d6444
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
163
sce
exa2_19.sce
//Example 2-19// //Hexadecimal to decimal conversion// a=hex2dec('EB4A') //decimal equivalent of the hexadecimal number// disp(a) //answer in decimal form//
6f32981b066dcbd1e560fa34c29d01d0010b5456
449d555969bfd7befe906877abab098c6e63a0e8
/2279/CH4/EX4.14/eg_4_14.sce
06942d2f942d52ab5a27ccafc48fb6828c1ebe00
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
eg_4_14.sce
//Example 4.14 //Convolution sum of x[n] and h[n] clc clear n=0:100; n1=0:200; a=0.7//assume the constant a=0.7 for i=1:length(n) x(i)=a^n(i); h(i)=1; end y=convol(x,h); subplot(3,1,1) xtitle("input signal x(n)","....................n","x[n]"); plot(n,x,'.'); subplot(3,1,2) xtitle("system response h(n)","....................n","h[n]"); plot(n,h,'.'); subplot(3,1,3) xtitle("output signal y(n)",".............................n","y[n]"); plot(n1,y,'.');
8ab852f3938d1543a5530e8b4696c693a052152d
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH14/EX14.34/example14_34.sce
87e1275e70bcf44e554d18c3b38480cbe9341b4b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
536
sce
example14_34.sce
clc // Given that v = 200 // potential differece in volt h = 6.62e-34 // Planck constant in J-sec c = 3e8 // speed of light in m/sec q = 3.2e-19 // charge on an alpha particle in C m = 4 * 1.67e-27 // mass of alpha particle in kg // Sample Problem 34 on page no. 14.34 printf("\n # PROBLEM 34 # \n") printf("Standerd formula used \n ") printf(" lambda = h /(m*v)\n 1/2*m*v^2 = qV \n") lambda = h / sqrt(2 * m * v * q) printf("\n de-Broglie wavelength = %e m.",lambda)
7d3352165f3157837b3af141f532f3ff365c2b73
b24d354cfcd174c92760535d8b71e22ced005d81
/DSP functions/allpasslp2xn/allpasslp2xn.sci
19f88d23d54bd0a8c94abcfc2f05b35d6eb8dd76
[]
no_license
shreniknambiar/FOSSEE-Signal-Processing-Toolbox
57ad8e2a71d64f95c4ccfd131e00095cf2b9c6f8
143cf61eff31240870dc0c4f61e32818a4482365
refs/heads/master
2021-01-01T18:25:34.435606
2017-07-25T18:23:47
2017-07-25T18:23:47
98,334,322
0
0
null
2017-07-25T17:48:00
2017-07-25T17:47:59
null
UTF-8
Scilab
false
false
3,158
sci
allpasslp2xn.sci
function [AllpassNum,AllpassDen]= allpasslp2xn(Wo,Wt,varargin) if argn(2)<2 | argn(2)>3 then error("Number of input arguments should be either 2 or 3"); end if argn(1)<1 | argn(1)>2 then error("Number of output arguments should be either 1 or 2"); end if length(Wo)<1 | ~isreal(Wo) then error("Wo must be vector and real"); end m=length(Wo); for i= 1:m if Wo(i) <=-1 | Wo(i) >=1 then error("Wo must be in normalised"); end end sortedWo=gsort(Wo,'r','i'); if Wo~=sortedWo then error("Wo must in ascending order"); end if length(Wt)<1 | ~isreal(Wt) then error("Wt must be vector and real"); end n=length(Wt); for i= 1:n if Wt(i) <=-1 | Wt(i) >=1 then error("Wt must be in normalised"); end end sortedWt=gsort(Wt,'r','i'); if Wt~=sortedWt then error("Wt must in ascending order"); end //Flag checking if (length(varargin)==1) & (type(varargin(1))~=10) then error("Input argument #6 must be of type char"); end if length(varargin)==0 then pass= -1; //pass being the default option else Pa=varargin(1); select Pa case 'pass' then pass=-1; case 'stop' then pass=1; else error("Invalid option,input should be either pass or stop"); end end zo = exp(%i*%pi*Wo); zn = exp(-%i*%pi*Wt); for k=1:m a(k,:) = zo(k) * (zn(k).^(m-1:-1:0)) - pass*(zn(k).^(1:m)); end b = pass - zo.' .*(zn.' .^m); AllpassNum = real([1; a\b]); in= find(isnan(AllpassNum)); if ~isempty(in) then AllpassNum= real([1 linsolve(a,b)]) end AllpassDen = flipdim(AllpassNum(:).',2); AllpassNum = pass*AllpassNum(:).'; if isstable(AllpassDen) then AllpassNum = flipdim(AllpassNum,2); AllpassDen = flipdim(AllpassDen,2); end z1= roots(AllpassNum); //computing zeros p1= roots(AllpassDen); //computing poles k1= frmag(AllpassNum,AllpassDen,1); //gain computation lp1= length(p1); z2=[]; // for cancelling overlapping poles and zeros p1index=zeros(1,lp1); for j=1:length(z1), fnd1 = find(abs(z1(j)-p1)<10^-6); fnd2 = find(p1index(fnd1)<%eps); fnd = fnd1(fnd2); if isempty(fnd), z2 = [z2, z1(j)]; else p1index(fnd(1)) = 1; end end p2= p1(p1index==0); p2=p2(:).'; k2=k1; //the case in which all poles and zeros are cancelled if isempty(z2) then z2=0; end // Calculating the numerator and denominator for the mapping filter if length(z2) ~= m then AllpassNum =poly(z2,'s'); AllpassDen = k2.*poly(p2,'s'); s = sign(AllpassDen($)); AllpassNum = AllpassNum./ s; AllpassDen = AllpassDen./AllpassDen($); [AllpassNum,AllpassDen] = eqtflength(flipdim((AllpassNum),2), flipdim((allpassden),2)); end endfunction
b6db6994e1fed96e0be09ee354835d012fc9cb1e
449d555969bfd7befe906877abab098c6e63a0e8
/443/DEPENDENCIES/3_13_data.sci
a02245386e9f721adce521b7e613bd0390da08bf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
304
sci
3_13_data.sci
//Inlet pressure(in bar) p1=1; //Inlet temperature(in K) T1=290; //Pressure at the end of compression sroke(in bar) p2=35; //Expansion ratio re=5; //Ratio of specific heats y=1.4; //Specific heat at constant pressure(in kJ/kg) Cp=1.004; //Specific heat at constant volume(in kJ/kg) Cv=0.717;
b18e7706d3e8d8deb7bfebc3fe415ee2b0f99ed1
449d555969bfd7befe906877abab098c6e63a0e8
/2144/CH8/EX8.1/ex8_1.sce
995376682b5a018183d653c0b272da1d25add3c7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
463
sce
ex8_1.sce
// Exa 8.1 clc; clear; close; // Given data C= 85;// in % H= 12.5;// in % H1 = 35000;// heat liberated by carbon in kJ H2 = 143000;// heat liberated by hydrogen in kJ HCV = (C*H1+H*H2)/100;// Higher calorific value in kJ/kg disp(HCV,"Higher calorific value in kJ/kg is"); ms = 9; LCV= HCV -(ms*H*2442)/100 ;// Lower calorific value in kJ/kg disp(LCV,"Lower calorific value in kJ/kg is"); // Note: The calculated value in the book is not accurate
23129f5a5547324ee67ac87ebfff0780889fe178
fdd5981eadab338ec2624b6a22fd0eac6e72c6c5
/DSScluster.sce
ce2545d8381d5027950353eed5813f9e95eabc0f
[]
no_license
meshcheryakovva/DSS-2017
5e2c6b88b657ad7de62ffe658b7aadef73ae7828
0171975e96655b6fcc6c334523517d6517492369
refs/heads/master
2021-03-09T19:19:56.332398
2020-03-10T18:00:29
2020-03-10T18:00:29
246,371,971
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,091
sce
DSScluster.sce
// Система поддержки принятия решений // Прогнозированние перспектив развития кластера // на основе систем нечеткого логического вывода. // Реализация в SciLab 5.5.2 // Использованы модули: GUI Builder 3.0, Fuzzy Logic Toolbox (sciFLT 0.4.7) // Мещеряков В.А., 2017 clc clear all funcprot(0) global stage // флаги завершения этапов ввода данных и расчетов global outVector // вектор выхода первого каскада stage = zeros(5, 1); // 5 этапов outVector = zeros(11 ,1) exec("wind1.sce"); while ~stage(1) end // если первый этап корректно завершен exec("wind2.sce"); while ~stage(2) end // если второй этап корректно завершен exec("wind2_23.sce"); while ~stage(3) end // если третий этап корректно завершен exec("wind34.sce"); while ~stage(4) end exec("wind5.sce");
b3cde0ed476091c3c6bc688e989ca6fb550b3f22
449d555969bfd7befe906877abab098c6e63a0e8
/1514/CH13/EX13.4/13_4.sce
39e0b0f6311ef29e740d65b0f9e5cff4c96785b8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
414
sce
13_4.sce
//chapter 13 //example 13.4 //page 410 clear all; clc ; //given Vi=50;//ip voltage in mV Vo=2;//op voltage volts Ibmax=500;//maximum base current nA I2=(100*Ibmax)/1000; printf("\noutput current(I2)=%d microA",I2); R3=Vi/I2; printf("\nR3=%d kohm,standard value",R3); R23=1000*Vo/I2; R2=R23-R3; R1=(R2*R3)/(R2+R3) printf("\nR2=%d kohm,standard value\nR1=%d kohm,standard value",R2,ceil(R1));
cd02e6764289f6de1ca1cd8fe849c7d7e94e9daf
8a3446e086bbb6afa038ee746f941996286b32c6
/Tests/SS_min.tst
f56049e128b8cbfa0635c89188a6649e7e081c51
[]
no_license
FREA-ENT/svp_UL1741SA
ec5c7fa9a8a2f27b72ba6cea2960699613e10743
5d22145fcae26c33fcd62218ff185f6ed0a1bc34
refs/heads/master
2020-03-27T21:36:40.461101
2018-09-05T07:58:29
2018-09-05T07:58:29
147,161,108
0
1
null
null
null
null
UTF-8
Scilab
false
false
1,685
tst
SS_min.tst
<scriptConfig name="SS_min" script="SA11_ramp_rate"> <params> <param name="gridsim.frea.phases" type="int">1</param> <param name="rr.n_r" type="int">3</param> <param name="eut.t_dwell" type="float">3.0</param> <param name="eut.rr_msa" type="int">5</param> <param name="eut.rr_up_min" type="float">10.0</param> <param name="eut.rr_up_max" type="float">20.0</param> <param name="eut.i_low" type="float">20.0</param> <param name="eut.i_rated" type="float">115.2</param> <param name="rr.v_trip" type="float">140.0</param> <param name="eut.v_nom" type="float">346.4</param> <param name="rr.t_reconnect" type="float">600.0</param> <param name="gridsim.frea.ip_port" type="int">2001</param> <param name="gridsim.frea.ip_addr" type="string">127.0.0.1</param> <param name="aist.library_version" type="string">2.0.0</param> <param name="aist.script_version" type="string">2.0.0</param> <param name="hil.mode" type="string">Disabled</param> <param name="loadsim.mode" type="string">Disabled</param> <param name="rr.rr_mid" type="string">Disabled</param> <param name="rr.rr_max" type="string">Disabled</param> <param name="rr.rr_min" type="string">Enabled</param> <param name="rr.soft_start" type="string">Enabled</param> <param name="gridsim.auto_config" type="string">Enabled</param> <param name="gridsim.mode" type="string">FREA_AC_Simulator</param> <param name="das_das_wf.mode" type="string">Manual</param> <param name="das_das_rms.mode" type="string">Manual</param> <param name="gridsim.frea.comm" type="string">TCP/IP</param> </params> </scriptConfig>
dfb1e695034979b8052f1014c28c25a09c54e954
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/tests/examples/cotg.man.tst
926e0bb510b8db54b06beb8b33f8945c666426dd
[ "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
49
tst
cotg.man.tst
clear;lines(0); x=[1,%i]; cotg(x)-cos(x)./sin(x)
e2ea93ff16429a6548e4aa856a13f7d956d45e79
449d555969bfd7befe906877abab098c6e63a0e8
/1730/CH6/EX6.2/Exa6_2.sce
84d49011e480543cb729089bd2acf11a1b06369d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
365
sce
Exa6_2.sce
//Exa 6.2 clc; clear; close; // given data g=0.055;// in V-m/N t=2*10^-3;// in m P=1.25*10^6;// in N/m^2 epsilon=40.6*10^-12;// in F/m V_out=g*t*P; disp("Output voltage is : "+string(V_out)+" V"); // Formula Charge Sensivity=epsilon_o*epsilon_r*g=epsilon*g ChargeSensivity=epsilon*g; disp("Charge Sensivity is : "+string(ChargeSensivity)+" C/N");
61a016e80dfbb2e5bdc813c659902045a3c01c03
33d7960e39a3e71591538dccbe1dd4014c377e78
/Sample Solution/CompFin_2017_SS_Exercise_30_MathQF.sce
2bf245448ba157331975b50e039d6ccd571c8284
[]
no_license
wiiwins/Compfin
529e2997994babb9e3795283ddbd8ec782131148
2629685421e970a369ec797b76dda3d2803bcbcf
refs/heads/master
2020-05-18T01:25:39.357847
2019-06-27T11:21:46
2019-06-27T11:21:46
184,090,400
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,062
sce
CompFin_2017_SS_Exercise_30_MathQF.sce
function [V0, epsilon, epsilon2] = UpOutPut_BS_MC_Richardson (S0, r, sigma, T, K, B, M, m) // Time step on the fine grid. delta_t = T/(2*m); S_fine = S0 * ones(M, 1); S_coarse = S0 * ones(M, 1); no_barrier_hit_fine = ones(M,1); no_barrier_hit_coarse = ones(M,1); // Loop over points on coarse grid. for k=1:m // Simulate two increments of Brownian motion on the fine grid. delta_W_1 = grand(M, 1, 'nor', 0, sqrt(delta_t)); delta_W_2 = grand(M, 1, 'nor', 0, sqrt(delta_t)); // 1st Euler step on fine grid. S_fine = S_fine + r*S_fine*delta_t + sigma*S_fine.*delta_W_1; no_barrier_hit_fine = no_barrier_hit_fine .* (S_fine<B); // 2nd Euler step on fine grid. S_fine = S_fine + r*S_fine*delta_t + sigma*S_fine.*delta_W_2; no_barrier_hit_fine = no_barrier_hit_fine .* (S_fine<B); // Euler step on coarse grid. S_coarse = S_coarse + r*S_coarse*2*delta_t + sigma*S_coarse.*(delta_W_1+delta_W_2); no_barrier_hit_coarse = no_barrier_hit_coarse .* (S_coarse<B); end // Compute (discounted) payoffs for paths on fine and coarse grids. VT_fine = no_barrier_hit_fine .* (exp(-r*T)*max( K - S_fine , 0)); VT_coarse = no_barrier_hit_coarse .* (exp(-r*T)*max( K- S_coarse , 0)); // Compute Monte Carlo estimate. VT = 2*VT_fine - VT_coarse; V0 = mean(VT); // Compute radius of 95% confidence interval (not part of the exercise). epsilon = 1.96 * sqrt(variance(VT)/M); endfunction exec('./CompFin_2017_SS_QF_Exercise_12.sce') // test parameters S0 = 100; r = 0.05; sigma = 0.2; T = 1; K = 100; B = 110; M = 10000; m = 250; // display result for test parameters [V0, epsilon] = UpOutPut_BS_MC_Richardson (S0, r, sigma, T, K, B, M, m); disp("Price of up-and-out call by use of Monte-Carlo simulation with Euler scheme with Richardson extrapolation: " + string(V0) + ", radius of 95% confidence interval: " + string(epsilon));
db4c75613460e9fde58b3d6c7b3bd9b65517c327
449d555969bfd7befe906877abab098c6e63a0e8
/2780/CH7/EX7.20/Ex7_20.sce
423104ad7d25a848d56b06dc0a13a22de7bad159
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
526
sce
Ex7_20.sce
clc //to calculate uncertainity in frequency h = 3.16152649*10^-26; delt=10^-8 //uncertainity in time delnu=1/(2*%pi*delt) disp("minimum uncertainity in the frequency of a photon is delnu="+string(delnu)+"sec^-1") //to use the uncertainity principle to place a lower limit on the energy an electron must have if it is to be part of a nucleus delx=5*10^-15 //uncertainity in position delp=h/(2*2*%pi*delx) //uncertainbity in momentum c=3*10^8 ///speed of light in m/s E=delp*c disp("energy of an electron is E="+string(E)+"J")
fa88231e06e3ef252f7b5689d0534a4e1493769e
449d555969bfd7befe906877abab098c6e63a0e8
/569/CH9/EX9.17/9_17.sci
14fe3fd0c6eeb967f84c1eaad0c9f68e1278bf29
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,118
sci
9_17.sci
// calculate the optimum setting clc; Aou=700*25*1/100; Aol=100*25*1/100; AouPtP= 2*Aou; AolPtP= 2*Aol; Se1=1; D1=AouPtP/Se1; disp(D1,'deflection of screen corresponding to maximum pressure for sensitivity of 1mV/mm (mm)') disp('sinch the length of the screen is 100mm so waveform is out of range and hence sensitivity setting of 1mV/mm should not be used') Se2=5; D2=AouPtP/Se2; disp(D2,'deflection of screen corresponding to maximum pressure for sensitivity of 5mV/mm (mm)') disp('delection is within the range') Se3=20; D3=AouPtP/Se3; disp(D3,'deflection of screen corresponding to maximum pressure for sensitivity of 20mV/mm (mm)') disp('delection is within the range') Se4=100; D4=AouPtP/Se4; disp(D4,'deflection of screen corresponding to maximum pressure for sensitivity of 100mV/mm (mm)') disp('delection is within the range') Se5=500; D5=AouPtP/Se5; disp(D5,'deflection of screen corresponding to maximum pressure for sensitivity of 500mV/mm (mm)') disp('delection is within the range') disp('since the sensitivity of 5mV/mm gives higher deflection so it is the optimum sensitivity')
a1fd8aee51f819682801ad93c943f3875c29d966
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.2/macros/metanet/%sigra.sci
79b83998e741be698df57564f7ebf091822d0dfb
[ "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
3,732
sci
%sigra.sci
function f=%sigra(i,val,f) [lhs,rhs]=argn(0) if rhs<>3 then error(39), end if type(i)<>10 then error('The name of the element of the graph-list must be a string'), end l=prod(size(i)) if l<>1 then error('The name of the element of the graph-list must be a string'), end select i case 'directed' then if prod(size(val))<>1 then error('""'+i+'""'+' must be a scalar') end f(3)=val case 'node_number' then if prod(size(val))<>1 then error('""'+i+'""'+' must be a scalar') end f(4)=val case 'tail' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(5)=val case 'head' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(6)=val case 'node_type' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(8)=val case 'node_x' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(9)=val case 'node_y' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(10)=val case 'node_color' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(11)=val case 'node_diam' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(12)=val case 'node_border' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(13)=val case 'node_font_size' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(14)=val case 'node_demand' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(15)=val case 'edge_color' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(17)=val case 'edge_width' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(18)=val case 'edge_hi_width' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(19)=val case 'edge_font_size' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(20)=val case 'edge_length' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(21)=val case 'edge_cost' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(22)=val case 'edge_min_cap' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(23)=val case 'edge_max_cap' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(24)=val case 'edge_q_weight' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(25)=val case 'edge_q_orig' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(26)=val case 'edge_weight' then s=size(val) if s(1)<>1 then error('""'+i+'""'+' must be a row vector') end f(27)=val case 'default_node_diam' then if prod(size(val))<>1 then error('""'+i+'""'+' must be a scalar') end f(28)=val case 'default_node_border' then if prod(size(val))<>1 then error('""'+i+'""'+' must be a scalar') end f(29)=val case 'default_edge_width' then if prod(size(val))<>1 then error('""'+i+'""'+' must be a scalar') end f(30)=val case 'default_edge_hi_width' then if prod(size(val))<>1 then error('""'+i+'""'+' must be a scalar') end f(31)=val case 'default_font_size' then if prod(size(val))<>1 then error('""'+i+'""'+' must be a scalar') end f(32)=val else error('Bad name of graph-list element: ""'+i+'""') end
6e92b8a82c892c663a1e95d73dd8b972aa646eb7
9b68b3d73b63ebcbfe18cc9a4aa8e91c84833a84
/tests/libs/hdf5/test-env-variables-new/C/H5D/testfiles/110/h5ex_d_szip.tst
528d92f0e6c8065538642013ce9c83a5d5984cc6
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-llnl", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0", "LicenseRef-scancode-hdf4" ]
permissive
openhpc/ohpc
17515db5082429eb9f250f12bf242b994beb715f
725a1f230434d0f08153ba1a5d0a7418574f8ae9
refs/heads/3.x
2023-08-19T02:15:14.682630
2023-08-18T19:33:51
2023-08-18T19:34:18
43,318,561
827
247
Apache-2.0
2023-09-14T01:22:18
2015-09-28T18:20:29
C
UTF-8
Scilab
false
false
62
tst
h5ex_d_szip.tst
Filter type is: H5Z_FILTER_SZIP Maximum value in DS1 is: 1890
d444c181479ebf0b99712ac129d365de3661607a
449d555969bfd7befe906877abab098c6e63a0e8
/3754/CH12/EX12.12/12_12.sce
0e2b05b210eefa99805a975a7e845bc85f9c4cb4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
419
sce
12_12.sce
clear// //Variables VS = 5 //Source voltage (in volts) R = 510 //Resistance (in ohm) VF = 0.7 //Forward voltage drop (in volts) //Calculation VR = VS - VF //Net voltage (in volts) I = VR / R //Current through the diode //Result printf("\n Voltage across the resistor is %0.3f V.\nThe circuit current is %0.2f mA.",VR,I*10**3)
c822c1bf840953ec50c838257a8bd9fe2c181f12
449d555969bfd7befe906877abab098c6e63a0e8
/2495/CH4/EX4.11.1/Ex4_11_1.sce
46c68aa07d00ab872bcf7945144a4c85358b5829
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex4_11_1.sce
clear clc Xw1=0.01;//in gm/dm^3 Xw2=0.12;//in gm/dm^3 Xw3=0.24;//in gm/dm^3 Xb1=1.848*10^-5;//in gm/dm^3 Xb2=2.661*10^-3;//in gm/dm^3 Xb3=1.089*10^-2;//in gm/dm^3 //Taking Xw1,Xw2,Xb1,Xb1 to calculate n n=((log10(Xb1))-(log10(Xb2)))/((log10(Xw1))-(log10(Xw2)));//degree of complexity printf('n=%.1f',n) //Similarly can be done using lines(4,5,7,8) and also for lines (3,5,6,8) //For all we get n=2 //page 200
74e312147c027202a625492a5cf52bb974407865
7f8a82b193633b744689e1f194923592e656b470
/rltoolSci/macros/rltFuncMargin.sci
ff55440a554bf1bc36ab1f22369cecd699b86917
[]
no_license
josuemoraisgh/rltoolSci
3b5a5e8fc6a27b60bca3354af5222350cd8e8b3b
a76ad9fbfe988bb2674adfeb466847a32719474a
refs/heads/main
2023-07-14T10:40:12.549424
2021-08-26T17:52:16
2021-08-26T17:52:16
385,216,740
0
0
null
null
null
null
UTF-8
Scilab
false
false
145
sci
rltFuncMargin.sci
function rltFuncMargin global axes1 comp gnum gden cnum cden cCk Mp T5 x_dialog("Esta Função ainda não foi elaborada!!!") endfunction
34a6495ed059505f1e6aa62dfd0c77b27b700f50
449d555969bfd7befe906877abab098c6e63a0e8
/2459/CH12/EX12.13/Ex12_13.sce
c8d7bae0f4ea68708ea74bf0077c5ec106a768d0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
778
sce
Ex12_13.sce
//chapter12 //example12.13 //page250 R1=50 // kilo ohm R2=10 // kilo ohm Re=1 // kilo ohm Vcc=12 // V Vbe1=0.1 // V Vbe2=0.3 // V V2=Vcc*R2/(R1+R2) // voltage across R2 // for Vbe=0.1 V Ic1=(V2-Vbe1)/Re // for Vbe=0.3 V Ic2=(V2-Vbe2)/Re printf("for V_BE=0.1 V, collector current = %.3f mA \n",Ic1) printf("for V_BE=0.3 V, collector current = %.3f mA \n \n",Ic2) Vbe_change=100*(Vbe2-Vbe1)/Vbe1 Ic_change=-100*(Ic2-Ic1)/Ic1 // negative sign since Ic decreases printf("comment : if V_BE changes by %.5f percent, \ncollector current changes by %.3f percent \n",Vbe_change,Ic_change) printf("so collector current is independent of transistor parameter variations \n") // the change in V_BE is 200 percent not 300 percent.It is mistake in textbook
aaf432fc9c97c45a04fb5dea0fffd2f5223d2493
449d555969bfd7befe906877abab098c6e63a0e8
/1163/CH8/EX8.1/example_8_1.sce
effffe3640494ecb9b9cb16c0ace129e89c95d30
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
sce
example_8_1.sce
clear; clc; disp("--------------Example 8.1---------------") channel_bandwidth=4; // 4 kHz n=2; // each link uses FDM to connect a maximum of two voice channels. link_bandwidth=n*channel_bandwidth; // formula // display the result printf("A circuit-switched network is used to connect eight telephones in a small area. Communication is through %d-kHz voice channels.\nIt is assumed that each link uses FDM to connect a maximum of %d voice channels. The bandwidth of each link is then %d kHz.\nTelephone 1 is connected to telephone 7; 2 to 5; 3 to 8; and 4 to 6. Of course the situation may change when new connections are made.\nThe switch controls the connections.",channel_bandwidth,n,link_bandwidth);
72d5592580feb0a4a970d1816c7bd392b4573823
449d555969bfd7befe906877abab098c6e63a0e8
/1301/CH10/EX10.4/ex10_4.sce
fd963eb187413578f21644780320e99358b017aa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
416
sce
ex10_4.sce
clc; gp=200; //gauge pressure in lb/in square atmp=15; //atmospheric pressure in lb/in square p1=gp+atmp; //pressure in lb/in square v1=3; //volume in ft cube p2=15; //pressure at sea-level in lb/in square v2=(p1*v1)/p2; //calculating pressure in ft cube using Boyle's law ie. p1*v1=p2*v2 at constant temperature disp(v2,"Volume occupied in ft cube = "); //displaying result.
74a9f151916d6a7a56f178ce06930c7b3c91c5ae
139d4a83f28a14dc04c48d99a492bec7abcc3229
/lab2_v8/4_simple_iterations.sce
05b1689b199c304122288eb313dd5415d6e9db3b
[ "MIT" ]
permissive
s-kostyuk/labs_alg
0f78d0a5df7b94f9190bc3b45a077fb3e68e74fb
320902e94d9bfde9d7a13a427b315605929dec17
refs/heads/master
2021-01-10T03:54:40.483782
2015-12-03T22:52:39
2015-12-03T22:56:46
44,764,651
0
2
null
2015-12-01T15:07:01
2015-10-22T18:20:28
Scilab
UTF-8
Scilab
false
false
711
sce
4_simple_iterations.sce
clear; exec( get_absolute_file_path('4_simple_iterations.sce') + "support.sce", -1 ); n = length( b ); for ( i = 1:n ) for ( j = 1:n ) if( i == j ) then alpha( i, j ) = 0; else alpha( i, j ) = - A( i, j ) / A( i, i ); end end end disp( alpha, "Matrix α contains: " ); for( i = 1:n ) bbeta( i ) = b( i ) / A( i,i ); end disp( bbeta, "Matrix β contains: " ); it = 0; x = bbeta; while %T do xprev = x; x = bbeta + alpha*xprev; if( abs( xprev - x ) <= density ) break; end it = it + 1; end checkSolving( A, x, b ); disp( x, "x = " ); mprintf( "\nValues of x was found on iteration number %d", it );
52a0e51900821f9e67dff6ca83d8875d0751fbce
8781912fe931b72e88f06cb03f2a6e1e617f37fe
/scilab/diffuse_rel/mrdifrun2.sce
44ca4abe66b0b7a8268e55aa71694e0e2406218e
[]
no_license
mikeg2105/matlab-old
fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e
eac168097f9060b4787ee17e3a97f2099f8182c1
refs/heads/master
2021-05-01T07:58:19.274277
2018-02-11T22:09:18
2018-02-11T22:09:18
121,167,118
1
0
null
null
null
null
UTF-8
Scilab
false
false
966
sce
mrdifrun2.sce
jobname='mrdifrun1_1'; exec("diffuse/diffuse_utils.sce"); exec("diffuse/mymultireactdiffuse.sce"); exec("diffuse/newtempmultireactconc.sce"); exec("diffuse/mconcupdate.sce"); exec("diffuse/getconcsub.sce"); exec("diffuse/lap3d.sce"); exec("diffuse/cmdott.sce"); exec("diffuse/compfunc.sce"); dt=0.000100; h=0.050000; dif(1)=0.100000; dif(2)=0.200000; dif(3)=0.300000; ralpha=0.2; rbeta=0.6; ic1(1)=-rbeta; ic1(2)=0.0; ic1(3)=-ralpha; ic2(1)=0.0; ic2(2)=-rbeta; ic2(3)=ralpha; ic3(1)=rbeta; ic3(2)=rbeta; ic3(3)=-ralpha; rootdirectory='/scratch/cs1mkg/results/diffuse_rel'; inconsts=[ic1,ic2,ic3]; nspec=3; nsteps=15;nsubsteps=1;n1=20;n2=20;n3=1; in(1)=n1; in(2)=n2; in(3)=n3;in(4)=h; in(5)=nspec; concsin=rand(n1,n2,n3,nspec); sources=zeros(n1,n2,n3,nspec);sinks=zeros(n1,n2,n3,nspec); sirout=mymultireactdiffuse(rootdirectory,jobname,nsteps, nsubsteps, dt, dif, in, concsin, sources, sinks,inconsts); mgendxgen(rootdirectory,jobname,nsteps,n1,n2,n3,nspec); exit;
a3e50c17eae2f5979670c0252bc79dd02bff28ba
449d555969bfd7befe906877abab098c6e63a0e8
/2870/CH11/EX11.2/Ex11_2.sce
622bd99537f21abf7934d03e82461f337b8b22c6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
560
sce
Ex11_2.sce
clc;clear; //Example 11.2 //given data m=0.05; P1=0.14; T1=-10; P2=0.8; T2=50; P3=0.72; T3=26; //from refrigerant tables h1=246.36; h2=286.69; h3=87.83; h2S=284.21;//at isentropic conditions //calculations h4=h3;//throttling QL=m*(h1-h4); Wm=m*(h2-h1); nC=(h2S-h1)/(h2-h1); COPR=QL/Wm; disp(QL,'the rate of heat removal from the refrigerated space in kW'); disp(Wm,'the power input to the compressor in kW'); disp(nC,'the isentropic efficiency of the compressor'); disp(COPR,'he coefficient of performance of the refrigerator');
e196b9bd8cf18d1a7390547483bf8a37fc0a5b5a
9d59fb06cf0644f9c0c84aae7977eeff57116a45
/0-INTRO/INTRO-7.sce
d3477522d3b06b4e1b53e90e4e52b5bfb6d60a60
[]
no_license
aguadix/RQ
f353b8fa0e36828c8cca9af53f5c3275ed476a75
43e8a31003bf038b0cd72487868c760829b9797c
refs/heads/master
2023-03-07T10:50:29.102260
2023-03-06T01:35:58
2023-03-06T01:35:58
53,548,175
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,441
sce
INTRO-7.sce
clear; clc; // INTRO-7.sce // PÉNDULO AMORTIGUADO // Sistema de ecuaciones diferenciales function dxdt = f(t,x) // Variables diferenciales A = x(1) // Ángulo W = x(2) // Velocidad angular // Segunda Ley de Newton // d2Adt2 = -b*dAdt - g/L*sin(A) dAdt = W dWdt = -b*W - g/L*sin(A) // Derivadas dxdt(1) = dAdt dxdt(2) = dWdt endfunction // Constantes b = 1; g = 9.8; L = 1; // Estado estacionario Aee = 0; // %pi Wee = 0; xee = [Aee;Wee] dxdtee = f(0,xee) // Linealización // dxdt = f(x) => dxddt = J*xd J = numderivative(f,xee) // Estabilidad lambda = spec(J) Estable = and(real(lambda) < 0) // Condiciones iniciales Aini = %pi/4; Wini = 0; //Aini = 0; Wini = 8.377820946; xini = [Aini;Wini]; // Tiempo tfin = 10; dt = 0.1; t = 0:dt:tfin; // RESOLVER x = ode(xini,0,t,f); A = x(1,:); W = x(2,:); X = L*sin(A); Y = -L*cos(A); // Gráficas scf(1); clf(1); plot(t,A); a1 = gca; a1.x_location = 'origin'; a1.y_location = 'origin'; a1.box = 'off'; xgrid; xtitle('','t','A'); scf(2); for i = 1:length(t) drawlater(); scf(1); plot(t(i),A(i),'.') clf(2); a2 = gca; a2.x_location = 'origin'; a2.y_location = 'origin'; a2.data_bounds = [-1.5,-1.5; 1.5,1.5]; a2.box = 'off'; a2.isoview = 'on'; a2.auto_ticks = 'off'; plot(X(i),Y(i),'.'); plot([0 X(i)],[0 Y(i)]); xstring(1,1,"t = " + string(int(t(i)))); drawnow(); end
43fde028f8812ddcd324c148f6fd604925210ab5
0c3cccb3c81eb151f654e5d9d470662c19122857
/scilab/ex18.sce
d863eeee3587d536b20d1d046c75c237ccfc9715
[]
no_license
gmordelet/oldProg
6b2bb7c247dd1f16a641d0f840f7c82e8eb37ffb
c108060bf1b87b4aad196484036f226fd9c4422c
refs/heads/master
2021-01-12T16:28:52.448277
2016-10-30T11:16:22
2016-10-30T11:16:22
69,155,276
0
0
null
null
null
null
UTF-8
Scilab
false
false
297
sce
ex18.sce
function Pxi = HP(P, xi) c = coeff(P); l = length(c); Pxi = c(l); for i = 2:l Pxi = xi .* Pxi + c(l - i + 1); end endfunction function y2 = test() c = coeff((%s - 2)^15); y2 = zeros(x); for i = 1:16 y2 = y2 + c(i) * x.^(i - 1); end endfunction
f64cc56f037ec171dd752210c81a6a8f5ec51e7e
449d555969bfd7befe906877abab098c6e63a0e8
/1553/CH5/EX5.4/5Ex4.sce
b0c8dee21c08d64771ae93ab70a461258ec5b6e0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
147
sce
5Ex4.sce
//chapter 5 Ex 4 clc; clear; close; //let the value to be found out be x a=6; b=15; c=3; x=sqrt((a+2)*(b+3))/(c+1); mprintf("x=%.0f",x);
387f8ae12912dc061517f70e38330a9e5e0dd5c7
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH17/EX17.5/Ex17_5.sce
e8d5d10d4f81e55ad25a343e823ad7d3cc6378b5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
152
sce
Ex17_5.sce
clc; //e.g 17.5 Ton=30*10**-6; Toff=10*10**-6; //consider duty cycle=a a=Ton/(Ton+Toff); disp(a); f=(1/(Ton+Toff)) disp('kHZ',f*10**-3,"f=");
69eb9a676acc8c2e035717cabafb5fdc747aebc0
ecdea6c02289a1fe4762af4b5fedb0ee646d9539
/graphics.sci
f5d3b797a7bfac8b1af21df93084a3932896160e
[]
no_license
shbma/scilab
e75271f451843dfbd162fd167a965ef3e3798dfa
227d58cae55257855983ece7b8ccaa4ba9c3796d
refs/heads/master
2021-01-19T23:39:58.841429
2017-04-21T16:39:31
2017-04-21T16:39:31
89,004,347
0
0
null
null
null
null
UTF-8
Scilab
false
false
5,451
sci
graphics.sci
//Функции визуализации и вывода //Строит графики зависимостей скорости и координаты от времени свободного падения. //t - массив 1xN точек на временной оси //data - расчетные данные - массив 2xN точек v,y //realJumpVT - массив 2хN - экспериментальные точки скорость-время. //realJumpYT - массив 2xN экспериментальные точки координата-время. function [yAxis,vAxis] = drawGraphics (t, data, realJumpVT, realJumpYT) scf();//создаем графическое окно xsetech([0 0 0.9 0.47]);//создаем под-окно - выделяем верхнюю половину окни под график plot2d(t', data(2,:)'); yAxis=gca(); // возьмем дескриптор текущего гарфика yAxis.title.text = "Дистанция свободного падения, м"; yAxis.title.font_size=2; //увеличим размер шрифта заголовка yAxis.x_label.text = "Время с момента прыжка, с"; yAxis.y_label.text = "Дистанция от точки прыжка, м"; yAxis.grid = [0,0]; //включаем сетку и длаем ее черной yAxis.x_location = "origin"; // пустим x-ось через ноль yAxis.y_location = "origin"; // пустим y-ось через ноль yAxis.children(1).children(1).foreground = 11; //синий цвет линии plot2d(realJumpYT(2,:), realJumpYT(1,:)',[-2]); //наносим экспериментальные точки grExpY=gca(); // возьмем дескриптор текущего гарфика grExpY.children(1).children(1).mark_foreground = 14; //маркер - зеленый grExpY.children(1).children(1).thickness = 2; leg1 = legend(["теория", "реальная жизнь"],-1); xsetech([0 0.53 0.9 0.43]);//создаем под-окно - выделяем верхнюю половину окни под график plot2d(t', data(1,:)'); vAxis=gca(); // возьмем дескриптор текущего гарфика vAxis.title.text = "Скорость свободного падения, м/с"; vAxis.title.font_size=2; //увеличим размер шрифта заголовка vAxis.x_label.text = "Время с момента прыжка, с"; vAxis.y_label.text = "Скорость падения, м/с"; vAxis.grid = [0,0]; //включаем сетку и длаем ее черной vAxis.x_location = "origin"; // пустим x-ось через ноль vAxis.y_location = "origin"; // пустим y-ось через ноль vAxis.children(1).children(1).foreground = 11; //линяя - синяя plot2d(realJumpVT(2,:), realJumpVT(1,:)',[-2]); //наносим экспериментальные точки grExpV=gca(); // возьмем дескриптор текущего гарфика grExpV.children(1).children(1).mark_foreground = 14; //маркер - зеленый grExpV.children(1).children(1).thickness = 2; plot2d(t', 300*ones(size(t,'c'),1),[3]); //рисуем звуковой барьер grBarrier=gca(); // возьмем дескриптор текущего гарфика grBarrier.children(1).children(1).foreground = 5; //линия - красная xstring(200,320,"Звуковой барьер"); t=get("hdl") //получаем дискриптор только что созданного объекта //t.font_color=21; // бордовый t.font_size=2; leg2 = legend(["теория", "реальная жизнь"],-1); endfunction //Печатает в стандартный вывод данные по скорости и пути для данного набора моментов времени //header - текст, предварающий вывод данных //step - шаг времени, с которым идут данные в массиве data //data - массив 2xN рассчетных точек v,y //times - массив 1xN моментов времени (целочисленных), в которых нам нужно узнать значения v,y function printDataByTime(header, step, data, times) disp(header); for j=1:size(times,'c') mprintf("%i с полета. Скорость = %f м/c = %f км/ч \n", times(j), data(1,times(j)/step), data(1,times(j)/step)*3.6); mprintf("%i с полета. Пройденный путь %f м = %f км \n",times(j), data(2,times(j)/step), data(2,times(j)/step)/1000); end endfunction //Печатает в консоль за какое время, согласно данным моделирования, парашютист //пролетает расстояние равное экспериментально измеренной дистанции свободного падения function printTheorFreeFallTime (step, data, factFreeFallDistance) [value,index] = min(abs(data(2,:) - factFreeFallDistance)); mprintf("Фактическая дистанция св.падения пройдена за %f сек \n',index*step); endfunction
a6ad3b4968daef0a1b9ec86f2660f76292dbbeb5
449d555969bfd7befe906877abab098c6e63a0e8
/98/CH10/EX10.17/example10_17.sce
7989cfc3bea1f0c28a3ae5906d06b06d3066154b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
865
sce
example10_17.sce
//Chapter 10 //Example 10_17 //Page 259 clear;clc; v_r=132*1e3; pd=50*1e6; pfr=0.8; a=0.9497+%i*0.02321; d=a; b=19.9595+%i*93.90216; c=%i*0.0015; vr=v_r/sqrt(3); ir=pd/sqrt(3)/v_r/pfr; printf("Recieving end voltage per phase = %.0f V \n\n", vr); printf("Recieving end current = %.0f A \n\n", ir); printf("Recieving end voltage phasor = %.0f+j0 V \n\n", vr); ir_p=ir*(pfr-%i*sin(acos(pfr))); printf("Load current phasor = %.2f+j(%.2f) \n\n", real(ir_p), imag(ir_p)); vs=a*vr+b*ir_p; mag_vs=abs(vs); printf("Sending end voltage per phase = %.2f+j(%.2f) V \n\n", real(vs), imag(vs)); is=c*vr+d*ir_p; mag_is=abs(is); printf("Sending end current = %.2f+j(%.2f) = %.2f A \n\n", real(is), imag(is), abs(is)); ic=is-ir_p; printf("Charging current = %.2f+j(%.2f) \n\n", real(ic), imag(ic)); reg=(abs(vs)/a-vr)/vr*100; printf("%% regulation = %.2f %% \n\n", reg);
487520763ae3932970a6dfa8ed3aa8dc30e37e6f
449d555969bfd7befe906877abab098c6e63a0e8
/2240/CH1/EX0.8/EXI_8.sce
acf7d26ffea69bd389ccfc8fc6441e55d587438a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
907
sce
EXI_8.sce
// Grob's Basic Electronics 11e // Chapter No. I // Example No. I_8 clc; clear; // Make the following conversions: (a) convert 25 mA to uA (b) convert 2700 kOhms to MOhms. disp ('To convert 25 mA to uA, recall that the metric prefix milli (m) corresponds to 10^3 and that metric prefix micro (u) corresponds to 10^6. Since 10^6 is less than 10^3 by a factor of 1000 (10^3), the numerical part of the expression must be increased by a factor of 1000 (10^3).') disp ('Therefore, 25 mA = 25*10^-3 A = 25,000*10^-6 A = 25,000 uA.') disp ('To convert 2700 kOhms to MOhms, recall that the metric prefix kilo (k) corresponds to 10^3 and that the metric prefix mega (M) corresponds to 10^6. Since 10^6 is larger than 10^3 by a factor of 1000 (10^3), the numerical part of the expression must be decreased by a factor of 1000 (10^3).') disp ('2700 kOhms = 2700*10^3 Ohms = 2.7*10^6 Ohms = 2.7 MOhms.')
0ffb089425b7ae617386135c3afa2deb9f9571df
663857eeaf229747b6f19ba93d35654aed648084
/masseRessort_charneux/MSHloader.sci
2dcbbdc12fb301fd909148602be21fcc62aa1f52
[]
no_license
DimitriCharneux/M3DA
0a61e0365d1daf7b57a071f1da2025ac5991693d
b0d4baf1115b0577c5295401d8fc81552f779ced
refs/heads/master
2021-06-14T11:09:03.784206
2017-01-12T10:10:28
2017-01-12T10:10:28
68,389,037
0
0
null
null
null
null
UTF-8
Scilab
false
false
6,922
sci
MSHloader.sci
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% OBJLoader function function [ vertices , faces ] = MSHLoader(MSHfile) //%%%%%%%%%%%%%%%%%%%%%%%%%%%% load the vertices %%%%%%%%%%%%%%%% fid=mopen(MSHfile,'r'); a = mfscanf(fid,'%s'); while (a~='Coordinates'), a = mfscanf(fid,'%s'); end numVertices=0; a = mfscanf(fid,'%s'); while (a~='end') numVertices=numVertices+1; for j=1:3, vertices(j,numVertices) = mfscanf(fid,'%f'); end a = mfscanf(fid,'%s'); end mclose(fid); //printf('numVertices = %d', numVertices); //%%%%%%%%%%%%%%%%%%%%%%%%%%% load the faces %%%%%%%%%%%%%%%% fid=mopen(MSHfile,'r'); a = mfscanf(fid,'%s'); while (a~='Elements'), a = mfscanf(fid,'%s'); end numFaces=0; a = mfscanf(fid,'%s'); while (a~='end') numFaces =numFaces+1; for j=1:3, a = mfscanf(fid,'%d') faces (j, numFaces ) = a; end a = mfscanf(fid,'%s'); end //buf = faces(:,2); //faces(:,2) = faces(:,3); //faces(:,3) = buf; mclose(fid); //printf(' numFaces = %d', numFaces ); endfunction // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% draw_mesh function function [segments] = findSegments(faces) numElements = size(faces,2); // trouve la liste de segments... segments = []; numSegments=0; for i=1:numElements, numSegments=numSegments+1; if faces(1,i)<faces(2,i) then segments(1,numSegments)=faces(1,i); segments(2,numSegments)=faces(2,i); else segments(1,numSegments)=faces(2,i); segments(2,numSegments)=faces(1,i); end numSegments=numSegments+1; if faces(2,i)<faces(3,i) then segments(1,numSegments)=faces(2,i); segments(2,numSegments)=faces(3,i); else segments(1,numSegments)=faces(3,i); segments(2,numSegments)=faces(2,i); end numSegments=numSegments+1; if faces(3,i)<faces(1,i) then segments(1,numSegments)=faces(3,i); segments(2,numSegments)=faces(1,i); else segments(1,numSegments)=faces(1,i); segments(2,numSegments)=faces(3,i); end end doublons=[]; numDoublons=0; pasDoublon=[]; numS=0 for s1=1:numSegments test=1; for s2=(s1+1):numSegments, if norm(segments(:,s1)-segments(:,s2))==0 then numDoublons = numDoublons+1; doublons(:,numDoublons) = [s2]; test=0; end end if (test==1) then numS = numS+1; pasDoublon(:,numS) = s1; end end segments = segments(:,pasDoublon); buf=numSegments numSegments = numS endfunction function draw_mesh ( vertices, faces ) numFaces = size(faces,2); for f=1:numFaces, xf(:,f) = vertices(1,faces(:,f)')'; yf(:,f) = vertices(2,faces(:,f)')'; zf(:,f) = vertices(3,faces(:,f)')'; //colors(:,f)= [0.0 ; 0.005*f*90; 0.0]; end //f=gcf(); //num_colors = 256; //f.color_map = jetcolormap( num_colors ); //x_min = min(vertices(1,:)); //x_max = max(vertices(1,:)); //x_min = x_min - 0.1*(x_max-x_min); //x_max = x_max + 0.1*(x_max-x_min); //colors = ( xf - x_min ) * num_colors / (x_max - x_min); //plot3d( xf, yf, list(zf, colors ), alpha = 180, theta = 90);//, leg ='X@Y@Z' , flag = [2, 3, 4] , ebox = [-20 20 -20 20 -20 20] ); plot3d( xf, yf, zf, alpha = 180, theta = 90); mtlb_axis([min(vertices(1,:))-1.0, max(vertices(1,:))+1.0, min(vertices(2,:))-1.0, max(vertices(2,:))+1.0,min(vertices(3,:))-1.0, max(vertices(3,:))+1.0]); mtlb_axis('equal'); endfunction function [colors] = draw_mesh2 ( vertices, faces , Vdata) numFaces = size(faces,2); for f=1:numFaces, xf(:,f) = vertices(1,faces(:,f)')'; yf(:,f) = vertices(2,faces(:,f)')'; zf(:,f) = vertices(3,faces(:,f)')'; DA(:,f) = Vdata(1,faces(:,f)')'; //colors(:,f)= [0.0 ; 0.005*f*90; 0.0]; end //DA=xf; f=gcf(); //printf('taille xf : %d taille DA : %d',size(xf,1), size(DA,1)); num_colors = 128; f.color_map = jetcolormap( num_colors ); data_min = min(DA); data_max = max(DA); data_min = data_min - 0.1 * (data_max - data_min); data_max = data_max + 0.1 * (data_max - data_min); colors = ( DA - data_min ) * num_colors / (data_max - data_min); plot3d( xf, yf, list(zf, colors ), alpha = 180, theta = 90);//, leg ='X@Y@Z' , flag = [2, 3, 4] , ebox = [-20 20 -20 20 -20 20] ); //plot3d( xf, yf, zf, alpha = 180, theta = 90); mtlb_axis([min(vertices(1,:))-1.0, max(vertices(1,:))+1.0, min(vertices(2,:))-1.0, max(vertices(2,:))+1.0,min(vertices(3,:))-1.0, max(vertices(3,:))+1.0]); mtlb_axis('equal'); endfunction function [colors] = draw_mesh3 ( vertices, faces , Fdata) numFaces = size(faces,2); for f=1:numFaces, xf(:,f) = vertices(1,faces(:,f)')'; yf(:,f) = vertices(2,faces(:,f)')'; zf(:,f) = vertices(3,faces(:,f)')'; end DA=Fdata; f=gcf(); //printf('taille xf : %d taille DA : %d',size(xf,1), size(DA,1)); num_colors = 128; f.color_map = jetcolormap( num_colors ); data_min = min(DA); data_max = max(DA); data_min = data_min - 0.1 * (data_max - data_min); data_max = data_max + 0.1 * (data_max - data_min); colors = ( DA - data_min ) * num_colors / (data_max - data_min); plot3d( xf, yf, list(zf, colors ), alpha = 180, theta = 90);//, leg ='X@Y@Z' , flag = [2, 3, 4] , ebox = [-20 20 -20 20 -20 20] ); //plot3d( xf, yf, zf, alpha = 180, theta = 90); mtlb_axis([min(vertices(1,:))-1.0, max(vertices(1,:))+1.0, min(vertices(2,:))-1.0, max(vertices(2,:))+1.0,min(vertices(3,:))-1.0, max(vertices(3,:))+1.0]); mtlb_axis('equal'); endfunction function [colors] = draw_mesh4 ( vertices, faces , Fdata, max_data) numFaces = size(faces,2); for f=1:numFaces, xf(:,f) = vertices(1,faces(:,f)')'; yf(:,f) = vertices(2,faces(:,f)')'; zf(:,f) = vertices(3,faces(:,f)')'; end DA=Fdata; f=gcf(); //printf('taille xf : %d taille DA : %d',size(xf,1), size(DA,1)); num_colors = 128; f.color_map = jetcolormap( num_colors ); data_min = min(DA); data_max = max_data; data_min = data_min - 0.1 * (data_max - data_min); data_max = data_max + 0.1 * (data_max - data_min); colors = ( DA - data_min ) * num_colors / (data_max - data_min); plot3d( xf, yf, list(zf, colors ), alpha = 180, theta = 90);//, leg ='X@Y@Z' , flag = [2, 3, 4] , ebox = [-20 20 -20 20 -20 20] ); //plot3d( xf, yf, zf, alpha = 180, theta = 90); mtlb_axis([min(vertices(1,:))-1.0, max(vertices(1,:))+1.0, min(vertices(2,:))-1.0, max(vertices(2,:))+1.0,min(vertices(3,:))-1.0, max(vertices(3,:))+1.0]); mtlb_axis('equal'); endfunction ////%%%%%%%%%%%%%%%%%% corrections %%%%%%%%%%%%%%%%%%%%% //MAXvertices = max(faces); //MaxV = max (MAXvertices); //if (MaxV>numVertices), // for i=numVertices:MaxV+1, // vertices(i,:) = vertices(numVertices,:); // end // numVertices = MaxV+1; //end // //
f5b7c04d996da0777335e7bac03c63d884563b7e
4246cbb6bfbd96e60074b607df96d71e7b4ee070
/opp6code/multdim.tst
6e9076b22faafbe1a5472c84ae0c574b2156ad7f
[]
no_license
thangduong3010/PL-SQL
bc0fa5c3400e46acc0ab63156573590935607b5d
1415772c87750bd30625eacf2bd116fb7e0c0aae
refs/heads/master
2020-05-22T06:57:54.352234
2016-12-26T04:47:27
2016-12-26T04:47:27
39,061,697
1
3
null
null
null
null
UTF-8
Scilab
false
false
796
tst
multdim.tst
DECLARE my_3d_array multdim.dim3_t; PROCEDURE bpl (val IN BOOLEAN) IS BEGIN IF val THEN DBMS_OUTPUT.put_line ('TRUE'); ELSIF NOT val THEN DBMS_OUTPUT.put_line ('FALSE'); ELSE DBMS_OUTPUT.put_line ('NULL'); END IF; END bpl; BEGIN multdim.setcell (my_3d_array, 1, 5, 800, 'def'); multdim.setcell (my_3d_array, 1, 15, 800, 'def'); multdim.setcell (my_3d_array, 5, 5, 800, 'def'); multdim.setcell (my_3d_array, 5, 5, 805, 'def'); DBMS_OUTPUT.put_line (multdim.getcell (my_3d_array, 1, 5, 800)); bpl (multdim.EXISTS (my_3d_array, 1, 5, 800)); bpl (multdim.EXISTS (my_3d_array, 6000, 5, 800)); bpl (multdim.EXISTS (my_3d_array, 6000, 5, 807)); DBMS_OUTPUT.put_line (my_3d_array.COUNT); END; /
528b846ab17961db7f9e30283e5064102ee1178c
449d555969bfd7befe906877abab098c6e63a0e8
/3812/CH1/EX1.25.b/1_25_b.sce
6e081b1ad4f11616249937a745f853b6c30b2608
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
1_25_b.sce
//Example 1.25<b> //Check whether the following signal is linear or not. clear ; close ; clc ; T =20; //length of the signal for n=1: T x1(n)=n;x2(n)=2*n; y1(n)=x1(n)*x1(n); y2(n)=x2(n)*x2(n); end z=y1+y2; for n =1: T y3(n)=( x1(n)+x2(n)) ^2; end if z== y3 then disp('The following signal is linear'); else disp ( 'The following signal is non linear'); end
720dfa28f8711f12f02704533e0b646fad549c44
449d555969bfd7befe906877abab098c6e63a0e8
/911/CH1/EX1.10.b/ex_1_10_b.sce
f60b44e756d6b4f33cc0d1c0da7e057707b7042e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
294
sce
ex_1_10_b.sce
//example 1.10(b)// clc //clears the screen// clear //clears already existing variables// a=5264; //given 7's compliment// b=7777-5264; //no in octal form// d=oct2dec('2513'); //decimal conversion// disp('hexadecimal conversion of given 7''s compliment is:') e=dec2hex(d); disp(e);
c86d9eaaded671d1575e72727dfc6ddc3618d5c0
86ae7e24466d959da945d5b6d8ab93354a9e8a1d
/exp4.sce
150d6ded0c383929be807c9556f6e6ed3f6b565d
[]
no_license
AnujaNagare/Scilab-Programs
be27fdeb0db8cfa4b00ac5121676b18412b8a222
4152eac1a3e87ec7408fb3dfea55cac984cca2d9
refs/heads/master
2021-08-30T16:53:33.876536
2017-12-18T19:11:47
2017-12-18T19:11:47
114,677,855
0
0
null
null
null
null
UTF-8
Scilab
false
false
787
sce
exp4.sce
clear clf clc; a=input(' enter the horizontal reach '); b=input(' enter the vertical reach '); c=input(' enter the horizontal stroke '); d=input(' enter the vertical stroke '); r = a; r1=c; exec('cylinder.sce',-1) [x,y,z]=cylinder(r,100) ; for i=0:1:b-1, mesh(x,y,z + i) hold on end; p0=[0;0;a-2;a-1;a-3] p1=[1;1;1;1;1]; p2=[0;b;b;b-1;b-4] plot3(p0,p1,p2); hold on; p0=[a-1;a-1;a] p1=[0;0;0]; p2=[b;b+1;b+1] plot3(p0,p1,p2); //r1=c; [x,y,z]=cylinder(r1, 100); for j=0:1:d-1 mesh (x,y,z+j) // hold on end; p3=[0;0;c-1;c-1;c]; p4=[0;0;0;0;0]; p5=[0;d;d;d-1;d-1]; plot3 (p3,p4,p5) //hold on; p3=[c-1;c-1;c] p4=[0;0;0]; p5=[d;d+1;d+1]; plot3 (p3,p4,p5); grid on; xlabel ('x axis') ylabel ('y axis')
ac9bd0d4a246fb3a27066e9e9f6f93fc376836df
449d555969bfd7befe906877abab098c6e63a0e8
/1946/CH6/EX6.13/Ex_6_13.sce
9a6a4fb4d095b125a3907bab8a26a49e52f561bf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
314
sce
Ex_6_13.sce
// Example 6.13;//internal quantum efficiency clc; clear; close; n=3.6;//refractive index nd=0.45;//differntilal quantum efficiency alpha=20;// in per cm L=500;//in micro meter r1= ((n-1)/(n+1))^2; r2=r1; ni=(nd*(1+((2*alpha*L*10^-4)/(log(1/(r1*r2))))))*100; disp(ni,"Internal quantum efficiency is")
a6a2630651f90d7f6dbde15cb9c0378ba4d17a21
449d555969bfd7befe906877abab098c6e63a0e8
/1309/CH8/EX8.5/ch8_5.sce
b1a8474fcdf7764a7e8d92c82d7a737b66447cb6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,916
sce
ch8_5.sce
clc; clear; printf("\t\t\tChapter8_example5\n\n\n"); // determine if heat is lost lose more heat through its upper surface or one of its vertical sides // properties of air at (100 + 60)/2 = 80°F = 540 degree R from appendix table D1 rou= 0.0735; // density in lbm/cu.ft cp=0.240; // specific heat BTU/(lbm-degree Rankine) v= 16.88e-5; // viscosity in sq.ft/s kf = 0.01516 ; // thermal conductivity in BTU/(hr.ft.degree Rankine) a = 0.859; // diffusivity in sq.ft/hr Pr = 0.708; // Prandtl Number Tw=100; // temperature of outside surface temperature of oven in degree F T_inf=60; // ambient temperature in degree F g=32.2; L=2; // length in ft W=2; // width in ft Beta=1/(T_inf+460); // volumetric thermal expansion coefficient in per degree Rankine printf("\nThe volumetric thermal expansion coefficient is %.5f /degree R",Beta); Ra=(g*Beta*(Tw-T_inf)*L^3)/(v*a/3600); printf("\nThe Rayleigh Number is %.2e ",Ra); hc=(kf/L)*(0.68+(0.670*Ra^(1/4))/(1+(0.492/Pr)^(9/16))^(4/9)); printf("\nThe value of convection coefficient is %.3f BTU/(hr.sq.ft.degree R)",hc); q1side=hc*L*W*(Tw-T_inf); printf("\nThe heat transferred from one side is %.1f BTU/hr",q1side); // For the top, we have a heated surface facing upward, The characteristic length is determined as follows Lc=(2*2)/(2+2+2+2); Ra_L=(g*Beta*(Tw-T_inf)*Lc^3)/(v*a/3600); // Rayleigh number based on characteristic length printf("\nThe Rayleigh Number based on characteristic length is %.2e ",Ra_L); hc_L=(kf/Lc)*0.54*(Ra_L)^(1/4); printf("\nThe convective coefficient based on characteristic length is %.3f BTU/(hr.sq.ft.degree R)",hc_L); qtop=hc_L*L*W*(Tw-T_inf); printf("\nThe heat transferred from top is %d BTU/hr",qtop); if qtop>q1side then printf("\nThe top transfers heat at a higher rate"); elseif qtop<q1side printf("\nThe side transfers heat at a higher rate"); else printf("\nThe top and side transfer heat at equal rates"); end
4a36c4236e04b9ebc3d4dbcc5692aa95096b87b9
449d555969bfd7befe906877abab098c6e63a0e8
/147/CH11/EX11.10/Example11_10.sce
7e926bf13579fc31dff6d0cd875c85a890e78f07
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
162
sce
Example11_10.sce
close(); clear; clc; Vcc = 5;//V Vcesat = 0.2; Rc = 640; Icsat = (Vcc-Vcesat)/Rc; P = 2*Vcc*Icsat; mprintf('Power dissipated by RTL P = %0.0f mW',P*1000);
3e0c7d31b14887ecfba50d24e77923169ce13297
8af93c9baa863fc851f1cef5b756230e59303aec
/Ex_9_8_fifo.sci
4182b5b3b7d89db54b1748f45632d8ffb92fc5f2
[ "MIT" ]
permissive
nikita9604/Page-Replacement-Algorithms
9ad7e95de7cfbcdf4876d89516dcdab47d1c0a35
eff739b749ddcdac9dd8181d96861f196beac3d4
refs/heads/main
2023-01-19T00:48:05.525482
2020-12-01T08:25:45
2020-12-01T08:25:45
317,469,859
1
1
null
null
null
null
UTF-8
Scilab
false
false
1,139
sci
Ex_9_8_fifo.sci
//This Source file is written by Nikita Rath (18BLC1131) //FUNCTION FOR FIFO function [] = fifo(a,n) printf("\tNo. of Frames \t FIFO") x = 1 //for frames 1 to 7 while(x < 8) counter = 0 faults = 0 //Intialise all frames to -1 for i = 1:x frames(i) = -1 end flag1 = 1 //Traversing through pages for i = 1:n counter = 0 //Traversing through frames for k = 1:x //Page available in frame if(frames(k) == a(i)) then counter = counter + 1 end end //Page unavailable in frame if(counter == 0) then //First in page gets replaced first in frame frames(flag1+1) = a(i) flag1 = modulo((flag1+1),x) //Increment page faults faults = faults + 1 end end //Total page faults printf("\n\t\t %d \t %d ", x, faults) x = x + 1 end printf("\n") endfunction
8fedf8d0c3c0844b3945822a34c568b99bb083cd
449d555969bfd7befe906877abab098c6e63a0e8
/611/CH7/EX7.10/Chap7_Ex10_R1.sce
321e8aeeec5b1d8c0ee71b5c0265d7e273a4fdb2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,162
sce
Chap7_Ex10_R1.sce
// Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India. //Chapter-7,Example 10,Page 259 //Title: Pressure at which boiler is to be operated //================================================================================================================ clear clc //INPUT T2=150;//temperature at which water it is desired to boil water in degree celsius P1=0.10133;//ambient pressure in MPa T1=100;//temperature at which water boils corresponding at pressure P1 in degree celsius del_hv=2256.94;//enthalpy of vaporization in kJ/kg R=8.314;//universal gas constant in J/molK M=18*10^-3;//molar mass of water in kg/mol //CALCULATION T1=T1+273.15;//conversion of temperature in K T2=T2+273.15;//conversion of temperature in K P2=P1*(exp (((del_hv*10^3*M)*((1/T1)-(1/T2)))/(R)));//calculation of the approximate pressure at which the boiler is to be operated using Eq.(7.92) in MPa //OUTPUT mprintf("\n The approximate pressure at which the boiler is to be operated=%0.3f MPa\n",P2); //===============================================END OF PROGRAM===================================================
16e4165029983bb040a23049924096affff4e317
449d555969bfd7befe906877abab098c6e63a0e8
/632/CH9/EX9.2/example9_2.sce
86e41f8c633bdd6f45911668ffa95a49240bda25
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
example9_2.sce
//clc() m = 1;//kg ( mass of completely dry wood ) P1 = 40;//% ( percentage moisture in wet wood ) P2 = 5;//% ( Percentage moisture in dry wood ) mwaterin = P1 * m / ( 100 - P1 ); mwaterout = P2 * m / ( 100 - P2 ); mevaporated = mwaterin - mwaterout; disp("kg",mevaporated,"mass of water evaporated per kg of dry wood = ")